Home
last modified time | relevance | path

Searched refs:hasEmail (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java189 boolean hasEmail = false; in buildFolderStructure()
195 hasEmail = true; in buildFolderStructure()
199 mCurrentFolder.setHasEmailContent(hasEmail); in buildFolderStructure()
205 tmpFolder.setHasEmailContent(hasEmail); in buildFolderStructure()
210 tmpFolder.setHasEmailContent(hasEmail); in buildFolderStructure()
217 if (hasEmail) { in buildFolderStructure()
/packages/apps/Contacts/tests/src/com/android/contacts/database/
DSimContactDaoTests.java20 import static com.android.contacts.tests.ContactsMatchers.DataCursor.hasEmail;
155 assertThat(cursor, allOf(hasEmail("user@example.com"), hasEmail("user2@example.com"))); in importFromSim()
/packages/apps/Contacts/tests/src/com/android/contacts/tests/
DContactsMatchers.java62 public static Matcher<Cursor> hasEmail(final String email) { in hasEmail() method in ContactsMatchers.DataCursor