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

1 2 3 4 56 7 8 910

  /packages/apps/Email/src/com/android/email/service/
EmailServiceStub.java 237 final ContentValues cv = new ContentValues(1); local
238 cv.put(AttachmentColumns.UI_STATE, UIProvider.AttachmentState.FAILED);
240 mContext.getContentResolver().update(uri, cv, null, null);
AttachmentService.java 812 final ContentValues cv = new ContentValues(); local
824 final ContentValues cv = new ContentValues(); local
    [all...]
ImapService.java 1431 ContentValues cv = new ContentValues(); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ContactsSyncParser.java 531 final ContentValues cv = new ContentValues(); local
532 cv.put(RawContacts.DIRTY, 0);
539 addCallerIsSyncAdapterParameter(RawContacts.CONTENT_URI), cv,
549 ContentValues cv = new ContentValues();
572 cv.put(RawContacts.SOURCE_ID, serverId);
573 cv.put(RawContacts.DIRTY, 0);
578 .withValues(cv)
781 ContentValues cv;
789 cv = _ncv.values;
    [all...]
EmailSyncParser.java 865 ContentValues cv = new ContentValues(); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSyncContacts.java 324 * @param cv The {@link ContentValues} that contains the values
325 * @param column The column name in cv for the data
329 public static String tryGetStringData(final ContentValues cv, final String column)
331 if ((cv == null) || (column == null)) {
334 if (cv.containsKey(column)) {
335 final String value = cv.getAsString(column);
346 * @param cv The {@link ContentValues} with the data for this string.
347 * @param column The column name in cv to find the string.
352 private static boolean sendStringData(final Serializer s, final ContentValues cv,
354 final String dataValue = tryGetStringData(cv, column)
882 final ContentValues cv = ncv.values; local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 468 ContentValues cv = new ContentValues(); local
473 cv.put(Telephony.MmsSms.WordsTable.ID, (2 << 32) + rowId);
474 cv.put(Telephony.MmsSms.WordsTable.INDEXED_TEXT, values.getAsString("text"));
475 cv.put(Telephony.MmsSms.WordsTable.SOURCE_ROW_ID, rowId);
476 cv.put(Telephony.MmsSms.WordsTable.TABLE_ID, 2);
477 db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv);
    [all...]
SmsProvider.java 528 ContentValues cv = new ContentValues(); local
529 cv.put(Telephony.MmsSms.WordsTable.ID, rowID);
530 cv.put(Telephony.MmsSms.WordsTable.INDEXED_TEXT, values.getAsString("body"));
531 cv.put(Telephony.MmsSms.WordsTable.SOURCE_ROW_ID, rowID);
532 cv.put(Telephony.MmsSms.WordsTable.TABLE_ID, 1);
533 db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv);
  /bootable/recovery/updater/
blockimg.c 208 pthread_cond_t cv; member in struct:__anon1127
219 pthread_cond_wait(&nti->cv, &nti->mu);
234 pthread_cond_broadcast(&nti->cv);
347 pthread_cond_init(&nti.cv, NULL);
477 pthread_cond_broadcast(&nti.cv);
479 pthread_cond_wait(&nti.cv, &nti.mu);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 553 // int cv = fr >= fb;
554 SDValue cv; local
556 cv = DAG.getSetCC(DL, INTTY, fr, fb, ISD::SETOGE);
558 cv = DAG.getSetCC(DL, INTTY, fr, fb, ISD::SETOGE);
560 // jq = (cv ? jq : 0);
561 jq = DAG.getNode(ISD::SELECT, DL, OVT, cv, jq,
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
gen_x86_insn.py 7216 cv = combval >> 1 variable
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 553 // int cv = fr >= fb;
554 SDValue cv; local
556 cv = DAG.getSetCC(DL, INTTY, fr, fb, ISD::SETOGE);
558 cv = DAG.getSetCC(DL, INTTY, fr, fb, ISD::SETOGE);
560 // jq = (cv ? jq : 0);
561 jq = DAG.getNode(ISD::SELECT, DL, OVT, cv, jq,
  /external/opencv/cxcore/include/
cvwimage.h 107 namespace cv { namespace
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmGeneratorTest.java 223 TestClassVisitor cv = new TestClassVisitor(); local
224 cr.accept(cv, 0);
225 injectedClassFound |= cv.mInjectedClassFound;
DelegateClassAdapterTest.java 90 DelegateClassAdapter cv = new DelegateClassAdapter( local
94 cr.accept(cv, 0 /* flags */);
154 DelegateClassAdapter cv = new DelegateClassAdapter( local
158 cr.accept(cv, 0 /* flags */);
168 DelegateClassAdapter cv = new DelegateClassAdapter( local
172 cr.accept(cv, 0 /* flags */);
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 1031 ContentValues cv; local
1233 ContentValues cv = new ContentValues(); local
1384 ContentValues cv = new ContentValues(); local
1389 resolver.update(ContentUris.withAppendedId(Message.SYNCED_CONTENT_URI, message1.mId), cv, local
1391 resolver.update(ContentUris.withAppendedId(Message.SYNCED_CONTENT_URI, message2.mId), cv, local
1774 ContentValues cv = new ContentValues(); local
1776 cr.update(ContentUris.withAppendedId(Message.CONTENT_URI, message2.mId), cv, null, null); local
1784 cr.update(ContentUris.withAppendedId(Message.CONTENT_URI, message3.mId), cv, null, null); local
1793 cr.update(ContentUris.withAppendedId(Message.CONTENT_URI, message3.mId), cv, null, null); local
1802 cr.update(ContentUris.withAppendedId(Message.CONTENT_URI, message3.mId), cv, null, null); local
2055 ContentValues cv = new ContentValues(); local
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentValuesTest.java 218 ContentValues cv = new ContentValues(); local
219 cv.put("Boolean", false);
220 cv.put("String", "string");
222 assertTrue(mContentValues.equals(cv));
233 ContentValues cv = new ContentValues(); local
234 cv.put("Boolean", true);
235 cv.put("String", "111");
237 assertFalse(mContentValues.equals(cv));
491 ContentValues cv = new ContentValues(); local
492 cv.put("String", "cts")
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
DatabaseCursorTest.java 132 ContentValues cv = new ContentValues(); local
133 DatabaseUtils.cursorRowToContentValues(testCursor, cv);
  /external/chromium_org/third_party/libusb/src/libusb/os/
wince_usb.c 469 UCHAR cv = 0; local
470 if (!UkwGetConfig(priv->dev, &cv)) {
473 (*config) = cv;
485 UCHAR cv = (config < 0) ? 0 : config; local
486 if (!UkwSetConfig(priv->dev, cv)) {
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseCursorTest.java 114 ContentValues cv = new ContentValues(); local
115 DatabaseUtils.cursorRowToContentValues(c, cv);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
GalleryUtils.java 192 final ConditionVariable cv = new ConditionVariable(); local
196 cv.open();
199 cv.block(timeout);
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduPersister.java 797 ContentValues cv = new ContentValues(); local
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java 644 ContentValues cv = new ContentValues(); local
646 cv.put(RawContacts._ID, cursor.getLong(ContactQuery.RAW_CONTACT_ID));
648 cursorColumnToContentValues(cursor, cv, ContactQuery.ACCOUNT_NAME);
649 cursorColumnToContentValues(cursor, cv, ContactQuery.ACCOUNT_TYPE);
650 cursorColumnToContentValues(cursor, cv, ContactQuery.DATA_SET);
651 cursorColumnToContentValues(cursor, cv, ContactQuery.DIRTY);
652 cursorColumnToContentValues(cursor, cv, ContactQuery.VERSION);
653 cursorColumnToContentValues(cursor, cv, ContactQuery.SOURCE_ID);
654 cursorColumnToContentValues(cursor, cv, ContactQuery.SYNC1);
655 cursorColumnToContentValues(cursor, cv, ContactQuery.SYNC2)
669 ContentValues cv = new ContentValues(); local
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 603 ContentValues cv = new ContentValues(); local
604 cv.put(AccountColumns.FLAGS, flags & ~FLAGS_SECURITY_HOLD);
607 resolver.update(uri, cv, null, null);
653 final ContentValues cv = new ContentValues(); local
654 cv.put(HostAuthColumns.CREDENTIAL_KEY, recvCredentialsIndex);
655 b.withValueBackReferences(cv);
677 final ContentValues cv = new ContentValues(); local
678 cv.put(HostAuthColumns.CREDENTIAL_KEY, sendCredentialsIndex);
679 b.withValueBackReferences(cv);
685 ContentValues cv = null local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 300 final ContentValues cv = new ContentValues(1); local
308 cv.put(AccountColumns.DISPLAY_NAME, summary);
314 cv.put(AccountColumns.SENDER_NAME, summary);
327 cv.put(AccountColumns.SIGNATURE, signature);
339 cv.put(AccountColumns.SYNC_INTERVAL, Integer.parseInt(summary));
357 cv.put(AccountColumns.SYNC_INTERVAL, Integer.parseInt(summary));
365 cv.put(AccountColumns.SYNC_LOOKBACK, Integer.parseInt(summary));
387 cv.put(AccountColumns.FLAGS, newFlags);
403 if (cv.size() > 0) {
404 new UpdateTask().run(mContext.getContentResolver(), mAccount.getUri(), cv, null, null) local
    [all...]

Completed in 1278 milliseconds

1 2 3 4 56 7 8 910