HomeSort by relevance Sort by last modified time
    Searched full:rawcontacts (Results 76 - 100 of 142) sorted by null

1 2 34 5 6

  /packages/apps/Dialer/tests/src/com/android/dialer/interactions/
PhoneNumberInteractionTest.java 28 import android.provider.ContactsContract.RawContacts;
241 RawContacts.ACCOUNT_TYPE,
242 RawContacts.DATA_SET,
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
GoogleSource.java 35 import android.provider.ContactsContract.RawContacts;
164 final String accountName = stateValues.getAsString(RawContacts.ACCOUNT_NAME);
165 final String accountType = stateValues.getAsString(RawContacts.ACCOUNT_TYPE);
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorBaseActivity.java 39 import android.provider.ContactsContract.RawContacts;
345 intent.putExtra(RawContacts.ACCOUNT_NAME, account.name);
346 intent.putExtra(RawContacts.ACCOUNT_TYPE, account.type);
347 intent.putExtra(RawContacts.DATA_SET, account.dataSet);
ConfirmAddDetailActivity.java 48 import android.provider.ContactsContract.RawContacts;
180 RawContacts.CONTACT_ID,
363 ExtraInfoQuery.COLUMNS, RawContacts.CONTACT_ID + " = ?",
395 mSelection = RawContacts.CONTACT_ID + "=?";
396 } else if (RawContacts.CONTENT_ITEM_TYPE.equals(mimeType)) {
400 mSelection = RawContacts.CONTACT_ID + "=?";
419 contactIdCursor = resolver.query(RawContacts.CONTENT_URI,
420 new String[] { RawContacts.CONTACT_ID },
421 RawContacts._ID + "=?", new String[] { String.valueOf(rawContactId) },
    [all...]
AttachPhotoActivity.java 36 import android.provider.ContactsContract.RawContacts;
370 after.put(RawContacts.ACCOUNT_TYPE, account != null ? account.type : null);
371 after.put(RawContacts.ACCOUNT_NAME, account != null ? account.name : null);
372 after.put(RawContacts.DATA_SET, account != null ? account.dataSet : null);
  /packages/services/Telephony/src/com/android/phone/
SimContacts.java 40 import android.provider.ContactsContract.RawContacts;
153 ContentProviderOperation.newInsert(RawContacts.CONTENT_URI);
156 builder.withValue(RawContacts.ACCOUNT_NAME, account.name);
157 builder.withValue(RawContacts.ACCOUNT_TYPE, account.type);
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ExportTestProvider.java 26 import android.provider.ContactsContract.RawContacts;
103 TestCase.assertTrue(RawContacts.CONTENT_URI.getAuthority().equals(authority));
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
FastScrollingIndexCacheTest.java 22 import android.provider.ContactsContract.RawContacts;
49 private static final Uri URI_B = RawContacts.CONTENT_URI;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SearchIndexManager.java 28 import android.provider.ContactsContract.RawContacts;
298 sb.append(RawContacts.CONTACT_ID + " IN (");
311 sb.append(RawContacts.CONTACT_ID + " IN " +
312 "(SELECT " + RawContacts.CONTACT_ID + " FROM " + Tables.RAW_CONTACTS +
327 RawContacts.CONTACT_ID +
LegacyApiSupport.java 49 import android.provider.ContactsContract.RawContacts;
203 + RawContacts.LAST_TIME_CONTACTED + "=? WHERE "
204 + RawContacts._ID + "=?";
571 Tables.RAW_CONTACTS + "." + RawContacts.TIMES_CONTACTED
573 Tables.RAW_CONTACTS + "." + RawContacts.LAST_TIME_CONTACTED
575 Tables.RAW_CONTACTS + "." + RawContacts.CUSTOM_RINGTONE
577 Tables.RAW_CONTACTS + "." + RawContacts.SEND_TO_VOICEMAIL
579 Tables.RAW_CONTACTS + "." + RawContacts.STARRED
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
PhotoSelectionHandler.java 30 import android.provider.ContactsContract.RawContacts;
221 final String type = entityValues.getAsString(RawContacts.ACCOUNT_TYPE);
222 final String dataSet = entityValues.getAsString(RawContacts.DATA_SET);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
NotificationImportExportListener.java 30 import android.provider.ContactsContract.RawContacts;
124 final Uri contactUri = RawContacts.getContactLookupUri(
126 RawContacts.CONTENT_URI, rawContactId));
NfcImportVCardActivity.java 31 import android.provider.ContactsContract.RawContacts;
232 Uri contactUri = RawContacts.getContactLookupUri(getContentResolver(), uri);
  /packages/apps/Messaging/tests/src/com/android/messaging/util/
ContactUtilTest.java 72 ops.add(ContentProviderOperation.newInsert(ContactsContract.RawContacts.CONTENT_URI)
73 .withValue(ContactsContract.RawContacts.ACCOUNT_TYPE, null)
74 .withValue(ContactsContract.RawContacts.ACCOUNT_NAME, null)
  /frameworks/base/docs/html/guide/topics/providers/
contacts-provider.jd 58 <li>{@link android.provider.ContactsContract.RawContacts}</li>
144 {@link android.provider.ContactsContract.RawContacts} table
171 {@link android.provider.ContactsContract.RawContacts} table. Instead, it's stored in one or more
174 contains the {@link android.provider.BaseColumns#_ID RawContacts._ID} value of its
175 parent {@link android.provider.ContactsContract.RawContacts} row.
179 The important columns in the {@link android.provider.ContactsContract.RawContacts} table are
238 {@link android.provider.ContactsContract.RawContacts} table:
243 {@link android.provider.ContactsContract.RawContacts}. Instead, it's stored in
483 {@link android.provider.ContactsContract.RawContacts} contains <code>_ID</code> values for
671 <td rowspan="2">{@link android.provider.ContactsContract.RawContacts}</td
    [all...]
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java 182 // Note: We use RawContacts because this data must be associated with a particular account.
186 ops.add(ContentProviderOperation.newInsert(ContactsContract.RawContacts.CONTENT_URI)
187 .withValue(ContactsContract.RawContacts.ACCOUNT_TYPE, mSelectedAccount.getType())
188 .withValue(ContactsContract.RawContacts.ACCOUNT_NAME, mSelectedAccount.getName())
  /frameworks/base/docs/html/training/contacts-provider/
modify-data.jd 75 Provider's {@link android.provider.ContactsContract.RawContacts} table. If necessary,
88 Set the MIME type to {@link android.provider.ContactsContract.RawContacts#CONTENT_TYPE
89 RawContacts.CONTENT_TYPE}. For example:
96 intent.setType(ContactsContract.RawContacts.CONTENT_TYPE);
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 86 mRawContacts = suggestion.rawContacts;
RawContactReadOnlyEditorView.java 27 import android.provider.ContactsContract.RawContacts;
260 ContentUris.withAppendedId(RawContacts.CONTENT_URI, mRawContactId));
  /frameworks/base/core/java/android/provider/
ContactsContract.java 71 * A row in the {@link RawContacts} table represents a set of data describing a
77 * RawContacts presumably describing the same person. When data in or associated with
78 * the RawContacts table is changed, the affected aggregate contacts are updated as
122 * {@link RawContacts#DIRTY} is not automatically set and the
127 * the delete operation in {@link RawContacts}.
690 * @see RawContacts
709 * @see RawContacts
753 * @see RawContacts
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_ContactsTest.java 139 ContactsContract.RawContacts.DIRTY,
140 ContactsContract.RawContacts.DELETED
  /packages/apps/Exchange/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 37 import android.provider.ContactsContract.RawContacts;
155 put(RawContacts.ACCOUNT_TYPE, Eas.EXCHANGE_ACCOUNT_MANAGER_TYPE);
156 put(RawContacts.ACCOUNT_NAME, accountName);
157 put(RawContacts.RAW_CONTACT_IS_READ_ONLY, 1);
301 final String accountName = uri.getQueryParameter(RawContacts.ACCOUNT_NAME);
359 final String accountName = uri.getQueryParameter(RawContacts.ACCOUNT_NAME);
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 31 import android.provider.ContactsContract.RawContacts;
498 // RawContacts.CONTACT_ID column). But looking up the mime type requires
517 if (VDBG) Rlog.v(TAG, "'data/phones' URI; using RawContacts.CONTACT_ID");
518 columnName = RawContacts.CONTACT_ID;
523 // (Note Data.CONTACT_ID and RawContacts.CONTACT_ID are equivalent.)
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfo.java 30 import android.provider.ContactsContract.RawContacts;
410 // RawContacts.CONTACT_ID column). But looking up the mime type requires
429 Log.v(TAG, "'data/phones' URI; using RawContacts.CONTACT_ID");
430 columnName = RawContacts.CONTACT_ID;
435 // (Note Data.CONTACT_ID and RawContacts.CONTACT_ID are equivalent.)
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountType.java 26 import android.provider.ContactsContract.RawContacts;
54 * The {@link RawContacts#ACCOUNT_TYPE} these constraints apply to.
59 * The {@link RawContacts#DATA_SET} these constraints apply to.

Completed in 327 milliseconds

1 2 34 5 6