/frameworks/base/location/java/android/location/provider/ |
D | LocationProviderBase.java | 286 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/ |
D | LocationResult.java | 282 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/ |
D | LocationProviderBase.java | 431 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/ |
D | rename_copy_uses.cc | 47 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/ |
D | CodecProperties.cpp | 87 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/ |
D | regions.cpp | 183 auto mapped = regionalBand.withConfig(tunerBand); in mapRegions() local 184 out.insert(out.end(), mapped.begin(), mapped.end()); in mapRegions()
|
/frameworks/av/media/utils/ |
D | TimerThread.cpp | 351 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/ |
D | android.mime.types | 44 # 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/ |
D | Camera3OutputStream.cpp | 272 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/ |
D | mk_hyb_file.py | 236 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/ |
D | TimedAction.h | 91 node.mapped()(); in threadLoop()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagCommonKinds.inc | 128 "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/ |
D | output.cpp | 197 bool mapped = false; in configure() local 203 mapped = true; in configure() 212 if (!mapped) { in configure()
|
D | client.cpp | 1949 *context = node.mapped(); in extractContext()
|
/frameworks/base/core/java/android/view/ |
D | ViewDebug.java | 1544 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/ |
D | enums.proto | 199 // 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/ |
D | ExitTransitionCoordinator.java | 71 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/ |
D | enums.proto | 26 // type cannot be mapped to other specific datagram types
|
/frameworks/base/core/proto/android/app/ |
D | time_zone_detector.proto | 78 // several objects (i.e. so the same time zone ID is always mapped to the same
|
/frameworks/proto_logging/stats/enums/app/ |
D | wearsettings_enums.proto | 41 // An unknown settings item. This may be set if no preference key is mapped to an enum value or as
|
D | app_enums.proto | 48 // Process state that is unknown to this proto file (i.e. is not mapped
|
/frameworks/base/data/keyboards/ |
D | Generic.kl | 454 # Axes that are not mapped will be assigned generic axis numbers by the input subsystem.
|
/frameworks/proto_logging/stats/atoms/sysui/ |
D | sysui_atoms.proto | 532 // 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/ |
D | enums.proto | 507 // Outgoing SMS send error codes, which are mapped from SmsManager#Result
|
/frameworks/base/core/proto/android/providers/settings/ |
D | global.proto | 188 // List of carrier app certificate mapped to carrier app package id which are whitelisted to
|