HomeSort by relevance Sort by last modified time
    Searched defs:cv (Results 101 - 125 of 233) sorted by null

1 2 3 45 6 7 8 910

  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 471 ContentValues cv = new ContentValues(); local
473 cv.clear();
478 cv.put(Telephony.MmsSms.WordsTable.ID, id);
479 cv.put(Telephony.MmsSms.WordsTable.INDEXED_TEXT, body);
480 cv.put(Telephony.MmsSms.WordsTable.SOURCE_ROW_ID, id);
481 cv.put(Telephony.MmsSms.WordsTable.TABLE_ID, 1);
482 db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv);
504 ContentValues cv = new ContentValues(); local
506 cv.clear();
511 cv.put(Telephony.MmsSms.WordsTable.ID, id)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DataTest.java 170 ContentValues cv = new ContentValues(); local
171 cv.put(Email.DATA, "test@test.com");
172 cv.put(Email.TYPE, Email.TYPE_WORK);
177 new long[] {rawContact.getId()}, cv);
188 cv.put(Phone.DATA, "123456789");
189 cv.put(Phone.TYPE, Phone.TYPE_MOBILE);
194 null, false, cv, cv2);
482 ArrayList<ContentValues> cv = new ArrayList<ContentValues>(); local
487 cv.add(sContentValues[0]);
488 cv.add(sContentValues[1])
    [all...]
SettingsTest.java 205 ContentValues cv = new ContentValues(); local
206 cv.put("name", "name");
207 cv.put("value", "xxxTESTxxx");
210 cr.insert(uri, cv);
218 cr.update(uri, cv, NAME_EQ_PLACEHOLDER, new String[]{name});
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 197 ContentValues cv = new ContentValues(); local
214 cv.put(AttachmentColumns.FLAGS, flags);
216 cv, null, null); local
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 398 final ContentValues cv = new ContentValues(); local
455 cv.put(AttachmentColumns.SIZE, size);
456 cv.put(AttachmentColumns.CONTENT_URI, contentUri);
457 cv.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.SAVED);
460 cv.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.FAILED);
462 context.getContentResolver().update(uri, cv, null, null);
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 357 final ContentValues cv = new ContentValues(3); local
358 cv.put(AttachmentColumns.SIZE, copySize);
359 cv.put(AttachmentColumns.CONTENT_URI, contentUriString);
360 cv.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.SAVED);
362 context.getContentResolver().update(uri, cv, null, null);
SecurityPolicy.java 475 ContentValues cv = new ContentValues(); local
476 cv.put(AccountColumns.FLAGS, account.mFlags);
477 account.update(context, cv);
    [all...]
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java 355 ContentValues cv = new ContentValues(); local
356 cv.put(AccountColumns.FLAGS, flags);
359 resolver.update(uri, cv, null, null);
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasOperation.java 477 final ContentValues cv = new ContentValues(2); local
486 cv.put(EmailContent.AccountColumns.FLAGS, newFlags);
489 cv.put(EmailContent.AccountColumns.PROTOCOL_VERSION, protocolVersion);
490 mContext.getContentResolver().update(uri, cv, null, null);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/service/
EasServerConnection.java 165 final ContentValues cv = new ContentValues(1); local
166 cv.put(EmailContent.HostAuthColumns.ADDRESS, newAddress);
167 mHostAuth.update(mContext, cv);
  /external/chromium_org/third_party/libxml/src/
threads.c 126 pthread_cond_t cv; member in struct:_xmlRMutex
308 pthread_cond_init(&tok->cv, NULL);
338 pthread_cond_destroy(&tok->cv);
372 pthread_cond_wait(&tok->cv, &tok->lock);
412 pthread_cond_signal(&tok->cv);
  /external/chromium_org/third_party/skia/third_party/harfbuzz/src/
harfbuzz-gdef.c 383 static HB_Error Load_CaretValue( HB_CaretValue* cv,
396 cv->CaretValueFormat = GET_UShort();
400 switch ( cv->CaretValueFormat )
406 cv->cvf.cvf1.Coordinate = GET_Short();
416 cv->cvf.cvf2.CaretValuePoint = GET_UShort();
426 cv->cvf.cvf3.Coordinate = GET_Short();
434 ( error = _HB_OPEN_Load_Device( &cv->cvf.cvf3.Device,
445 cv->cvf.cvf4.IdCaretValue = GET_UShort();
458 static void Free_CaretValue( HB_CaretValue* cv)
460 if ( cv->CaretValueFormat == 3
475 HB_CaretValue* cv; local
525 HB_CaretValue* cv; local
    [all...]
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 37 char cv[4] = { 'a', 's', 'd', 'f', 0 }; // expected-error{{excess elements in array initializer}} variable
  /external/libxml2/
threads.c 126 pthread_cond_t cv; member in struct:_xmlRMutex
308 pthread_cond_init(&tok->cv, NULL);
338 pthread_cond_destroy(&tok->cv);
372 pthread_cond_wait(&tok->cv, &tok->lock);
412 pthread_cond_signal(&tok->cv);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckSignatureAdapter.java 186 CheckSignatureAdapter cv = new CheckSignatureAdapter(TYPE_SIGNATURE, v); local
187 cv.canBeVoid = true;
188 return cv;
  /external/stlport/test/unit/
vector_test.cpp 315 vector<int> const& cv = v; local
320 CPPUNIT_ASSERT( cv.at(0) == 20 );
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DerOutputStream.java 201 Object[] cv = collection.getValues(content).toArray(); local
203 Object[] values = new Object[cv.length];
210 content = cv[i];
  /ndk/tests/device/test-gnustl-full/unit/
vector_test.cpp 315 vector<int> const& cv = v; local
320 CPPUNIT_ASSERT( cv.at(0) == 20 );
  /ndk/tests/device/test-stlport/unit/
vector_test.cpp 315 vector<int> const& cv = v; local
320 CPPUNIT_ASSERT( cv.at(0) == 20 );
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 169 for (ContentValues cv: valuesList) {
173 rowValues[i++] = cv.get(column);
199 ContentValues cv = mMockStore.get(path); local
200 if (cv != null) {
201 updateValuesList.add(cv);
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
TestProvider.java 169 for (ContentValues cv : valuesList) {
173 rowValues[i++] = cv.get(column);
199 ContentValues cv = mMockStore.get(path); local
200 if (cv != null) {
201 updateValuesList.add(cv);
  /frameworks/base/services/core/java/com/android/server/
LockSettingsService.java 565 ContentValues cv = new ContentValues(); local
566 cv.put(COLUMN_KEY, key);
567 cv.put(COLUMN_USERID, userId);
568 cv.put(COLUMN_VALUE, value);
574 db.insert(TABLE, null, cv);
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationUsageStats.java 639 ContentValues cv = new ContentValues(); local
640 cv.put(COL_EVENT_USER_ID, r.sbn.getUser().getIdentifier());
641 cv.put(COL_EVENT_TIME, eventTimeMs);
642 cv.put(COL_EVENT_TYPE, eventType);
643 putNotificationIdentifiers(r, cv);
645 putNotificationDetails(r, cv);
647 putPosttimeVisibility(r, cv);
650 if (db.insert(TAB_LOG, null, cv) < 0) {
651 Log.wtf(TAG, "Error while trying to insert values: " + cv);
  /packages/apps/Email/src/com/android/email/activity/setup/
MailboxSettings.java 457 final ContentValues cv = new ContentValues(2); local
460 cv.put(MailboxColumns.SYNC_INTERVAL, syncInterval);
463 cv.put(MailboxColumns.SYNC_LOOKBACK, syncLookback);
466 context.getContentResolver().update(uri, cv, null, null);
  /packages/apps/Email/src/com/android/email/provider/
DBHelper.java 1328 final ContentValues cv = new ContentValues(1); local
1341 final ContentValues cv = new ContentValues(1); local
1447 final ContentValues cv = new ContentValues(1); local
1496 ContentValues cv = new ContentValues(); local
1712 ContentValues cv = new ContentValues(); local
1767 ContentValues cv = new ContentValues(); local
1793 ContentValues cv = new ContentValues(); local
    [all...]

Completed in 1474 milliseconds

1 2 3 45 6 7 8 910