Home
last modified time | relevance | path

Searched refs:hasContent (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/
DVoicemail.java37 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/
DRecentConversationsPreferenceControllerTest.java97 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()
DConversationListPreferenceControllerTest.java89 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/
DVoicemailPlaybackPresenter.java290 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/
DConversationListPreferenceController.java79 boolean hasContent = mPreferenceGroup.getPreferenceCount() != 0; in updateList()
80 if (hasContent) { in updateList()
88 return hasContent; in updateList()
DConversationListSettings.java103 boolean hasContent = mPriorityConversationsController.updateList(conversationList) in update()
106 mNoConversationsController.setAvailable(!hasContent); in update()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
DDialogFragment.java206 boolean hasContent = fm.findFragmentByTag(BaseDialogFragment.TAG_CONTENT) != null; in getContentFragmentTransaction()
209 if (hasContent) { in getContentFragmentTransaction()
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
DNewVoicemailMediaPlayerView.java469 if (!hasContent(cursor)) { in queryVoicemailSourcePackage()
492 private boolean hasContent(Cursor cursor) { in hasContent() method in NewVoicemailMediaPlayerView
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DBugleDatabaseOperations.java742 if (draftMessage == null || !draftMessage.hasContent()) { in updateConversationDraftSnippetAndPreviewInTransaction()
1558 && message.hasContent() && conversationExists) { in updateDraftMessageData()
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DMessageData.java819 public boolean hasContent() { in hasContent() method in MessageData
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DComposeMessageView.java401 if (message != null && message.hasContent()) { in sendMessageInternal()