Searched defs:primary (Results 1 - 4 of 4) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
H A DCharEscapers.java861 * characters using a primary {@code CharEscaper} first and falls back to a
865 * primary escaper, and if the primary escaper has no escaping for that
868 * If the primary escaper has an escape for a character, the secondary escaper
870 * primary is not run through the secondary. For a case where you would like
874 * @param primary The primary {@code CharEscaper} to use
879 public static CharEscaper fallThrough(CharEscaper primary, argument
881 checkNotNull(primary);
883 return new FallThroughCharEscaper(primary, secondar
1083 private final CharEscaper primary; field in class:CharEscapers.FallThroughCharEscaper
1086 FallThroughCharEscaper(CharEscaper primary, CharEscaper secondary) argument
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DCharEscapers.java861 * characters using a primary {@code CharEscaper} first and falls back to a
865 * primary escaper, and if the primary escaper has no escaping for that
868 * If the primary escaper has an escape for a character, the secondary escaper
870 * primary is not run through the secondary. For a case where you would like
874 * @param primary The primary {@code CharEscaper} to use
879 public static CharEscaper fallThrough(CharEscaper primary, argument
881 checkNotNull(primary);
883 return new FallThroughCharEscaper(primary, secondar
1083 private final CharEscaper primary; field in class:CharEscapers.FallThroughCharEscaper
1086 FallThroughCharEscaper(CharEscaper primary, CharEscaper secondary) argument
[all...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DLegacyContactsProviderTest.java152 // Non-primary
164 // Remove the original primary organization
196 // Non-primary
213 // Remove the primary phone number
267 // Non-primary
285 // Remove the primary email
525 String auxData, boolean primary) {
538 values.put(ContactMethods.ISPRIMARY, primary ? 1 : 0);
524 assertContactMethodInsert(int kind, int type, String label, String data, String auxData, boolean primary) argument
H A DBaseContactsProvider2Test.java225 protected Uri insertOrganization(long rawContactId, ContentValues values, boolean primary) { argument
229 if (primary) {
241 protected Uri insertPhoneNumber(long rawContactId, String phoneNumber, boolean primary) { argument
242 return insertPhoneNumber(rawContactId, phoneNumber, primary, Phone.TYPE_HOME);
245 protected Uri insertPhoneNumber(long rawContactId, String phoneNumber, boolean primary, argument
252 if (primary) {
264 protected Uri insertEmail(long rawContactId, String email, boolean primary) { argument
265 return insertEmail(rawContactId, email, primary, Email.TYPE_HOME, null);
268 protected Uri insertEmail(long rawContactId, String email, boolean primary, argument
270 return insertEmail(rawContactId, email, primary, superPrimar
273 insertEmail(long rawContactId, String email, boolean primary, int type, String label) argument
278 insertEmail(long rawContactId, String email, boolean primary, boolean superPrimary, int type, String label) argument
301 insertSipAddress(long rawContactId, String sipAddress, boolean primary) argument
[all...]

Completed in 199 milliseconds