/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/applications/ |
D | ApplicationsStateTest.java | 40 private ApplicationsState.AppEntry mEntry; field in ApplicationsStateTest 45 mEntry = new ApplicationsState.AppEntry( in setUp() 53 mEntry.info.flags = ApplicationInfo.FLAG_IS_GAME; in testGamesFilterAcceptsGameDeprecated() 55 assertThat(ApplicationsState.FILTER_GAMES.filterApp(mEntry)).isTrue(); in testGamesFilterAcceptsGameDeprecated() 60 mEntry.info.category = ApplicationInfo.CATEGORY_GAME; in testGameFilterAcceptsCategorizedGame() 62 assertThat(ApplicationsState.FILTER_GAMES.filterApp(mEntry)).isTrue(); in testGameFilterAcceptsCategorizedGame() 67 mEntry.info.flags = ApplicationInfo.FLAG_IS_GAME; in testGameFilterAcceptsCategorizedGameAndDeprecatedIsGame() 68 mEntry.info.category = ApplicationInfo.CATEGORY_GAME; in testGameFilterAcceptsCategorizedGameAndDeprecatedIsGame() 70 assertThat(ApplicationsState.FILTER_GAMES.filterApp(mEntry)).isTrue(); in testGameFilterAcceptsCategorizedGameAndDeprecatedIsGame() 75 mEntry.info.category = ApplicationInfo.CATEGORY_UNDEFINED; in testGamesFilterRejectsNotGame() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/ |
D | HeadsUpViewBinderTest.java | 58 @Mock private NotificationEntry mEntry; field in HeadsUpViewBinderTest 65 when(mEntry.getKey()).thenReturn("key"); in setup() 66 when(mEntry.getRow()).thenReturn(mRow); in setup() 67 when(mBindStage.getStageParams(eq(mEntry))).thenReturn(new RowContentBindParams()); in setup() 78 mViewBinder.bindHeadsUpView(mEntry, null); in testLoggingForStandardFlow() 79 verify(mLogger).startBindingHun(eq(mEntry)); in testLoggingForStandardFlow() 83 callback.get().onBindFinished(mEntry); in testLoggingForStandardFlow() 84 verify(mLogger).entryBoundSuccessfully(eq(mEntry)); in testLoggingForStandardFlow() 88 mViewBinder.bindHeadsUpView(mEntry, null); in testLoggingForStandardFlow() 89 verify(mLogger).startBindingHun(eq(mEntry)); in testLoggingForStandardFlow() [all …]
|
D | KeyguardNotificationVisibilityProviderTest.java | 106 private NotificationEntry mEntry; field in KeyguardNotificationVisibilityProviderTest 130 mEntry = new NotificationEntryBuilder() in setup() 257 .addChild(mEntry) in hideSilentNotificationsPerUserSettingWithHighPriorityParent() 263 mEntry = new NotificationEntryBuilder() in hideSilentNotificationsPerUserSettingWithHighPriorityParent() 269 assertTrue(mKeyguardNotificationVisibilityProvider.shouldHideNotification(mEntry)); in hideSilentNotificationsPerUserSettingWithHighPriorityParent() 277 mEntry = new NotificationEntryBuilder() in keyguardShowing_hideSilentNotifications_perUserSetting() 282 assertTrue(mKeyguardNotificationVisibilityProvider.shouldHideNotification(mEntry)); in keyguardShowing_hideSilentNotifications_perUserSetting() 292 .addChild(mEntry) in keyguardShowing_hideSilentNotifications_perUserSetting_withHighPriorityParent() 298 mEntry = new NotificationEntryBuilder() in keyguardShowing_hideSilentNotifications_perUserSetting_withHighPriorityParent() 304 assertTrue(mKeyguardNotificationVisibilityProvider.shouldHideNotification(mEntry)); in keyguardShowing_hideSilentNotifications_perUserSetting_withHighPriorityParent() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | RankingCoordinatorTest.java | 84 private NotificationEntry mEntry; field in RankingCoordinatorTest 104 mEntry = spy(new NotificationEntryBuilder().build()); in setup() 105 mEntry.setRanking(getRankingForUnfilteredNotif().build()); in setup() 124 ListEntry listEntry = new ListEntry(mEntry.getKey(), 0L) { in testSilentHeaderClearableChildrenUpdate() 128 return mEntry; in testSilentHeaderClearableChildrenUpdate() 144 mEntry.setRanking(getRankingForUnfilteredNotif().build()); in testUnfilteredState() 147 assertFalse(mCapturedSuspendedFilter.shouldFilterOut(mEntry, 0)); in testUnfilteredState() 153 mEntry.setRanking(getRankingForUnfilteredNotif() in filterSuspended() 158 assertTrue(mCapturedSuspendedFilter.shouldFilterOut(mEntry, 0)); in filterSuspended() 164 mEntry.setRanking(getRankingForUnfilteredNotif() in filterDozingSuppressAmbient() [all …]
|
D | PreparationCoordinatorTest.java | 99 private NotificationEntry mEntry; field in PreparationCoordinatorTest 142 mEntry = getNotificationEntryBuilder().setParent(ROOT_ENTRY).build(); in setUp() 173 mCollectionListener.onEntryInit(mEntry); in setUp() 179 mErrorManager.setInflationError(mEntry, mInflationError); in testErrorLogsToService() 183 eq(mEntry.getSbn().getPackageName()), in testErrorLogsToService() 184 eq(mEntry.getSbn().getTag()), in testErrorLogsToService() 185 eq(mEntry.getSbn().getId()), in testErrorLogsToService() 186 eq(mEntry.getSbn().getUid()), in testErrorLogsToService() 187 eq(mEntry.getSbn().getInitialPid()), in testErrorLogsToService() 189 eq(mEntry.getSbn().getUser().getIdentifier())); in testErrorLogsToService() [all …]
|
D | DeviceProvisionedCoordinatorTest.java | 69 private NotificationEntry mEntry; field in DeviceProvisionedCoordinatorTest 80 mEntry = new NotificationEntryBuilder() in setup() 97 assertFalse(mDeviceProvisionedFilter.shouldFilterOut(mEntry, 0)); in deviceProvisioned() 106 assertTrue(mDeviceProvisionedFilter.shouldFilterOut(mEntry, 0)); in deviceUnprovisioned() 120 assertFalse(mDeviceProvisionedFilter.shouldFilterOut(mEntry, 0)); in deviceUnprovisionedCanBypass() 133 assertTrue(mDeviceProvisionedFilter.shouldFilterOut(mEntry, 0)); in deviceUnprovisionedTryBypassWithoutPermission() 138 .setKey(mEntry.getKey()) in getRankingForUnfilteredNotif()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | RowContentBindStageTest.java | 62 @Mock private NotificationEntry mEntry; field in RowContentBindStageTest 73 mRowContentBindStage.createStageParams(mEntry); in setUp() 80 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testRequireContentViews() 82 mRowContentBindStage.executeStage(mEntry, mRow, (en) -> { }); in testRequireContentViews() 86 eq(mEntry), in testRequireContentViews() 97 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testFreeContentViews() 103 mRowContentBindStage.executeStage(mEntry, mRow, (en) -> { }); in testFreeContentViews() 106 verify(mBinder).unbindContent(eq(mEntry), any(), eq(flags)); in testFreeContentViews() 135 RowContentBindParams originalParams = mRowContentBindStage.getStageParams(mEntry); in testGetStageParamsAfterCleanUp() 136 mRowContentBindStage.deleteStageParams(mEntry); in testGetStageParamsAfterCleanUp() [all …]
|
D | NotifRemoteViewCacheImplTest.java | 52 private NotificationEntry mEntry; field in NotifRemoteViewCacheImplTest 59 mEntry = new NotificationEntryBuilder().build(); in setUp() 67 mEntryListener.onEntryInit(mEntry); in setUp() 73 mNotifRemoteViewCache.putCachedView(mEntry, FLAG_CONTENT_VIEW_CONTRACTED, mRemoteViews); in testPutCachedView() 76 assertTrue(mNotifRemoteViewCache.hasCachedView(mEntry, FLAG_CONTENT_VIEW_CONTRACTED)); in testPutCachedView() 80 mNotifRemoteViewCache.getCachedView(mEntry, FLAG_CONTENT_VIEW_CONTRACTED)); in testPutCachedView() 86 mNotifRemoteViewCache.putCachedView(mEntry, FLAG_CONTENT_VIEW_CONTRACTED, mRemoteViews); in testRemoveCachedView() 89 mNotifRemoteViewCache.removeCachedView(mEntry, FLAG_CONTENT_VIEW_CONTRACTED); in testRemoveCachedView() 92 assertFalse(mNotifRemoteViewCache.hasCachedView(mEntry, FLAG_CONTENT_VIEW_CONTRACTED)); in testRemoveCachedView() 98 mNotifRemoteViewCache.putCachedView(mEntry, FLAG_CONTENT_VIEW_CONTRACTED, mRemoteViews); in testClearCache() [all …]
|
D | NotifBindPipelineTest.java | 59 @Mock private NotificationEntry mEntry; field in NotifBindPipelineTest 78 listener.onEntryInit(mEntry); in setUp() 84 mBindPipeline.manageRow(mEntry, mRow); in testCallbackCalled() 88 mStage.requestRebind(mEntry, callback); in testCallbackCalled() 95 verify(callback).onBindFinished(mEntry); in testCallbackCalled() 101 mBindPipeline.manageRow(mEntry, mRow); in testCallbackCancelled() 105 CancellationSignal signal = mStage.requestRebind(mEntry, callback); in testCallbackCancelled() 115 verify(callback, never()).onBindFinished(mEntry); in testCallbackCancelled() 121 mBindPipeline.manageRow(mEntry, mRow); in testMultipleCallbacks() 125 mStage.requestRebind(mEntry, callback); in testMultipleCallbacks() [all …]
|
D | NotificationInfoTest.java | 102 private NotificationEntry mEntry; field in NotificationInfoTest 166 mEntry = new NotificationEntryBuilder().setSbn(mSbn).build(); in setUp() 182 mEntry, in testBindNotification_SetsTextApplicationName() 208 mEntry, in testBindNotification_SetsPackageIcon() 230 mEntry, in testBindNotification_noDelegate() 284 mEntry, in testBindNotification_GroupNameHiddenIfNoGroup() 312 mEntry, in testBindNotification_SetsGroupNameIfNonNull() 335 mEntry, in testBindNotification_SetsTextChannelName() 357 mEntry, in testBindNotification_DefaultChannelDoesNotUseChannelName() 383 mEntry, in testBindNotification_DefaultChannelUsesChannelNameIfMoreChannelsExist() [all …]
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | VisualStabilityCoordinatorTest.java | 110 private NotificationEntry mEntry; field in VisualStabilityCoordinatorTest 146 mEntry = new NotificationEntryBuilder() in setUp() 151 .setSummary(mEntry) in setUp() 154 when(mHeadsUpManager.isHeadsUpEntry(mEntry.getKey())).thenReturn(false); in setUp() 172 assertTrue(mNotifStabilityManager.isGroupChangeAllowed(mEntry)); in testScreenOff_groupAndSectionChangesAllowed() 176 assertTrue(mNotifStabilityManager.isSectionChangeAllowed(mEntry)); in testScreenOff_groupAndSectionChangesAllowed() 188 assertFalse(mNotifStabilityManager.isGroupChangeAllowed(mEntry)); in testScreenTurningOff_groupAndSectionChangesNotAllowed() 192 assertFalse(mNotifStabilityManager.isSectionChangeAllowed(mEntry)); in testScreenTurningOff_groupAndSectionChangesNotAllowed() 204 assertFalse(mNotifStabilityManager.isGroupChangeAllowed(mEntry)); in testScreenTurningOn_groupAndSectionChangesNotAllowed() 208 assertFalse(mNotifStabilityManager.isSectionChangeAllowed(mEntry)); in testScreenTurningOn_groupAndSectionChangesNotAllowed() [all …]
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
D | ReprocessFormatsMap.java | 113 mEntry = entry; in ReprocessFormatsMap() 132 int left = mEntry.length; in getInputs() 133 for (int i = 0, j = 0; i < mEntry.length; j++) { in getInputs() 134 final int format = mEntry[i]; in getInputs() 144 final int length = mEntry[i]; in getInputs() 180 int left = mEntry.length; in getOutputs() 181 for (int i = 0; i < mEntry.length; ) { in getOutputs() 182 final int inputFormat = mEntry[i]; in getOutputs() 192 final int length = mEntry[i]; in getOutputs() 210 outputs[k] = mEntry[i + k]; in getOutputs() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationEntryTest.java | 77 private NotificationEntry mEntry; field in NotificationEntryTest 88 mEntry = new NotificationEntryBuilder() in setup() 103 mEntry.getSbn().getNotification().flags = Notification.FLAG_FOREGROUND_SERVICE; in testIsExemptFromDndVisualSuppression_foreground() 105 assertTrue(mEntry.isExemptFromDndVisualSuppression()); in testIsExemptFromDndVisualSuppression_foreground() 106 assertFalse(mEntry.shouldSuppressAmbient()); in testIsExemptFromDndVisualSuppression_foreground() 112 mEntry.setRanking(mEntry.getRanking()); in testBlockableEntryWhenCritical() 114 assertTrue(mEntry.isBlockable()); in testBlockableEntryWhenCritical() 122 mEntry.setRanking(mEntry.getRanking()); in testBlockableEntryWhenCriticalAndChannelNotBlockable() 124 assertTrue(mEntry.isBlockable()); in testBlockableEntryWhenCriticalAndChannelNotBlockable() 131 mEntry.setRanking(mEntry.getRanking()); in testNonBlockableEntryWhenCriticalAndChannelNotBlockable() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | BaseHeadsUpManager.java | 246 headsUpEntry.mEntry.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED); in updateNotificationInternal() 251 setEntryPinned(headsUpEntry, shouldHeadsUpBecomePinned(headsUpEntry.mEntry), in updateNotificationInternal() 286 return headsUpEntry != null ? headsUpEntry.mEntry : null; in getEntry() 296 return getHeadsUpEntryList().stream().map(headsUpEntry -> headsUpEntry.mEntry); in getAllEntries() 352 mLogger.logSetEntryPinned(headsUpEntry.mEntry, isPinned, reason); in setEntryPinned() 353 NotificationEntry entry = headsUpEntry.mEntry; in setEntryPinned() 385 NotificationEntry entry = headsUpEntry.mEntry; in onEntryAdded() 417 NotificationEntry entry = finalHeadsUpEntry.mEntry; in removeEntry() 442 NotificationEntry entry = headsUpEntry.mEntry; in onEntryRemoved() 501 String packageName = entry.mEntry.getSbn().getPackageName(); in snooze() [all …]
|
D | RemoteInputView.java | 138 private NotificationEntry mEntry; field in RemoteInputView 292 mEntry.mRemoteEditImeAnimatingAway = false; in onFinishInflate() 297 mEntry.mRemoteEditImeVisible = editTextRootWindowInsets != null in onFinishInflate() 299 if (!mEntry.mRemoteEditImeVisible && !mEditText.mShowImeOnInputConnection) { in onFinishInflate() 300 mController.removeRemoteInput(mEntry, mToken, in onFinishInflate() 333 if (mEntry.remoteInputAttachment != null && mEntry.remoteInputAttachment != item) { in setAttachment() 339 mEntry.remoteInputAttachment.releasePermissions(); in setAttachment() 341 mEntry.remoteInputAttachment = item; in setAttachment() 343 mEntry.remoteInputUri = item.getClip().getItemAt(0).getUri(); in setAttachment() 344 mEntry.remoteInputMimeType = item.getClip().getDescription().getMimeType(0); in setAttachment() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpAppearanceControllerTest.java | 78 private NotificationEntry mEntry; field in HeadsUpAppearanceControllerTest 99 mEntry = mRow.getEntry(); in setUp() 137 when(mHeadsUpManager.getTopEntry()).thenReturn(mEntry); in testShowinEntryUpdated() 138 mHeadsUpAppearanceController.onHeadsUpPinned(mEntry); in testShowinEntryUpdated() 143 mHeadsUpAppearanceController.onHeadsUpUnPinned(mEntry); in testShowinEntryUpdated() 151 when(mHeadsUpManager.getTopEntry()).thenReturn(mEntry); in testShownUpdated() 152 mHeadsUpAppearanceController.onHeadsUpPinned(mEntry); in testShownUpdated() 157 mHeadsUpAppearanceController.onHeadsUpUnPinned(mEntry); in testShownUpdated() 166 when(mHeadsUpManager.getTopEntry()).thenReturn(mEntry); in testHeaderUpdated() 167 mHeadsUpAppearanceController.onHeadsUpPinned(mEntry); in testHeaderUpdated() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationRemoteInputManagerTest.java | 74 private NotificationEntry mEntry; field in NotificationRemoteInputManagerTest 93 mEntry = new NotificationEntryBuilder() in setUp() 100 mEntry.setRow(mRow); in setUp() 107 when(mController.isRemoteInputActive(mEntry)).thenReturn(true); in testShouldExtendLifetime_remoteInputActive() 109 assertTrue(mRemoteInputManager.isRemoteInputActive(mEntry)); in testShouldExtendLifetime_remoteInputActive() 115 when(mController.isSpinning(mEntry.getKey())).thenReturn(true); in testShouldExtendLifetime_isSpinning() 117 assertTrue(mRemoteInputManager.shouldKeepForRemoteInputHistory(mEntry)); in testShouldExtendLifetime_isSpinning() 123 mEntry.lastRemoteInputSent = SystemClock.elapsedRealtime(); in testShouldExtendLifetime_recentRemoteInput() 125 assertTrue(mRemoteInputManager.shouldKeepForRemoteInputHistory(mEntry)); in testShouldExtendLifetime_recentRemoteInput() 131 when(mSmartReplyController.isSendingSmartReply(mEntry.getKey())).thenReturn(true); in testShouldExtendLifetime_smartReplySending() [all …]
|
D | SmartReplyControllerTest.java | 66 private NotificationEntry mEntry; field in SmartReplyControllerTest 110 mEntry = new NotificationEntryBuilder() in setUp() 117 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_updatesRemoteInput() 127 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_logsToStatusBar() 138 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_logsToStatusBar_modifiedBeforeSending() 150 mSmartReplyController.smartSuggestionsAdded(mEntry, TEST_CHOICE_COUNT, TEST_ACTION_COUNT, in testShowSmartSuggestions_logsToStatusBar() 160 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendSmartReply_reportsSending() 168 mSmartReplyController.smartReplySent(mEntry, TEST_CHOICE_INDEX, TEST_CHOICE_TEXT, in testSendingSmartReply_afterRemove_shouldReturnFalse() 170 mSmartReplyController.stopSending(mEntry); in testSendingSmartReply_afterRemove_shouldReturnFalse()
|
D | RemoteInputNotificationRebuilderTest.java | 56 private NotificationEntry mEntry; field in RemoteInputNotificationRebuilderTest 63 mEntry = new NotificationEntryBuilder() in setUp() 70 mEntry.setRow(mRow); in setUp() 80 mEntry, text, false, mimeType, uri); in testRebuildWithRemoteInput_noExistingInput_image() 93 mEntry, "A Reply", false, null, null); in testRebuildWithRemoteInput_noExistingInputNoSpinner() 108 mEntry, "A Reply", true, null, null); in testRebuildWithRemoteInput_noExistingInputWithSpinner() 124 mEntry, "A Reply", false, null, null); in testRebuildWithRemoteInput_withExistingInput() 147 mEntry, text, false, mimeType, uri); in testRebuildWithRemoteInput_withExistingInput_image() 168 mRebuilder.rebuildForCanceledSmartReplies(mEntry); in testRebuildNotificationForCanceledSmartReplies()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | InflatedSmartRepliesTest.java | 81 private NotificationEntry mEntry; field in InflatedSmartRepliesTest 95 mEntry = new NotificationEntryBuilder() in setUp() 121 mSmartReplyStateInflater.chooseSmartRepliesAndActions(mEntry); in chooseSmartRepliesAndActions_smartRepliesOff_noAppGeneratedSmartSuggestions() 131 modifyRanking(mEntry) in chooseSmartRepliesAndActions_smartRepliesOff_noSystemGeneratedSmartSuggestions() 139 mSmartReplyStateInflater.chooseSmartRepliesAndActions(mEntry); in chooseSmartRepliesAndActions_smartRepliesOff_noSystemGeneratedSmartSuggestions() 153 mSmartReplyStateInflater.chooseSmartRepliesAndActions(mEntry); in chooseSmartRepliesAndActions_appGeneratedSmartReplies() 171 mSmartReplyStateInflater.chooseSmartRepliesAndActions(mEntry); in chooseSmartRepliesAndActions_appGeneratedSmartRepliesAndActions() 189 modifyRanking(mEntry) in chooseSmartRepliesAndActions_sysGeneratedSmartReplies() 194 mSmartReplyStateInflater.chooseSmartRepliesAndActions(mEntry); in chooseSmartRepliesAndActions_sysGeneratedSmartReplies() 197 .containsExactlyElementsIn(mEntry.getSmartReplies()).inOrder(); in chooseSmartRepliesAndActions_sysGeneratedSmartReplies() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | RowInflaterTask.java | 49 private NotificationEntry mEntry; field in RowInflaterTask 84 mEntry = entry; in inflate() 98 private final NotificationEntry mEntry; field in RowInflaterTask.RowAsyncLayoutInflater 104 mEntry = entry; in RowAsyncLayoutInflater() 119 new ExpandableNotificationRow(context, attrs, mEntry); in onCreateView() 122 mLogger.logCreatedRow(mEntry, elapsedMs); in onCreateView() 143 mLogger.logInflateFinish(mEntry, elapsedMs, mCancelled); in onInflateFinished() 147 mEntry.onInflationTaskFinished(); in onInflateFinished()
|
/frameworks/base/tools/aapt/tests/ |
D | MockDirectoryWalker.h | 48 mEntry.d_type = DT_REG; in nextEntry() 49 mEntry.d_ino = mPos; in nextEntry() 53 mEntry.d_name[i] = mData[mPos].first[i]; in nextEntry() 54 mEntry.d_name[i] = '\0'; in nextEntry() 63 return &mEntry; in nextEntry()
|
/frameworks/av/media/libnblog/ |
D | Entry.cpp | 146 return EntryIterator(mEntry); in begin() 151 return (const char*) mEntry + offsetof(entry, data); in formatString() 156 return mEntry[offsetof(entry, length)]; in formatStringLength() 227 return EntryIterator(mEntry).payload<HistTsEntry>().ts; in timestamp() 232 return EntryIterator(mEntry).payload<HistTsEntry>().hash; in hash() 237 EntryIterator it(mEntry); in author() 249 memcpy(buffer, mEntry, sizeof(entry) + sizeof(HistTsEntry)); in copyWithAuthor() 258 return EntryIterator(mEntry).next(); in copyWithAuthor()
|
/frameworks/base/tools/aapt/ |
D | DirectoryWalker.h | 42 struct dirent mEntry; variable 79 mEntry = *entryPtr; in nextEntry() 81 String8 fullPath = appendPathCopy(mBasePath, mEntry.d_name); in nextEntry() 83 return &mEntry; in nextEntry()
|
/frameworks/opt/chips/src/com/android/ex/chips/recipientchip/ |
D | SimpleRecipientChip.java | 36 private final RecipientEntry mEntry; field in SimpleRecipientChip 49 mEntry = entry; in SimpleRecipientChip() 94 return mEntry; in getEntry() 108 return !TextUtils.isEmpty(mOriginalText) ? mOriginalText : mEntry.getDestination(); in getOriginalText()
|