HomeSort by relevance Sort by last modified time
    Searched refs:ACCOUNT_NAME (Results 1 - 25 of 43) sorted by null

1 2

  /frameworks/base/core/java/android/provider/
SyncStateContract.java 39 public static final String ACCOUNT_NAME = "account_name";
61 Columns.ACCOUNT_NAME + "=? AND " + Columns.ACCOUNT_TYPE + "=?";
101 values.put(Columns.ACCOUNT_NAME, account.name);
110 values.put(Columns.ACCOUNT_NAME, account.name);
153 .withValue(Columns.ACCOUNT_NAME, account.name)
  /frameworks/base/core/java/com/android/internal/content/
SyncStateContentProviderHelper.java 38 SyncStateContract.Columns.ACCOUNT_NAME + "=? AND "
48 new String[]{SyncStateContract.Columns.ACCOUNT_NAME,
62 + SyncStateContract.Columns.ACCOUNT_NAME + " TEXT NOT NULL,"
65 + "UNIQUE(" + SyncStateContract.Columns.ACCOUNT_NAME + ", "
92 return db.replace(SYNC_STATE_TABLE, SyncStateContract.Columns.ACCOUNT_NAME, values);
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_GroupMembershipTest.java 81 .with(RawContacts.ACCOUNT_NAME, "test_name")
86 .with(Groups.ACCOUNT_NAME, "test_name")
107 .with(RawContacts.ACCOUNT_NAME, "test_name")
114 .with(Groups.ACCOUNT_NAME, "test_name")
ContactsContract_DataTest.java 64 .with(RawContacts.ACCOUNT_NAME, "test_name")
92 .with(RawContacts.ACCOUNT_NAME, "test_name")
ContactsContract_RawContactsTest.java 62 .with(RawContacts.ACCOUNT_NAME, "test_name")
90 .with(RawContacts.ACCOUNT_NAME, "test_name")
  /cts/tests/src/android/content/cts/
MockAccountAuthenticator.java 30 public static final String ACCOUNT_NAME = "android.content.cts.account.name";
42 result.putString(AccountManager.KEY_ACCOUNT_NAME, ACCOUNT_NAME);
  /packages/apps/Contacts/src/com/android/contacts/model/
GoogleSource.java 47 Groups.TITLE + "=? AND " + Groups.ACCOUNT_NAME + "=? AND " + Groups.ACCOUNT_TYPE + "=?";
129 final String accountName = stateValues.getAsString(RawContacts.ACCOUNT_NAME);
151 Groups.ACCOUNT_NAME + " =? AND " + Groups.ACCOUNT_TYPE + " =?",
182 newGroup.put(Groups.ACCOUNT_NAME, accountName);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java 259 Groups.ACCOUNT_NAME + "," +
270 int ACCOUNT_NAME = 7;
301 bindString(insert, GroupsInsert.ACCOUNT_NAME, account);
305 insert.bindNull(GroupsInsert.ACCOUNT_NAME);
399 RawContacts.ACCOUNT_NAME + "," +
416 int ACCOUNT_NAME = 11;
562 bindString(insert, RawContactsInsert.ACCOUNT_NAME, account);
566 insert.bindNull(RawContactsInsert.ACCOUNT_NAME);
    [all...]
ContactAggregator.java 334 ", " + RawContacts.ACCOUNT_TYPE + "," + RawContacts.ACCOUNT_NAME +
341 int ACCOUNT_NAME = 3;
388 accountNames[index] = c.getString(AggregationQuery.ACCOUNT_NAME);
447 RawContacts.CONTACT_ID, RawContacts.ACCOUNT_TYPE, RawContacts.ACCOUNT_NAME };
453 public static final int ACCOUNT_NAME = 2;
468 accountName = cursor.getString(RawContactIdAndAccountQuery.ACCOUNT_NAME);
613 " AND " + RawContacts.ACCOUNT_NAME + " IS NULL ";
620 " AND " + RawContacts.ACCOUNT_NAME + "=?";
    [all...]
LegacyApiSupport.java 564 RawContacts.ACCOUNT_NAME + ", " +
    [all...]
ContactsProvider2.java 306 RawContacts.ACCOUNT_NAME,
311 int ACCOUNT_NAME = 2;
583 sRawContactsProjectionMap.put(RawContacts.ACCOUNT_NAME, RawContacts.ACCOUNT_NAME);
    [all...]
ContactsDatabaseHelper.java 127 + "raw_contacts.account_name = settings.account_name AND "
137 + "raw_contacts.account_name = settings.account_name AND "
227 + Groups.ACCOUNT_NAME + "=? AND " + Groups.ACCOUNT_TYPE + "=?";
258 Tables.RAW_CONTACTS + "." + RawContacts.ACCOUNT_NAME;
346 public static final String CONCRETE_ACCOUNT_NAME = Tables.GROUPS + "." + Groups.ACCOUNT_NAME;
416 + Settings.ACCOUNT_NAME;
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 322 values.put(Settings.ACCOUNT_NAME, sTestAccount.name);
331 mResolver.update(Settings.CONTENT_URI, values, Settings.ACCOUNT_NAME + "=? AND "
378 values.put(Settings.ACCOUNT_NAME, sTestAccount.name);
388 values.put(Settings.ACCOUNT_NAME, sSecondAccount.name);
ContactLookupKeyTest.java 94 storeValue(RawContacts.CONTENT_URI, rawContactId1, RawContacts.ACCOUNT_NAME, "FOO");
99 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.ACCOUNT_NAME, "BAR");
LegacyContactImporterTest.java 147 Groups.ACCOUNT_NAME,
181 RawContacts.ACCOUNT_NAME,
BaseContactsProvider2Test.java 134 .appendQueryParameter(RawContacts.ACCOUNT_NAME, account.name)
166 builder.appendQueryParameter(ContactsContract.RawContacts.ACCOUNT_NAME, account.name);
198 values.put(Settings.ACCOUNT_NAME, account.name);
378 values.put(RawContacts.ACCOUNT_NAME, accountName);
531 assertTrue(c.isNull(c.getColumnIndexOrThrow(Groups.ACCOUNT_NAME)));
534 assertEquals(account.name, c.getString(c.getColumnIndexOrThrow(Groups.ACCOUNT_NAME)));
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountAuthenticator.java 94 result.putString(AccountManager.KEY_ACCOUNT_NAME, AccountManagerTest.ACCOUNT_NAME);
AccountManagerTest.java 47 public static final String ACCOUNT_NAME = "android.accounts.cts.account.name";
81 public static final Account ACCOUNT = new Account(ACCOUNT_NAME, ACCOUNT_TYPE);
124 assertEquals(ACCOUNT_NAME, result.get(AccountManager.KEY_ACCOUNT_NAME));
130 assertEquals(ACCOUNT_NAME, result.get(AccountManager.KEY_ACCOUNT_NAME));
    [all...]
  /packages/apps/Email/src/com/android/exchange/
ContactsSyncAdapterService.java 101 .appendQueryParameter(RawContacts.ACCOUNT_NAME, account.name)
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverSyncTestCase.java 39 private static final Account ACCOUNT = new Account(MockAccountAuthenticator.ACCOUNT_NAME,
305 extras.putString("String", MockAccountAuthenticator.ACCOUNT_NAME);
  /packages/apps/Contacts/src/com/android/contacts/ui/
ContactsPreferencesActivity.java 367 * {@link Settings#ACCOUNT_NAME} and {@link Settings#ACCOUNT_TYPE}.
372 .appendQueryParameter(Settings.ACCOUNT_NAME, accountName)
380 values.put(Settings.ACCOUNT_NAME, accountName);
473 builder.withSelection(Settings.ACCOUNT_NAME + "=? AND " + Settings.ACCOUNT_TYPE
475 this.getAsString(Settings.ACCOUNT_NAME),
558 .appendQueryParameter(Groups.ACCOUNT_NAME, accountName)
    [all...]
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java 50 public static final String ACCOUNT_NAME =
51 "com.example.android.contactmanager.ContactsAdder.ACCOUNT_NAME";
188 .withValue(ContactsContract.RawContacts.ACCOUNT_NAME, mSelectedAccount.getName())
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactOperations.java 91 mValues.put(RawContacts.ACCOUNT_NAME, accountName);
  /packages/apps/Contacts/src/com/android/contacts/ui/widget/
ReadOnlyContactEditorView.java 117 String accountName = values.getAsString(RawContacts.ACCOUNT_NAME);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 57 static final String ACCOUNT_NAME = "_sync_account";
189 + SyncStateContract.Columns.ACCOUNT_NAME + ","
214 ACCOUNT_NAME + " TEXT," +
245 ACCOUNT_NAME + " TEXT," +
    [all...]

Completed in 397 milliseconds

1 2