HomeSort by relevance Sort by last modified time
    Searched refs:ContentValues (Results 176 - 200 of 486) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 36 import android.content.ContentValues;
215 private static final void copyString(String key, ContentValues from, ContentValues to) {
222 private static final void copyInteger(String key, ContentValues from, ContentValues to) {
230 public Uri insert(Uri uri, ContentValues values) {
238 ContentValues filteredValues = new ContentValues();
387 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
BluetoothOppIncomingFileConfirmActivity.java 38 import android.content.ContentValues;
76 private ContentValues mUpdateValues;
145 mUpdateValues = new ContentValues();
156 mUpdateValues = new ContentValues();
168 mUpdateValues = new ContentValues();
Constants.java 40 import android.content.ContentValues;
196 ContentValues updateValues = new ContentValues();
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 20 import android.content.ContentValues;
152 ContentValues values = new ContentValues();
196 ContentValues cv = new ContentValues();
225 ContentValues cv = new ContentValues();
279 ContentValues cv = new ContentValues();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 22 import android.content.ContentValues;
141 public Uri insert(Uri uri, ContentValues values) {
150 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
206 ContentValues values = new ContentValues(2);
  /development/apps/Development/src/com/android/development/
MediaScannerActivity.java 21 import android.content.ContentValues;
53 ContentValues mValues[] = new ContentValues[10];
97 mValues[i] = new ContentValues();
177 final ContentValues map = mValues[i];
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BP1to2UpgradeTests.java 23 import android.content.ContentValues;
86 ContentValues values = new ContentValues();
115 ContentValues values = new ContentValues();
  /packages/apps/Calendar/src/com/android/calendar/
CalendarUtils.java 21 import android.content.ContentValues;
227 ContentValues values = new ContentValues();
247 ContentValues values2 = new ContentValues();
  /packages/apps/Contacts/src/com/android/contacts/activities/
AttachPhotoActivity.java 27 import android.content.ContentValues;
161 final ContentValues imageValues = new ContentValues();
211 private void insertPhoto(ContentValues values, Uri rawContactDataUri,
250 * then will try to {@link #updatePhoto(ContentValues, boolean)}
252 private void updatePhoto(ContentValues values, Uri rawContactDataUri,
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhoneticNameEditorView.java 23 import android.content.ContentValues;
64 ContentValues values = PhoneticNameEditorView.parsePhoneticName(value, null);
92 * Parses phonetic name and returns parsed data (family, middle, given) as ContentValues.
99 * @param values ContentValues to be used for storing data. If null, new instance will be
101 * @return ContentValues with parsed data. Those data can be null.
103 public static ContentValues parsePhoneticName(String phoneticName, ContentValues values) {
127 values = new ContentValues();
  /packages/apps/Contacts/tests/src/com/android/contacts/activities/
PeopleActivityTest.java 38 import android.content.ContentValues;
208 ContentValues values = new ContentValues();
230 ContentValues row1 = new ContentValues();
  /packages/apps/Mms/src/com/android/mms/data/
RecipientIdCache.java 13 import android.content.ContentValues;
186 final ContentValues values = new ContentValues();
267 final ContentValues values = new ContentValues();
  /packages/apps/Mms/src/com/android/mms/transaction/
RetrieveTransaction.java 34 import android.content.ContentValues;
153 ContentValues values = new ContentValues(1);
246 ContentValues values = new ContentValues(2);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerService.java 21 import android.content.ContentValues;
60 ContentValues values = new ContentValues();
91 ContentValues values = new ContentValues();
MediaThumbRequest.java 27 import android.content.ContentValues;
120 ContentValues values = new ContentValues(4);
224 ContentValues values = new ContentValues();
  /packages/apps/Exchange/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 25 import android.content.ContentValues;
330 ContentValues attendeeCv = new ContentValues();
359 * @param cv the ContentValues for the Event
364 /*package*/ void setTimeRelatedValues(ContentValues cv, long startTime, long endTime,
416 ContentValues cv = new ContentValues();
437 ArrayList<ContentValues> attendeeValues = new ArrayList<ContentValues>();
645 for (ContentValues attendee: attendeeValues)
    [all...]
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 21 import android.content.ContentValues;
585 * @param values The {@link ContentValues} to put the value into, with the field as the key
588 ContentValues values) {
610 * @param values The {@link ContentValues} to put the value into, with the field as the key
614 ContentValues values, String key) {
623 * @param values The {@link ContentValues} to put the value into, with the field as the key
625 public static void cursorIntToContentValues(Cursor cursor, String field, ContentValues values) {
634 * @param values The {@link ContentValues} to put the value into, with the field as the key
637 public static void cursorIntToContentValues(Cursor cursor, String field, ContentValues values,
652 * @param values The {@link ContentValues} to put the value into, with the field as the ke
    [all...]
  /cts/tests/src/android/content/cts/
DummyProvider.java 22 import android.content.ContentValues;
97 * android.content.ContentValues)
100 public Uri insert(Uri uri, ContentValues values) {
162 * android.content.ContentValues, java.lang.String, java.lang.String[])
165 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader4.java 20 import android.content.ContentValues;
152 ContentValues vals = new ContentValues(4);
RssContentProvider.java 28 import android.content.ContentValues;
170 public int update(Uri uri, ContentValues values, String whereClause) {
180 public Uri insert(Uri requestUri, ContentValues initialValues) {
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 20 import android.content.ContentValues;
229 ContentValues initialValues = new ContentValues();
DictionaryProvider.java 22 import android.content.ContentValues;
189 public Uri insert(Uri uri, ContentValues values) {
199 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/base/core/java/android/provider/
DrmStore.java 20 import android.content.ContentValues;
162 ContentValues values = new ContentValues(3);
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RecurrenceSetTest.java 22 import android.content.ContentValues;
136 ContentValues values = new ContentValues();
  /packages/apps/Browser/src/com/android/browser/
BookmarkDragHandler.java 23 import android.content.ContentValues;
115 ContentValues values = new ContentValues();

Completed in 415 milliseconds

1 2 3 4 5 6 78 91011>>