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.java175 boolean hasEmail = false; in buildFolderStructure()
180 hasEmail = true; in buildFolderStructure()
183 mCurrentFolder.setHasEmailContent(hasEmail); in buildFolderStructure()
189 tmpFolder.setHasEmailContent(hasEmail); in buildFolderStructure()
194 tmpFolder.setHasEmailContent(hasEmail); in buildFolderStructure()
201 if (hasEmail) { in buildFolderStructure()
/packages/apps/Contacts/tests/src/com/android/contacts/database/
DSimContactDaoTests.java20 import static com.android.contacts.tests.ContactsMatchers.DataCursor.hasEmail;
154 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