Home
last modified time | relevance | path

Searched refs:ContentValues (Results 1 – 25 of 179) 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 …]
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 …]
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()
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.java21 import android.content.ContentValues;
36 private final HashMap<Uri, List<ContentValues>> mRowMap =
37 new HashMap<Uri, List<ContentValues>>();
38 private final HashMap<Uri, List<ContentValues>> mPriorityRowMap =
39 new HashMap<Uri, List<ContentValues>>();
49 public void insert(Uri tableUri, ContentValues values) throws RemoteException { in insert()
53 public void insertwithPriority(Uri tableUri, ContentValues values) throws RemoteException { in insertwithPriority()
57 … private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException { in insert()
58 HashMap<Uri, List<ContentValues>> rowmap = priority ? mPriorityRowMap : mRowMap; in insert()
59 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/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DMediaInserterTest.java28 import android.content.ContentValues;
98 private ContentValues createFileContent() { in createFileContent()
99 ContentValues values = new ContentValues(); in createFileContent()
104 private ContentValues createAudioContent() { in createAudioContent()
105 ContentValues values = new ContentValues(); in createAudioContent()
110 private ContentValues createVideoContent() { in createVideoContent()
111 ContentValues values = new ContentValues(); in createVideoContent()
116 private ContentValues createImageContent() { in createImageContent()
117 ContentValues values = new ContentValues(); in createImageContent()
122 private ContentValues createContent(Uri uri) { in createContent()
[all …]
/frameworks/base/core/tests/coretests/src/android/content/
DContentProviderOperationTest.java40 private final static ContentValues sTestValues1;
48 sTestValues1 = new ContentValues();
58 public Uri insert(Uri uri, ContentValues values) { in testInsert()
71 public Uri insert(Uri uri, ContentValues values) { in testInsertNoValues()
86 public Uri insert(Uri uri, ContentValues values) { in testInsertFailed()
110 public Uri insert(Uri uri, ContentValues values) { in testInsertWithBackRefs()
112 ContentValues expected = new ContentValues(sTestValues1); in testInsertWithBackRefs()
128 public Uri insert(Uri uri, ContentValues values) { in testUpdate()
211 private Cursor getCursor(ContentValues contentValues, int numRows) { in getCursor()
231 ContentValues values = new ContentValues(); in testValueBackRefs()
[all …]
/frameworks/base/core/java/android/content/
DEntity.java34 final private ContentValues mValues;
38 public Entity(ContentValues values) { in Entity()
43 public ContentValues getEntityValues() { in getEntityValues()
51 public void addSubValue(Uri uri, ContentValues values) { in addSubValue()
57 public final ContentValues values;
59 public NamedContentValues(Uri uri, ContentValues values) { in NamedContentValues()
DContentValues.java37 public final class ContentValues implements Parcelable { class
53 public ContentValues() { in ContentValues() method in ContentValues
62 public ContentValues(int size) { in ContentValues() method in ContentValues
72 public ContentValues(ContentValues from) { in ContentValues() method in ContentValues
83 private ContentValues(HashMap<String, Object> from) { in ContentValues() method in ContentValues
89 private ContentValues(Parcel in) { in ContentValues() method in ContentValues
96 if (!(object instanceof ContentValues)) { in equals()
99 return mMap.equals(((ContentValues) object).mMap); in equals()
127 public void putAll(ContentValues other) { in putAll()
500 public static final @android.annotation.NonNull Parcelable.Creator<ContentValues> CREATOR =
[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.java56 private final ContentValues mValues;
58 private final ContentValues mValuesBackReferences;
85 mValues = source.readInt() != 0 ? ContentValues.CREATOR.createFromParcel(source) : null; in ContentProviderOperation()
90 ? ContentValues.CREATOR.createFromParcel(source) in ContentProviderOperation()
316 ContentValues values = resolveValueBackReferences(backRefs, numBackRefs); in applyInternal()
391 public ContentValues resolveValueBackReferences( in resolveValueBackReferences()
396 final ContentValues values; in resolveValueBackReferences()
398 values = new ContentValues(); in resolveValueBackReferences()
400 values = new ContentValues(mValues); in resolveValueBackReferences()
512 private ContentValues mValues;
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
DFakeProviderWithAsserts.java21 import android.content.ContentValues;
61 private ContentValues mContentValues;
64 ExpectedInsert(Uri uri, ContentValues contentValues, Uri returnValue) { in ExpectedInsert()
75 private ContentValues mContentValues;
79 ContentValues contentValues, int returnValue) { in ExpectedUpdate()
114 public Uri insert(Uri uri, ContentValues contentValues) { in insert()
122 public int update(Uri uri, ContentValues contentValues, String whereClause, in update()
133 ContentValues actual, ContentValues expected) { in assertThatContentValuesAreEquivalent()
/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/base/core/java/android/service/carrier/
DApnService.java24 import android.content.ContentValues;
53 public ContentValues[] getApns(int subId) {
55 List<ContentValues> apns = ApnService.this.onRestoreApns(subId);
56 return apns.toArray(new ContentValues[apns.size()]);
80 public abstract List<ContentValues> onRestoreApns(int subId); in onRestoreApns()
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverableKeyStoreDbHelperTest.java21 import android.content.ContentValues;
162 ContentValues values = new ContentValues(); in isRootOfTrustTableAvailable()
174 ContentValues values = new ContentValues(); in checkAllColumns_v4()
187 values = new ContentValues(); in checkAllColumns_v4()
196 values = new ContentValues(); in checkAllColumns_v4()
223 ContentValues values = new ContentValues(); in checkAllColumns_latest()
240 values = new ContentValues(); in checkAllColumns_latest()
/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/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverableKeyStoreDb.java21 import android.content.ContentValues;
99 ContentValues values = new ContentValues(); in insertKey()
244 ContentValues values = new ContentValues(); in setRecoveryStatus()
329 ContentValues values = new ContentValues(); in setPlatformKeyGenerationId()
384 ContentValues values = new ContentValues(); in setUserSerialNumber()
400 ContentValues values = new ContentValues(); in invalidateKeysForUser()
412 ContentValues values = new ContentValues(); in invalidateKeysForUserIdOnCustomScreenLock()
622 ContentValues values = new ContentValues(); in setRecoverySecretTypes()
713 ContentValues values = new ContentValues(); in setActiveRootOfTrust()
979 ContentValues values = new ContentValues(); in setLong()
[all …]
/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/apct-tests/perftests/core/src/android/database/
DSQLiteDatabaseIoPerfTest.java22 import android.content.ContentValues;
81 ContentValues cv = new ContentValues(); in testDatabaseModifications()
90 cv = new ContentValues(); in testDatabaseModifications()
111 ContentValues cv = new ContentValues(); in testInsertsWithTransactions()
/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/packages/SettingsProvider/test/src/com/android/providers/settings/
DSettingsHelperRestoreTest.java22 import android.content.ContentValues;
71 new ContentValues(2), in testRestoreAccessibilityDisplayMagnificationScale_alreadyConfigured_doesNotRestoreValue()
94 new ContentValues(2), in testRestoreAccessibilityDisplayMagnificationScale_notAlreadyConfigured_restoresValue()
137 new ContentValues(2), in testRestoreAccessibilityDisplayMagnificationNavbarEnabled_alreadyConfigured_doesNotRestoreValue()
159 new ContentValues(2), in testRestoreAccessibilityDisplayMagnificationNavbarEnabled_notAlreadyConfigured_restoresValue()
/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()

12345678