Home
last modified time | relevance | path

Searched refs:ContentValues (Results 1 – 25 of 200) sorted by relevance

12345678

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
DVCardTestsBase.java18 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(); in VCardTestsBase()
53 mContentValuesForSJis = new ContentValues(); in VCardTestsBase()
[all …]
DContactEntry.java18 import android.content.ContentValues;
31 private final List<ContentValues> mContentValuesList = new ArrayList<ContentValues>();
34 ContentValues contentValues = new ContentValues(); in addContentValues()
40 public List<ContentValues> getList() { in getList()
DImportTestProvider.java20 import android.content.ContentValues;
41 private final Map<String, Collection<ContentValues>>
42 mMimeTypeToExpectedContentValues = new HashMap<String, Collection<ContentValues>>();
44 public void addExpectedContentValues(ContentValues expectedContentValues) { in addExpectedContentValues()
47 final Collection<ContentValues> contentValuesCollection; in addExpectedContentValues()
51 contentValuesCollection = new ArrayList<ContentValues>(); in addExpectedContentValues()
74 ContentValues contentValues = operation.resolveValueBackReferences( in applyBatch()
79 ContentValues actualContentValues = operation.resolveValueBackReferences( in applyBatch()
115 final Collection<ContentValues> contentValuesCollection = in applyBatch()
122 for (ContentValues expectedContentValues : contentValuesCollection) { in applyBatch()
[all …]
DPropertyNodesVerifierElem.java18 import android.content.ContentValues;
67 String propName, String propValue, ContentValues contentValues) { in addExpectedNodeWithOrder()
73 String propName, List<String> propValueList, ContentValues contentValues) { in addExpectedNodeWithOrder()
104 List<String> propValueList, ContentValues paramMap, TypeSet paramMap_TYPE) { in addExpectedNodeWithOrder()
110 ContentValues paramMap, TypeSet paramMap_TYPE) { in addExpectedNodeWithOrder()
122 List<String> propValueList, ContentValues paramMap) { in addExpectedNodeWithOrder()
129 ContentValues paramMap, TypeSet paramMap_TYPE, GroupSet propGroupSet) { in addExpectedNodeWithOrder()
152 ContentValues contentValues) { in addExpectedNode()
157 List<String> propValueList, ContentValues contentValues) { in addExpectedNode()
192 ContentValues paramMap, TypeSet paramMap_TYPE) { in addExpectedNode()
[all …]
DContentValuesBuilder.java18 import android.content.ContentValues;
25 private final ContentValues mContentValues;
27 public ContentValuesBuilder(final ContentValues contentValues) { in ContentValuesBuilder()
/frameworks/base/media/java/android/media/
DMediaInserter.java20 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 { in insert()
52 public void insertwithPriority(Uri tableUri, ContentValues values) throws RemoteException { in insertwithPriority()
56 … private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException { in insert()
57 HashMap<Uri, List<ContentValues>> rowmap = priority ? mPriorityRowMap : mRowMap; in insert()
58 List<ContentValues> list = rowmap.get(tableUri); in insert()
[all …]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
DMapper.java20 import android.content.ContentValues;
65 final ContentValues[] valuesList = new ContentValues[1]; in putDeviceDocument()
66 final ContentValues[] extraValuesList = new ContentValues[1]; in putDeviceDocument()
67 valuesList[0] = new ContentValues(); in putDeviceDocument()
68 extraValuesList[0] = new ContentValues(); in putDeviceDocument()
98 final ContentValues[] valuesList = new ContentValues[roots.length]; in putStorageDocuments()
99 final ContentValues[] extraValuesList = new ContentValues[roots.length]; in putStorageDocuments()
101 valuesList[i] = new ContentValues(); in putStorageDocuments()
102 extraValuesList[i] = new ContentValues(); in putStorageDocuments()
142 final ContentValues[] valuesList = new ContentValues[documents.length]; in putChildDocuments()
[all …]
/frameworks/base/core/java/android/provider/
DSyncStateContract.java21 import android.content.ContentValues;
105 ContentValues values = new ContentValues(); in set()
114 ContentValues values = new ContentValues(); in insert()
123 ContentValues values = new ContentValues(); in update()
160 ContentValues values = new ContentValues(); in newSetOperation()
179 ContentValues values = new ContentValues(); in newUpdateOperation()
/frameworks/base/core/java/android/content/
DEntity.java31 final private ContentValues mValues;
34 public Entity(ContentValues values) { in Entity()
39 public ContentValues getEntityValues() { in getEntityValues()
47 public void addSubValue(Uri uri, ContentValues values) { in addSubValue()
53 public final ContentValues values;
55 public NamedContentValues(Uri uri, ContentValues values) { in NamedContentValues()
DContentValues.java32 public final class ContentValues implements Parcelable { class
41 public ContentValues() { in ContentValues() method in ContentValues
52 public ContentValues(int size) { in ContentValues() method in ContentValues
61 public ContentValues(ContentValues from) { in ContentValues() method in ContentValues
72 private ContentValues(HashMap<String, Object> values) { in ContentValues() method in ContentValues
78 if (!(object instanceof ContentValues)) { in equals()
81 return mValues.equals(((ContentValues) object).mValues); in equals()
104 public void putAll(ContentValues other) { in putAll()
477 public static final Parcelable.Creator<ContentValues> CREATOR =
478 new Parcelable.Creator<ContentValues>() {
[all …]
DContentQueryMap.java43 private Map<String, ContentValues> mValues = null;
124 public synchronized ContentValues getValues(String rowName) { in getValues()
151 mValues = new HashMap<String, ContentValues>(capacity); in readCursorIntoCache()
153 ContentValues values = new ContentValues(); in readCursorIntoCache()
163 public synchronized Map<String, ContentValues> getRows() { in getRows()
DContentProviderOperation.java50 private final ContentValues mValues;
52 private final ContentValues mValuesBackReferences;
77 mValues = source.readInt() != 0 ? ContentValues.CREATOR.createFromParcel(source) : null; in ContentProviderOperation()
82 ? ContentValues.CREATOR.createFromParcel(source) in ContentProviderOperation()
285 ContentValues values = resolveValueBackReferences(backRefs, numBackRefs); in apply()
360 public ContentValues resolveValueBackReferences( in resolveValueBackReferences()
365 final ContentValues values; in resolveValueBackReferences()
367 values = new ContentValues(); in resolveValueBackReferences()
369 values = new ContentValues(mValues); in resolveValueBackReferences()
481 private ContentValues mValues;
[all …]
/frameworks/base/core/tests/coretests/src/android/content/
DContentProviderOperationTest.java19 import android.content.ContentValues;
39 private final static ContentValues sTestValues1;
47 sTestValues1 = new ContentValues();
57 public Uri insert(Uri uri, ContentValues values) { in testInsert()
70 public Uri insert(Uri uri, ContentValues values) { in testInsertNoValues()
85 public Uri insert(Uri uri, ContentValues values) { in testInsertFailed()
109 public Uri insert(Uri uri, ContentValues values) { in testInsertWithBackRefs()
111 ContentValues expected = new ContentValues(sTestValues1); in testInsertWithBackRefs()
127 public Uri insert(Uri uri, ContentValues values) { in testUpdate()
210 private Cursor getCursor(ContentValues contentValues, int numRows) { in getCursor()
[all …]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DMediaInserterTest.java28 import android.content.ContentValues;
106 private ContentValues createFileContent() { in createFileContent()
107 ContentValues values = new ContentValues(); in createFileContent()
112 private ContentValues createAudioContent() { in createAudioContent()
113 ContentValues values = new ContentValues(); in createAudioContent()
118 private ContentValues createVideoContent() { in createVideoContent()
119 ContentValues values = new ContentValues(); in createVideoContent()
124 private ContentValues createImageContent() { in createImageContent()
125 ContentValues values = new ContentValues(); in createImageContent()
130 private ContentValues createContent(Uri uri) { in createContent()
[all …]
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DRecurrenceSetTest.java22 import android.content.ContentValues;
43 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet0()
56 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet1()
67 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet2()
80 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet3()
95 final ContentValues values = verifyPopulateContentValues(recurrence, null, in testRecurrenceSet4()
110 final ContentValues values = verifyPopulateContentValues(recurrence, "FREQ=YEARLY", null, in testRecurrenceSet5()
120 final ContentValues values2 = verifyPopulateContentValues(recurrence2, "FREQ=YEARLY", null, in testRecurrenceSet5()
138 final ContentValues values = verifyPopulateContentValues(recurrence, in testRecurrenceSet6()
237 private ContentValues verifyPopulateContentValues(String recurrence, String rrule, String rdate, in verifyPopulateContentValues()
[all …]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
DVCardBuilderTest.java19 import android.content.ContentValues;
36 final ArrayList<ContentValues> contentList = Lists.newArrayList(); in testVCardNameFieldFromDisplayName()
38 final ContentValues values = new ContentValues(); in testVCardNameFieldFromDisplayName()
/frameworks/support/tv-provider/src/android/support/media/tv/
DPreviewProgram.java21 import android.content.ContentValues;
126 public ContentValues toContentValues() { in toContentValues()
139 public ContentValues toContentValues(boolean includeProtectedFields) { in toContentValues()
140 ContentValues values = super.toContentValues(includeProtectedFields); in toContentValues()
195 mValues = new ContentValues(other.mValues); in Builder()
DWatchNextProgram.java21 import android.content.ContentValues;
129 public ContentValues toContentValues() { in toContentValues()
142 public ContentValues toContentValues(boolean includeProtectedFields) { in toContentValues()
143 ContentValues values = super.toContentValues(includeProtectedFields); in toContentValues()
199 mValues = new ContentValues(other.mValues); in Builder()
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/android/arch/persistence/room/integration/testapp/migration/
DMigrationDb.java31 import android.content.ContentValues;
109 ContentValues values = new ContentValues(); in insertIntoEntity1()
131 ContentValues values = new ContentValues(); in insertIntoEntity2()
/frameworks/ex/common/java/com/android/common/content/
DSQLiteContentProvider.java22 import android.content.ContentValues;
71 protected abstract Uri insertInTransaction(Uri uri, ContentValues values); in insertInTransaction()
76 protected abstract int updateInTransaction(Uri uri, ContentValues values, String selection, in updateInTransaction()
95 public Uri insert(Uri uri, ContentValues values) { in insert()
122 public int bulkInsert(Uri uri, ContentValues[] values) { in bulkInsert()
148 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update()
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DDisabledProvider.java20 import android.content.ContentValues;
43 public Uri insert(Uri uri, ContentValues values) { in insert()
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update()
DEnabledProvider.java20 import android.content.ContentValues;
43 public Uri insert(Uri uri, ContentValues values) { in insert()
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardBuilder.java18 import android.content.ContentValues;
205 private boolean containsNonEmptyName(final ContentValues contentValues) { in containsNonEmptyName()
225 private ContentValues getPrimaryContentValueWithStructuredName( in getPrimaryContentValueWithStructuredName()
226 final List<ContentValues> contentValuesList) { in getPrimaryContentValueWithStructuredName()
227 ContentValues primaryContentValues = null; in getPrimaryContentValueWithStructuredName()
228 ContentValues subprimaryContentValues = null; in getPrimaryContentValueWithStructuredName()
229 for (ContentValues contentValues : contentValuesList) { in getPrimaryContentValueWithStructuredName()
260 primaryContentValues = new ContentValues(); in getPrimaryContentValueWithStructuredName()
271 private VCardBuilder appendNamePropertiesV40(final List<ContentValues> contentValuesList) { in appendNamePropertiesV40()
290 final ContentValues contentValues = in appendNamePropertiesV40()
[all …]
/frameworks/base/core/tests/coretests/apks/install_multi_package/src/com/android/frameworks/coretests/
DSecondChildTestReceiver.java21 import android.content.ContentValues;
44 public Uri insert(Uri uri, ContentValues values) { in insert()
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update()
DTestReceiver.java21 import android.content.ContentValues;
44 public Uri insert(Uri uri, ContentValues values) { in insert()
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update()

12345678