Searched defs:ACCOUNT_TYPE (Results 1 - 17 of 17) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/
H A DGroupListLoader.java33 Groups.ACCOUNT_TYPE,
41 public final static int ACCOUNT_TYPE = 1; field in class:GroupListLoader
50 super(context, GROUP_LIST_URI, COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND "
53 Groups.ACCOUNT_TYPE + ", " + Groups.ACCOUNT_NAME + ", " + Groups.DATA_SET + ", " +
H A DGroupMetaDataLoader.java31 Groups.ACCOUNT_TYPE,
42 public final static int ACCOUNT_TYPE = 1; field in class:GroupMetaDataLoader
52 super(context, ensureIsGroupUri(groupUri), COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND "
H A DSplitAggregateView.java57 Data.MIMETYPE, RawContacts.ACCOUNT_TYPE, RawContacts.DATA_SET, Data.RAW_CONTACT_ID,
63 int ACCOUNT_TYPE = 1; field in interface:SplitAggregateView.SplitQuery
170 info.accountType = cursor.getString(SplitQuery.ACCOUNT_TYPE);
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DSelectAccountActivity.java36 public static final String ACCOUNT_TYPE = "account_type"; field in class:SelectAccountActivity
70 intent.putExtra(ACCOUNT_TYPE, account.type);
89 intent.putExtra(ACCOUNT_TYPE, account.type);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DGoogleAccountType.java43 public static final String ACCOUNT_TYPE = "com.google"; field in class:GoogleAccountType
49 this.accountType = ACCOUNT_TYPE;
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DExchangeSource.java39 public static final String ACCOUNT_TYPE = "com.android.exchange"; field in class:ExchangeSource
42 this.accountType = ACCOUNT_TYPE;
H A DGoogleSource.java44 public static final String ACCOUNT_TYPE = "com.google"; field in class:GoogleSource
46 this.accountType = ACCOUNT_TYPE;
165 final String accountType = stateValues.getAsString(RawContacts.ACCOUNT_TYPE);
186 Groups.ACCOUNT_NAME + " =? AND " + Groups.ACCOUNT_TYPE + " =?",
218 newGroup.put(Groups.ACCOUNT_TYPE, accountType);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactDirectoryManager.java83 Directory.ACCOUNT_TYPE,
92 public static final int ACCOUNT_TYPE = 1; field in class:ContactDirectoryManager.DirectoryQuery
254 + Directory.ACCOUNT_TYPE + "=?)";
428 info.accountType = cursor.getString(DirectoryQuery.ACCOUNT_TYPE);
497 values.put(Directory.ACCOUNT_TYPE, info.accountType);
511 + Directory.ACCOUNT_NAME + "=? AND " + Directory.ACCOUNT_TYPE + "=?",
H A DLegacyApiSupport.java926 mValues.put(Groups.ACCOUNT_TYPE, mAccount.type);
1271 + " AND " + Settings.ACCOUNT_TYPE + "=?"
1276 + " AND " + Settings.ACCOUNT_TYPE + " IS NULL"
1283 mValues.put(Settings.ACCOUNT_TYPE, accountType);
1310 + ContactsContract.Settings.ACCOUNT_TYPE + ","
1315 " AND " + ContactsContract.Settings.ACCOUNT_TYPE + "="
1325 int ACCOUNT_TYPE = 1; field in interface:LegacyApiSupport.SettingsMatchQuery
1338 String accountType = cursor.getString(SettingsMatchQuery.ACCOUNT_TYPE);
1370 mValues.put(RawContacts.ACCOUNT_TYPE, mAccount.type);
1937 sb.append(" AND " + RawContacts.ACCOUNT_TYPE
[all...]
H A DContactsDatabaseHelper.java336 AccountsColumns.ACCOUNT_TYPE + " IS NULL AND " +
461 String CONCRETE_ACCOUNT_TYPE = Views.RAW_CONTACTS + "." + RawContacts.ACCOUNT_TYPE;
519 String CONCRETE_ACCOUNT_TYPE = Views.GROUPS + "." + Groups.ACCOUNT_TYPE;
571 + Settings.ACCOUNT_TYPE;
660 String ACCOUNT_TYPE = RawContacts.ACCOUNT_TYPE; field in interface:ContactsDatabaseHelper.AccountsColumns
664 String CONCRETE_ACCOUNT_TYPE = Tables.ACCOUNTS + "." + ACCOUNT_TYPE;
1167 AccountsColumns.ACCOUNT_TYPE + " TEXT, " +
1453 Settings.ACCOUNT_TYPE + " STRING NOT NULL," +
1589 Directory.ACCOUNT_TYPE
[all...]
H A DContactsProvider2.java474 public static final int ACCOUNT_TYPE = 1; field in interface:ContactsProvider2.DataContactsQuery
494 int ACCOUNT_TYPE = 2; field in interface:ContactsProvider2.RawContactsQuery
604 RawContacts.ACCOUNT_TYPE,
665 .add(RawContacts.ACCOUNT_TYPE)
936 .add(Groups.ACCOUNT_TYPE)
994 .add(Settings.ACCOUNT_TYPE)
1062 .add(StreamItems.ACCOUNT_TYPE)
1103 .add(Directory.ACCOUNT_TYPE)
2599 * {@link RawContacts#ACCOUNT_TYPE} is specified, leaving the
2602 * and {@link RawContacts#ACCOUNT_TYPE} ar
4188 int ACCOUNT_TYPE = 1; field in interface:ContactsProvider2.GroupAccountQuery
5135 public static final int ACCOUNT_TYPE = 3; field in class:ContactsProvider2.DirectoryQuery
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionEngine.java280 RawContacts.ACCOUNT_TYPE,
295 public static final int ACCOUNT_TYPE = 10; field in class:AggregationSuggestionEngine.DataQuery
400 rawContact.accountType = mDataCursor.getString(DataQuery.ACCOUNT_TYPE);
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java255 RawContacts.ACCOUNT_TYPE, // 3
266 private static final int ACCOUNT_TYPE = 3; field in class:PhoneNumberInteraction
407 item.accountType = cursor.getString(ACCOUNT_TYPE);
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBookmarksPage.java88 static final String ACCOUNT_TYPE = "account_type"; field in class:BrowserBookmarksPage
106 String accountType = args.getString(ACCOUNT_TYPE);
126 args.putString(ACCOUNT_TYPE, accountType);
658 Accounts.ACCOUNT_TYPE
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DContactLoader.java132 RawContacts.ACCOUNT_TYPE,
204 public static final int ACCOUNT_TYPE = 16; field in class:ContactLoader.ContactQuery
267 Directory.ACCOUNT_TYPE,
275 public static final int ACCOUNT_TYPE = 3; field in class:ContactLoader.DirectoryQuery
283 Groups.ACCOUNT_TYPE,
292 public static final int ACCOUNT_TYPE = 1; field in class:ContactLoader.GroupQuery
388 final String accountType = json.getString(RawContacts.ACCOUNT_TYPE);
649 cursorColumnToContentValues(cursor, cv, ContactQuery.ACCOUNT_TYPE);
738 final String accountType = cursor.getString(DirectoryQuery.ACCOUNT_TYPE);
777 "(" + Groups.ACCOUNT_NAME + "=? AND " + Groups.ACCOUNT_TYPE
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java1758 int ACCOUNT_TYPE = 3; field in interface:ContactAggregator.RawContactsQuery
1876 String accountType = c.getString(RawContactsQuery.ACCOUNT_TYPE);
1945 String accountType = c.getString(RawContactsQuery.ACCOUNT_TYPE);
2064 int ACCOUNT_TYPE = 0; field in interface:ContactAggregator.PhotoIdQuery
2105 String accountType = c.getString(PhotoIdQuery.ACCOUNT_TYPE);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DUIProvider.java114 public static final String ACCOUNT_TYPE = field in class:UIProvider

Completed in 482 milliseconds