| /frameworks/base/tools/aapt/ |
| D | StringPool.h | 41 struct entry { struct 42 entry() : offset(0) { } in entry() argument 43 explicit entry(const String16& _value) : value(_value), offset(0), hasStyles(false) { } in entry() argument 44 entry(const entry& o) : value(o.value), offset(o.offset), in entry() argument 57 int compare(const entry& o) const; argument
|
| D | ResourceFilter.cpp | 27 std::pair<ConfigDescription, uint32_t>& entry = mConfigs.editItemAt(i); in parse() local 71 scriptsMatch(const ResTable_config& config, const ResTable_config& entry) { in scriptsMatch() 109 const std::pair<ConfigDescription, uint32_t>& entry = mConfigs[i]; in match() local
|
| /frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
| D | VCardJapanizationTests.java | 37 ContactEntry entry = mVerifier.addInputEntry(); in testNameUtf8Common() local 65 ContactEntry entry = mVerifier.addInputEntry(); in testNameShiftJis() local 87 ContactEntry entry = mVerifier.addInputEntry(); in testNameDoCoMo() local 113 ContactEntry entry = mVerifier.addInputEntry(); in testPhoneticNameCommon() local 165 ContactEntry entry = mVerifier.addInputEntry(); in testPhoneticNameForMobileV21_1() local 189 ContactEntry entry = mVerifier.addInputEntry(); in testPhoneticNameForMobileV21_2() local 206 ContactEntry entry = mVerifier.addInputEntry(); in testPostalAddressWithJapaneseCommon() local 255 ContactEntry entry = mVerifier.addInputEntry(); in testPostalAdrressForDoCoMo_1() local 283 ContactEntry entry = mVerifier.addInputEntry(); in testPostalAdrressForDoCoMo_2() local 308 ContactEntry entry = mVerifier.addInputEntry(); in testPostalAdrressForDoCoMo_3() local [all …]
|
| D | VCardExporterTests.java | 101 final ContactEntry entry = mVerifier.addInputEntry(); in testStructuredNameUsePrimaryCommon() local 161 final ContactEntry entry = mVerifier.addInputEntry(); in testStructuredNameUseSuperPrimaryCommon() local 231 final ContactEntry entry = mVerifier.addInputEntry(); in testStructuredNamePhoneticNameCommon() local 296 final ContactEntry entry = mVerifier.addInputEntry(); in testStructuredNameComplicatedCommon() local 447 ContactEntry entry = mVerifier.addInputEntry(); in testPhoneVariousTypeSupport() local 554 ContactEntry entry = mVerifier.addInputEntry(); in testPhonePrefHandlingCommon() local 599 ContactEntry entry = mVerifier.addInputEntry(); in testMiscPhoneTypeHandling() local 698 ContactEntry entry = mVerifier.addInputEntry(); in testEmailVariousTypeSupportCommon() local 732 ContactEntry entry = mVerifier.addInputEntry(); in testEmailPrefHandlingCommon() local 890 ContactEntry entry = mVerifier.addInputEntry(); in testOrganizationCommon() local [all …]
|
| /frameworks/base/tools/aapt/tests/ |
| D | AaptGroupEntry_test.cpp | 26 static ::testing::AssertionResult TestParse(AaptGroupEntry& entry, const String8& dirName, in TestParse() 34 static ::testing::AssertionResult TestParse(AaptGroupEntry& entry, const char* input, in TestParse() 40 AaptGroupEntry entry; in TEST() local 47 AaptGroupEntry entry; in TEST() local
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
| D | RemoteInputController.java | 106 public void addRemoteInput(NotificationData.Entry entry, Object token) { in addRemoteInput() 127 public void removeRemoteInput(NotificationData.Entry entry, Object token) { in removeRemoteInput() 178 private void apply(NotificationData.Entry entry) { in apply() 190 public boolean isRemoteInputActive(NotificationData.Entry entry) { in isRemoteInputActive() 240 public void remoteInputSent(NotificationData.Entry entry) { in remoteInputSent() 273 public void lockScrollTo(NotificationData.Entry entry) { in lockScrollTo() 280 default void onRemoteInputSent(NotificationData.Entry entry) {} in onRemoteInputSent() 287 void setRemoteInputActive(NotificationData.Entry entry, boolean remoteInputActive); in setRemoteInputActive() 298 void lockScrollTo(NotificationData.Entry entry); in lockScrollTo()
|
| D | NotificationEntryManager.java | 215 public void onHeadsUpStateChanged(NotificationData.Entry entry, boolean isHeadsUp) { in onHeadsUpStateChanged() 341 private boolean shouldSuppressFullScreenIntent(NotificationData.Entry entry) { in shouldSuppressFullScreenIntent() 349 private void inflateViews(NotificationData.Entry entry, ViewGroup parent) { in inflateViews() 366 private void bindRow(NotificationData.Entry entry, PackageManager pmUser, in bindRow() 412 NotificationData.Entry entry = mNotificationData.get(n.getKey()); in performRemoveNotification() local 459 NotificationData.Entry entry = mPendingNotifications.get(key); in abortExistingInflation() local 486 public void onAsyncInflationFinished(NotificationData.Entry entry) { in onAsyncInflationFinished() 525 NotificationData.Entry entry = mNotificationData.get(key); in removeNotification() local 617 NotificationData.Entry entry, NotificationLifetimeExtender extender) { in extendLifetime() 628 private void cancelLifetimeExtension(NotificationData.Entry entry) { in cancelLifetimeExtension() [all …]
|
| D | ForegroundServiceLifetimeExtender.java | 51 public boolean shouldExtendLifetime(@NonNull NotificationData.Entry entry) { in shouldExtendLifetime() 62 public boolean shouldExtendLifetimeForPendingNotification( in shouldExtendLifetimeForPendingNotification() 68 public void setShouldManageLifetime( in setShouldManageLifetime()
|
| D | SmartReplyController.java | 39 public void smartReplySent(NotificationData.Entry entry, int replyIndex, CharSequence reply) { in smartReplySent() 64 public void smartRepliesAdded(final NotificationData.Entry entry, int replyCount) { in smartRepliesAdded() 73 public void stopSending(final NotificationData.Entry entry) { in stopSending()
|
| D | NotificationData.java | 439 Entry entry = mEntries.valueAt(i); in getNotificationsForCurrentUser() local 454 public void add(Entry entry) { in add() 456 mEntries.put(entry.notification.getKey(), entry); in add() local 482 Entry entry = mEntries.valueAt(i); in updateAppOp() local 512 public boolean shouldSuppressFullScreenIntent(Entry entry) { in shouldSuppressFullScreenIntent() 516 public boolean shouldSuppressPeek(Entry entry) { in shouldSuppressPeek() 520 public boolean shouldSuppressStatusBar(Entry entry) { in shouldSuppressStatusBar() 524 public boolean shouldSuppressAmbient(Entry entry) { in shouldSuppressAmbient() 528 public boolean shouldSuppressNotificationList(Entry entry) { in shouldSuppressNotificationList() 532 private boolean shouldSuppressVisualEffect(Entry entry, int effect) { in shouldSuppressVisualEffect() [all …]
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
| D | HeadsUpManager.java | 141 private void addHeadsUpEntry(@NonNull NotificationData.Entry entry) { in addHeadsUpEntry() 154 protected boolean shouldHeadsUpBecomePinned(@NonNull NotificationData.Entry entry) { in shouldHeadsUpBecomePinned() 158 protected boolean hasFullScreenIntent(@NonNull NotificationData.Entry entry) { in hasFullScreenIntent() 179 protected void removeHeadsUpEntry(@NonNull NotificationData.Entry entry) { in removeHeadsUpEntry() 185 NotificationData.Entry entry = remove.entry; in onHeadsUpEntryRemoved() local 239 HeadsUpEntry entry = iterator.next(); in releaseAllImmediately() local 278 HeadsUpEntry entry = mHeadsUpEntries.get(key); in snooze() local 302 HeadsUpEntry entry = mHeadsUpEntries.get(key); in getEntry() local 382 HeadsUpEntry entry = mHeadsUpEntries.get(key); in hasPinnedNotificationInternal() local 395 HeadsUpEntry entry = mHeadsUpEntries.get(key); in unpinAll() local [all …]
|
| /frameworks/compile/mclinker/lib/Target/ARM/ |
| D | ARMGOT.cpp | 40 ARMGOTEntry* entry = new ARMGOTEntry(0, NULL); in createGOT() local 46 ARMGOTEntry* entry = new ARMGOTEntry(0, NULL); in createGOTPLT() local 66 ARMGOTEntry* entry = *it; in finalizeSectionSize() local 80 ARMGOTEntry* entry = *it; in finalizeSectionSize() local 102 SectionData::iterator entry(m_pGOTPLTFront); in applyGOTPLT() local
|
| /frameworks/compile/mclinker/lib/Target/AArch64/ |
| D | AArch64GOT.cpp | 43 AArch64GOTEntry* entry = new AArch64GOTEntry(0, NULL); in createGOT() local 49 AArch64GOTEntry* entry = new AArch64GOTEntry(0, NULL); in createGOTPLT() local 69 AArch64GOTEntry* entry = *it; in finalizeSectionSize() local 83 AArch64GOTEntry* entry = *it; in finalizeSectionSize() local 105 SectionData::iterator entry(m_pGOTPLTFront); in applyGOTPLT() local
|
| /frameworks/support/app-toolkit/common/src/main/java/androidx/arch/core/internal/ |
| D | SafeIterableMap.java | 65 Entry<K, V> entry = get(key); in putIfAbsent() local 245 public void supportRemove(@NonNull Entry<K, V> entry) { in supportRemove() 275 abstract Entry<K, V> forward(Entry<K, V> entry); in forward() 277 abstract Entry<K, V> backward(Entry<K, V> entry); in backward() 286 Entry<K, V> forward(Entry<K, V> entry) { in forward() 291 Entry<K, V> backward(Entry<K, V> entry) { in backward() 303 Entry<K, V> forward(Entry<K, V> entry) { in forward() 308 Entry<K, V> backward(Entry<K, V> entry) { in backward() 319 public void supportRemove(@NonNull Entry<K, V> entry) { in supportRemove() 347 void supportRemove(@NonNull Entry<K, V> entry); in supportRemove() [all …]
|
| /frameworks/base/services/core/java/com/android/server/am/ |
| D | LaunchTimeTracker.java | 33 Entry entry = mWindowingModeLaunchTime.get(r.getWindowingMode()); in setLaunchTime() local 36 mWindowingModeLaunchTime.append(r.getWindowingMode(), entry); in setLaunchTime() local 42 final Entry entry = mWindowingModeLaunchTime.get(windowingMode); in stopFullyDrawnTraceIfNeeded() local
|
| /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/ |
| D | RecoverySessionStorageTest.java | 71 RecoverySessionStorage.Entry entry = new RecoverySessionStorage.Entry( in remove_overwritesLskfHashMemory() local 83 RecoverySessionStorage.Entry entry = new RecoverySessionStorage.Entry( in remove_overwritesKeyClaimantMemory() local 134 RecoverySessionStorage.Entry entry = new RecoverySessionStorage.Entry( in destroy_overwritesLskfHashMemory() local 146 RecoverySessionStorage.Entry entry = new RecoverySessionStorage.Entry( in destroy_overwritesKeyClaimantMemory() local
|
| /frameworks/base/libs/services/src/os/ |
| D | DropBoxManager.cpp | 181 Entry entry(tag, IS_TEXT); in addText() local 190 Entry entry(tag, flags); in addData() local 216 Entry entry(tag, flags, fd); in addFile() local 221 DropBoxManager::add(const Entry& entry) in add() 232 DropBoxManager::getNextEntry(const String16& tag, long msec, Entry* entry) in getNextEntry()
|
| /frameworks/base/libs/hwui/ |
| D | PathCache.cpp | 211 void PathCache::operator()(PathDescription& entry, PathTexture*& texture) { in operator ()() 270 PathTexture* PathCache::addTexture(const PathDescription& entry, const SkPath* path, in addTexture() 286 void PathCache::generateTexture(const PathDescription& entry, Bitmap& bitmap, PathTexture* texture, in generateTexture() 360 PathDescription entry(ShapeType::Path, paint); in get() local 390 PathDescription entry(ShapeType::Path, paint); in remove() local 400 PathDescription entry(ShapeType::Path, paint); in precache() local 439 PathDescription entry(ShapeType::RoundRect, paint); in getRoundRect() local 464 PathDescription entry(ShapeType::Circle, paint); in getCircle() local 484 PathDescription entry(ShapeType::Oval, paint); in getOval() local 507 PathDescription entry(ShapeType::Rect, paint); in getRect() local [all …]
|
| /frameworks/compile/mclinker/lib/LD/ |
| D | SectionSymbolSet.cpp | 53 SectHashTableType::entry_type* entry = in add() local 97 SectHashTableType::iterator entry = m_pSectionSymbolMap->find(&pOutSect); in get() local 102 SectHashTableType::iterator entry = m_pSectionSymbolMap->find(&pOutSect); in get() local
|
| /frameworks/base/core/java/android/content/res/ |
| D | DrawableCache.java | 35 final Drawable.ConstantState entry = get(key, theme); in getInstance() local 44 public boolean shouldInvalidateEntry(Drawable.ConstantState entry, int configChanges) { in shouldInvalidateEntry()
|
| D | ConfigurationBoundResourceCache.java | 38 final ConstantState<T> entry = get(key, theme); in getInstance() local 47 public boolean shouldInvalidateEntry(ConstantState<T> entry, @Config int configChanges) { in shouldInvalidateEntry()
|
| D | ThemedResourceCache.java | 47 public void put(long key, @Nullable Theme theme, @NonNull T entry) { in put() 61 public void put(long key, @Nullable Theme theme, @NonNull T entry, boolean usesTheme) { in put() 131 protected abstract boolean shouldInvalidateEntry(@NonNull T entry, int configChanges); in shouldInvalidateEntry() 230 private boolean pruneEntryLocked(@Nullable T entry, @Config int configChanges) { in pruneEntryLocked()
|
| /frameworks/base/tools/aapt2/link/ |
| D | AutoVersioner.cpp | 30 bool ShouldGenerateVersionedResource(const ResourceEntry* entry, const ConfigDescription& config, in ShouldGenerateVersionedResource() 37 ApiVersion FindNextApiVersionForConfig(const ResourceEntry* entry, in FindNextApiVersionForConfig() 77 for (auto& entry : type->entries) { in Consume() local
|
| /frameworks/opt/telephony/src/java/com/google/android/mms/util/ |
| D | PduCache.java | 95 synchronized public boolean put(Uri uri, PduCacheEntry entry) { in put() 165 PduCacheEntry entry = super.purge(key); in purgeSingleEntry() local 222 PduCacheEntry entry = super.purge(key); in purgeByMessageBox() local 231 private void removeFromThreads(Uri key, PduCacheEntry entry) { in removeFromThreads() 247 PduCacheEntry entry = super.purge(key); in purgeByThreadId() local 255 private void removeFromMessageBoxes(Uri key, PduCacheEntry entry) { in removeFromMessageBoxes()
|
| /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
| D | NotificationDataTest.java | 274 NotificationData.Entry entry = new NotificationData.Entry(mMockStatusBarNotification); in testShouldFilterHiddenNotifications() local 308 NotificationData.Entry entry = new NotificationData.Entry(mMockStatusBarNotification); in testIsExemptFromDndVisualSuppression_foreground() local 324 NotificationData.Entry entry = new NotificationData.Entry(mMockStatusBarNotification); in testIsExemptFromDndVisualSuppression_media() local 335 NotificationData.Entry entry = new NotificationData.Entry(mMockStatusBarNotification); in testIsExemptFromDndVisualSuppression_system() local 347 NotificationData.Entry entry = new NotificationData.Entry(mMockStatusBarNotification); in testIsNotExemptFromDndVisualSuppression_hiddenCategories() local
|