/packages/apps/Dialer/java/com/android/voicemail/impl/ |
D | Voicemail.java | 37 private final Boolean hasContent; field in Voicemail 50 Boolean hasContent, in Voicemail() argument 61 this.hasContent = hasContent; in Voicemail() 152 public Builder setHasContent(boolean hasContent) { in setHasContent() argument 153 builderHasContent = hasContent; in setHasContent() 252 public boolean hasContent() { in hasContent() method in Voicemail 253 return hasContent; in hasContent() 291 if (hasContent) { in writeToParcel() 330 hasContent = in.readInt() > 0 ? true : false; in Voicemail()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/ |
D | RecentConversationsPreferenceControllerTest.java | 97 boolean hasContent = mController.populateList(ImmutableList.of()); in testPopulateList_hideIfNoConversations() 99 assertThat(hasContent).isFalse(); in testPopulateList_hideIfNoConversations() 111 boolean hasContent = mController.populateList(ImmutableList.of(ccw)); in testPopulateList_validConversations() 113 assertThat(hasContent).isTrue(); in testPopulateList_validConversations() 137 boolean hasContent = mController.populateConversations(ImmutableList.of(ccw, ccw2, ccw3)); in populateConversations_blocked() 139 assertThat(hasContent).isTrue(); in populateConversations_blocked() 309 boolean hasContent = mController.populateList(ImmutableList.of(ccw)); in testPopulateList_onlyNonremoveableConversations() 311 assertThat(hasContent).isTrue(); in testPopulateList_onlyNonremoveableConversations()
|
D | ConversationListPreferenceControllerTest.java | 89 boolean hasContent = mController.updateList(ImmutableList.of()); in testUpdateList_hideIfNoConversations() 91 assertThat(hasContent).isFalse(); in testUpdateList_hideIfNoConversations() 104 boolean hasContent = mController.updateList(ImmutableList.of(ccw)); in testUpdateList_validConversations() 106 assertThat(hasContent).isTrue(); in testUpdateList_validConversations()
|
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/ |
D | VoicemailPlaybackPresenter.java | 290 hasContent -> { in setPlaybackView() 291 if (hasContent) { in setPlaybackView() 403 public void onPostExecute(Boolean hasContent) { in checkForContent() 404 callback.onContentChecked(hasContent); in checkForContent() 473 if (!hasContent(cursor)) { in requestContent() 647 hasContent -> { in resumePlayback() 648 if (!hasContent) { in resumePlayback() 889 if (hasContent(callLogInfo) && hasContent(contentInfo)) { in doInBackground() 970 private static boolean hasContent(@Nullable Cursor cursor) { in hasContent() method in VoicemailPlaybackPresenter 1050 void onContentChecked(boolean hasContent); in onContentChecked() argument [all …]
|
/packages/apps/Settings/src/com/android/settings/notification/app/ |
D | ConversationListPreferenceController.java | 79 boolean hasContent = mPreferenceGroup.getPreferenceCount() != 0; in updateList() 80 if (hasContent) { in updateList() 88 return hasContent; in updateList()
|
D | ConversationListSettings.java | 103 boolean hasContent = mPriorityConversationsController.updateList(conversationList) in update() 106 mNoConversationsController.setAvailable(!hasContent); in update()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/ |
D | DialogFragment.java | 206 boolean hasContent = fm.findFragmentByTag(BaseDialogFragment.TAG_CONTENT) != null; in getContentFragmentTransaction() 209 if (hasContent) { in getContentFragmentTransaction()
|
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/ |
D | NewVoicemailMediaPlayerView.java | 469 if (!hasContent(cursor)) { in queryVoicemailSourcePackage() 492 private boolean hasContent(Cursor cursor) { in hasContent() method in NewVoicemailMediaPlayerView
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
D | BugleDatabaseOperations.java | 742 if (draftMessage == null || !draftMessage.hasContent()) { in updateConversationDraftSnippetAndPreviewInTransaction() 1558 && message.hasContent() && conversationExists) { in updateDraftMessageData()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
D | MessageData.java | 819 public boolean hasContent() { in hasContent() method in MessageData
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/ |
D | ComposeMessageView.java | 401 if (message != null && message.hasContent()) { in sendMessageInternal()
|