Home
last modified time | relevance | path

Searched refs:mapped (Results 1 – 25 of 28) sorted by relevance

12

/frameworks/base/location/java/android/location/provider/
DLocationProviderBase.java286 List<Location> mapped = locations; in stripExtras() local
291 if (mapped != locations) { in stripExtras()
292 mapped.add(newLocation); in stripExtras()
294 mapped = new ArrayList<>(size); in stripExtras()
300 mapped.add(copiedLocation); in stripExtras()
303 mapped.add(newLocation); in stripExtras()
308 return mapped; in stripExtras()
/frameworks/base/location/java/android/location/
DLocationResult.java282 ArrayList<Location> mapped = mLocations; in map() local
287 if (mapped != mLocations) { in map()
288 mapped.add(newLocation); in map()
290 mapped = new ArrayList<>(mLocations.size()); in map()
292 mapped.add(mLocations.get(j)); in map()
294 mapped.add(newLocation); in map()
298 if (mapped == mLocations) { in map()
301 return new LocationResult(mapped); in map()
/frameworks/base/location/lib/java/com/android/location/provider/
DLocationProviderBase.java431 List<Location> mapped = locations; in stripExtras() local
436 if (mapped != locations) { in stripExtras()
437 mapped.add(newLocation); in stripExtras()
439 mapped = new ArrayList<>(size); in stripExtras()
445 mapped.add(copiedLocation); in stripExtras()
448 mapped.add(newLocation); in stripExtras()
453 return mapped; in stripExtras()
/frameworks/libs/binary_translation/backend/x86_64/
Drename_copy_uses.cc47 MachineReg mapped = Get(reg); in RenameUseIfMapped() local
48 if (mapped != kInvalidMachineReg) { in RenameUseIfMapped()
49 insn->SetRegAt(i, mapped); in RenameUseIfMapped()
/frameworks/av/media/module/libmediaformatshaper/
DCodecProperties.cpp87 auto mapped = mFeatures.find(key); in getFeatureValue() local
88 if (mapped != mFeatures.end()) { in getFeatureValue()
89 *valuep = mapped->second; in getFeatureValue()
171 auto mapped = mFeatures.find(key); in getTuningValue() local
172 if (mapped != mFeatures.end()) { in getTuningValue()
173 value = mapped->second; in getTuningValue()
421 auto mapped = mMappings.find(kind + "-" + key); in getMapping() local
422 if (mapped != mMappings.end()) { in getMapping()
423 std::string result = mapped->second; in getMapping()
/frameworks/base/services/core/jni/BroadcastRadio/
Dregions.cpp183 auto mapped = regionalBand.withConfig(tunerBand); in mapRegions() local
184 out.insert(out.end(), mapped.begin(), mapped.end()); in mapRegions()
/frameworks/av/media/utils/
DTimerThread.cpp351 auto secondChanceDuration = node.mapped().first->secondChanceDuration; in threadFunc()
361 __func__, node.mapped().first->tag.c_str()); // should be rare event. in threadFunc()
364 std::move(node.mapped())); in threadFunc()
371 mTimeoutQueue.add(std::move(node.mapped().first)); in threadFunc()
372 node.mapped().second(nextDeadline); in threadFunc()
394 mTimeoutQueue.add(std::move(node.mapped().first)); in threadFunc()
396 node.mapped().second(originalHandle); in threadFunc()
/frameworks/base/mime/java-res/
Dandroid.mime.types44 # If <mimeType> was not already mapped to an extension then it will be
45 # mapped to <extension1>.
46 # <extension1> and <extension2> are mapped (or remapped) to <mimeType>.
143 # <mimeType> is mapped to <extension1>
144 # <extension1>, <extension2>, ... are all mapped to <mimeType>
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3OutputStream.cpp272 void* mapped = nullptr; in fixUpHidlJpegBlobHeader() local
280 &mapped, fenceFd.release()); in fixUpHidlJpegBlobHeader()
287 static_cast<uint8_t*>(mapped) + graphicBuffer->getWidth() - sizeof(camera_jpeg_blob_t); in fixUpHidlJpegBlobHeader()
289 if (hidlHeaderStart < static_cast<uint8_t *>(mapped)) { in fixUpHidlJpegBlobHeader()
312 static_cast<uint8_t*>(mapped) + graphicBuffer->getWidth() - sizeof(CameraBlob); in fixUpHidlJpegBlobHeader()
315 if (aidlHeaderStart < static_cast<uint8_t *>(mapped)) { in fixUpHidlJpegBlobHeader()
321 if (static_cast<uint8_t*>(mapped) + blobSizeBytes > aidlHeaderStart) { in fixUpHidlJpegBlobHeader()
1277 void* mapped = nullptr; in dumpImageToDisk() local
1279 status_t res = graphicBuffer->lockAsync(GraphicBuffer::USAGE_SW_READ_OFTEN, &mapped, in dumpImageToDisk()
1287 auto actualJpegSize = android::camera2::JpegProcessor::findJpegSize((uint8_t*)mapped, mMaxSize); in dumpImageToDisk()
[all …]
/frameworks/minikin/tools/
Dmk_hyb_file.py236 mapped = {}
238 assert ch_map[c] not in mapped, 'duplicate edge ' + node.str + ' ' + hex(ord(c))
239 mapped[ch_map[c]] = next
240 for i in sorted(mapped.keys()):
241 result.append(mapped[i])
/frameworks/av/services/mediametrics/include/mediametricsservice/
DTimedAction.h91 node.mapped()(); in threadLoop()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagCommonKinds.inc128 "cannot open memory mapped file %0 from offset %1 to length %2.",
132 "cannot remove the mapped memory of file %0.",
133 "cannot remove the mapped memory of file %0.")
/frameworks/av/media/codec2/hal/client/
Doutput.cpp197 bool mapped = false; in configure() local
203 mapped = true; in configure()
212 if (!mapped) { in configure()
Dclient.cpp1949 *context = node.mapped(); in extractContext()
/frameworks/base/core/java/android/view/
DViewDebug.java1544 boolean mapped = false;
1550 mapped = true;
1555 if (!mapped) {
1716 final IntToString mapped = indexMapping[k];
1717 if (mapped.from() == j) {
1718 name = mapped.to();
1727 final IntToString mapped = mapping[k];
1728 if (mapped.from() == intValue) {
1729 value = mapped.to();
/frameworks/proto_logging/stats/enums/input/
Denums.proto199 // A stylus, where touches are mapped directly to the display.
210 // A touchscreen, where touches are mapped directly to the display.
/frameworks/base/core/java/android/app/
DExitTransitionCoordinator.java71 ArrayList<String> accepted, ArrayList<View> mapped, boolean isReturning) { in ExitTransitionCoordinator() argument
73 viewsReady(mapSharedElements(accepted, mapped)); in ExitTransitionCoordinator()
/frameworks/proto_logging/stats/enums/telephony/satellite/
Denums.proto26 // type cannot be mapped to other specific datagram types
/frameworks/base/core/proto/android/app/
Dtime_zone_detector.proto78 // several objects (i.e. so the same time zone ID is always mapped to the same
/frameworks/proto_logging/stats/enums/app/
Dwearsettings_enums.proto41 // An unknown settings item. This may be set if no preference key is mapped to an enum value or as
Dapp_enums.proto48 // Process state that is unknown to this proto file (i.e. is not mapped
/frameworks/base/data/keyboards/
DGeneric.kl454 # Axes that are not mapped will be assigned generic axis numbers by the input subsystem.
/frameworks/proto_logging/stats/atoms/sysui/
Dsysui_atoms.proto532 // UID if the application (can be mapped to package and version)
761 // UID of the application (can be mapped to package name) corresponding to the result_type.
/frameworks/proto_logging/stats/enums/telephony/
Denums.proto507 // Outgoing SMS send error codes, which are mapped from SmsManager#Result
/frameworks/base/core/proto/android/providers/settings/
Dglobal.proto188 // List of carrier app certificate mapped to carrier app package id which are whitelisted to

12