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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
ContentValues.aidl 19 parcelable ContentValues;
Entity.java 24 * A representation of a item using ContentValues. It contains one top level ContentValue
25 * plus a collection of Uri, ContentValues tuples as subvalues. One example of its use
27 * table and the subvalues contain a ContentValues object for each row from the Data table that
31 final private ContentValues mValues;
34 public Entity(ContentValues values) {
39 public ContentValues getEntityValues() {
47 public void addSubValue(Uri uri, ContentValues values) {
53 public final ContentValues values;
55 public NamedContentValues(Uri uri, ContentValues values) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
IApnSourceService.aidl 19 import android.content.ContentValues;
23 ContentValues[] getApns();
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
VCardTestsBase.java 18 import android.content.ContentValues;
34 protected final ContentValues mContentValuesForQP;
35 protected final ContentValues mContentValuesForSJis;
36 protected final ContentValues mContentValuesForUtf8;
37 protected final ContentValues mContentValuesForQPAndSJis;
38 protected final ContentValues mContentValuesForQPAndUtf8;
39 protected final ContentValues mContentValuesForBase64V21;
40 protected final ContentValues mContentValuesForBase64V30;
51 mContentValuesForQP = new ContentValues();
53 mContentValuesForSJis = new ContentValues();
    [all...]
ContactEntry.java 18 import android.content.ContentValues;
26 * The class representing one contact, which should contain multiple ContentValues like
31 private final List<ContentValues> mContentValuesList = new ArrayList<ContentValues>();
34 ContentValues contentValues = new ContentValues();
35 contentValues.put(Data.MIMETYPE, mimeType);
36 mContentValuesList.add(contentValues);
37 return new ContentValuesBuilder(contentValues);
    [all...]
ContentValuesBuilder.java 18 import android.content.ContentValues;
21 * ContentValues-like class which enables users to chain put() methods and restricts
25 private final ContentValues mContentValues;
27 public ContentValuesBuilder(final ContentValues contentValues) {
28 mContentValues = contentValues;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowContentValuesTest.java 5 import android.content.ContentValues;
15 private ContentValues contentValues;
19 contentValues = new ContentValues();
24 ContentValues valuesA = new ContentValues();
30 ContentValues valuesA = new ContentValues();
31 ContentValues valuesB = new ContentValues()
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogInsertionHelper.java 19 import android.content.ContentValues;
26 public void addComputedValues(ContentValues values);
DatabaseModifier.java 20 import android.content.ContentValues;
33 * {@link SQLiteDatabase#insert(String, String, ContentValues)} method.
35 public abstract long insert(String table, String nullColumnHack, ContentValues values);
38 * {@link DatabaseUtils.InsertHelper#insert(ContentValues)} method.
40 public abstract long insert(ContentValues values);
43 * {@link SQLiteDatabase#update(String, ContentValues, String, String[])} method.
45 public abstract int update(Uri uri, String table, ContentValues values,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadRecord.java 19 import android.content.ContentValues;
26 // Only word lists have attributes, and the ContentValues should contain the same
29 public final ContentValues mAttributes;
30 public DownloadRecord(final String clientId, final ContentValues attributes) {
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
CallLogInteractionsLoaderTest.java 3 import android.content.ContentValues;
21 ContentValues interactionOneValues = new ContentValues();
25 ContentValues interactionTwoValues = new ContentValues();
38 ContentValues interactionOneValues = new ContentValues();
42 ContentValues interactionTwoValues = new ContentValues();
55 ContentValues interactionOneValues = new ContentValues()
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
RawContactTest.java 19 import android.content.ContentValues;
34 final ContentValues values = new ContentValues();
38 final ContentValues dataItem = new ContentValues();
49 final ContentValues values = new ContentValues();
53 final ContentValues dataItem = new ContentValues();
78 final ContentValues values = new ContentValues()
    [all...]
  /frameworks/base/media/java/android/media/
MediaInserter.java 20 import android.content.ContentValues;
35 private final HashMap<Uri, List<ContentValues>> mRowMap =
36 new HashMap<Uri, List<ContentValues>>();
37 private final HashMap<Uri, List<ContentValues>> mPriorityRowMap =
38 new HashMap<Uri, List<ContentValues>>();
48 public void insert(Uri tableUri, ContentValues values) throws RemoteException {
52 public void insertwithPriority(Uri tableUri, ContentValues values) throws RemoteException {
56 private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException {
57 HashMap<Uri, List<ContentValues>> rowmap = priority ? mPriorityRowMap : mRowMap;
58 List<ContentValues> list = rowmap.get(tableUri)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentValuesTest.java 38 ContentValues cv = new ContentValues();
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
CustomDataItem.java 19 import android.content.ContentValues;
33 CustomDataItem(ContentValues values) {super(values);}
NoteDataItem.java 19 import android.content.ContentValues;
29 /* package */ NoteDataItem(ContentValues values) {
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
IdentityDataItem.java 19 import android.content.ContentValues;
28 /* package */ IdentityDataItem(ContentValues values) {
NicknameDataItem.java 19 import android.content.ContentValues;
28 public NicknameDataItem(ContentValues values) {
NoteDataItem.java 19 import android.content.ContentValues;
28 /* package */ NoteDataItem(ContentValues values) {
WebsiteDataItem.java 19 import android.content.ContentValues;
28 /* package */ WebsiteDataItem(ContentValues values) {
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/
CallLogMutations.java 19 import android.content.ContentValues;
27 private final ArrayMap<Long, ContentValues> inserts = new ArrayMap<>();
28 private final ArrayMap<Long, ContentValues> updates = new ArrayMap<>();
32 * @param contentValues an entire row not including the ID
36 public void insert(long id, ContentValues contentValues) {
41 inserts.put(id, contentValues);
50 * @param contentValues the specific columns to update, not including the ID.
54 public void update(long id, ContentValues contentValues) {
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
MessageModification.java 19 import android.content.ContentValues;
31 * provide an empty ContentValues.
36 * @param values the ContentValues that will be used to create or update the
40 public static void putSubject(ContentValues values, String subject) {
46 * @param values the ContentValues that will be used to create or update the
50 public static void putToAddresses(ContentValues values, String[] toAddresses) {
56 * @param values the ContentValues that will be used to create or update the
60 public static void putCcAddresses(ContentValues values, String[] ccAddresses) {
66 * @param values the ContentValues that will be used to create or update the
70 public static void putBccAddresses(ContentValues values, String[] bccAddresses)
    [all...]
  /packages/apps/TV/partner_support/src/com/google/android/tv/partner/support/
EpgInput.java 19 import android.content.ContentValues;
33 public static EpgInput createEpgChannel(ContentValues contentValues) {
34 long id = contentValues.getAsLong(EpgContract.EpgInputs.COLUMN_ID);
35 String inputId = contentValues.getAsString(EpgContract.EpgInputs.COLUMN_INPUT_ID);
36 String lineupId = contentValues.getAsString(EpgContract.EpgInputs.COLUMN_LINEUP_ID);
57 public final ContentValues toContentValues() {
58 ContentValues contentValues = new ContentValues();
    [all...]
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoWriteSecureSettingsPermissionTest.java 20 import android.content.ContentValues;
37 ContentValues values = new ContentValues();
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardBuilderTest.java 19 import android.content.ContentValues;
36 final ArrayList<ContentValues> contentList = Lists.newArrayList();
38 final ContentValues values = new ContentValues();

Completed in 553 milliseconds

1 2 3 4 5 6 7 8 91011>>