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

1 2

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
QuickResponse.java 51 public static final String[] CONTENT_PROJECTION = new String[] {
134 Cursor c = context.getContentResolver().query(uri, CONTENT_PROJECTION,
Mailbox.java 94 public static final String[] CONTENT_PROJECTION = new String[] {
242 Mailbox.CONTENT_URI, Mailbox.CONTENT_PROJECTION, id);
277 Mailbox.CONTENT_PROJECTION,
546 Object[] hash = new Object[CONTENT_PROJECTION.length];
EmailContent.java 292 public static final String[] CONTENT_PROJECTION = new String[] {
374 Cursor c = context.getContentResolver().query(u, Body.CONTENT_PROJECTION,
382 Body.CONTENT_PROJECTION, Body.MESSAGE_KEY + "=?",
575 public static final String[] CONTENT_PROJECTION = new String[] {
    [all...]
HostAuth.java 76 public static final String[] CONTENT_PROJECTION = new String[] {
100 HostAuth.CONTENT_URI, HostAuth.CONTENT_PROJECTION, id);
Policy.java 104 public static final String[] CONTENT_PROJECTION = new String[] {RECORD_ID,
136 Policy.CONTENT_PROJECTION, id);
Account.java 163 public static final String[] CONTENT_PROJECTION = new String[] {
227 Account.CONTENT_URI, Account.CONTENT_PROJECTION, id);
244 Cursor c = context.getContentResolver().query(getUri(), Account.CONTENT_PROJECTION,
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java 145 resolver.query(uri, Mailbox.CONTENT_PROJECTION, null, null, null);
162 assertEquals(Mailbox.CONTENT_PROJECTION.length, columnNames.length);
163 for (int i = 0; i < Mailbox.CONTENT_PROJECTION.length; i++) {
164 assertEquals(Mailbox.CONTENT_PROJECTION[i], columnNames[i]);
187 // cursor = resolver.query(Mailbox.CONTENT_URI, Mailbox.CONTENT_PROJECTION, null, null, null);
AccountBackupRestoreTests.java 127 Cursor c = cr.query(Account.CONTENT_URI, Account.CONTENT_PROJECTION, null, null, "_id ASC");
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 131 new ContentCache("Account", Account.CONTENT_PROJECTION, MAX_CACHED_ACCOUNTS);
133 new ContentCache("HostAuth", HostAuth.CONTENT_PROJECTION, MAX_CACHED_ACCOUNTS * 2);
135 new ContentCache("Mailbox", Mailbox.CONTENT_PROJECTION,
138 new ContentCache("Message", Message.CONTENT_PROJECTION, 8);
140 new ContentCache("Policy", Policy.CONTENT_PROJECTION, MAX_CACHED_ACCOUNTS);
254 Account.CONTENT_PROJECTION,
255 Mailbox.CONTENT_PROJECTION,
256 Message.CONTENT_PROJECTION,
258 HostAuth.CONTENT_PROJECTION,
261 Policy.CONTENT_PROJECTION,
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/provider/
MailboxUtilities.java 106 Mailbox.CONTENT_PROJECTION, MailboxColumns.SERVER_ID + "=? AND " + accountSelector,
134 resolver.query(Mailbox.CONTENT_URI, Mailbox.CONTENT_PROJECTION,
  /packages/apps/Email/tests/src/com/android/email/
AccountTestCase.java 71 Account.CONTENT_PROJECTION, null, null, null);
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java 187 Cursor c = resolver.query(Account.CONTENT_URI, Account.CONTENT_PROJECTION,
MailService.java 512 Cursor c = resolver.query(uri, Account.CONTENT_PROJECTION, null, null, null);
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java 236 com.android.emailcommon.provider.Account.CONTENT_PROJECTION, null, null, null);
  /packages/apps/Exchange/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java 236 com.android.emailcommon.provider.Account.CONTENT_PROJECTION, null, null, null);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 221 Attachment.CONTENT_PROJECTION, WHERE_NOT_SMART_FORWARD, null, null);
  /packages/apps/Email/src/com/android/email/activity/
ShortcutPickerFragment.java 192 context, Account.CONTENT_URI, Account.CONTENT_PROJECTION, null, null, null);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasAccountService.java 552 Cursor c = mContentResolver.query(Mailbox.CONTENT_URI, Mailbox.CONTENT_PROJECTION,
    [all...]
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 235 Cursor cursor = context.getContentResolver().query(uri, Attachment.CONTENT_PROJECTION,
405 // Cursor attachments = context.getContentResolver().query(uri, Attachment.CONTENT_PROJECTION,
MessagingController.java     [all...]
SecurityPolicy.java 134 Policy.CONTENT_PROJECTION, null, null, null);
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettings.java 421 Account.CONTENT_PROJECTION, null, null, null);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
FolderSyncParser.java 629 Mailbox.CONTENT_PROJECTION, Mailbox.PARENT_SERVER_ID + "=?",
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/adapter/
FolderSyncParserTests.java 327 Cursor c = mResolver.query(Mailbox.CONTENT_URI, Mailbox.CONTENT_PROJECTION,
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
FolderSyncParserTests.java 327 Cursor c = mResolver.query(Mailbox.CONTENT_URI, Mailbox.CONTENT_PROJECTION,

Completed in 413 milliseconds

1 2