/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
TransformClassAdapter.java | 45 * @param cv The parent class writer visitor 50 Set<String> deleteReturns, String className, ClassVisitor cv, 52 super(Main.ASM_VERSION, cv);
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
PromoteClassClassAdapterTest.java | 44 public LoggingClassVisitor(ClassVisitor cv) { 45 super(Main.ASM_VERSION, cv);
|
StubMethodAdapterTest.java | 78 private ClassAdapter(String className, ClassVisitor cv, 80 super(Main.ASM_VERSION, cv);
|
DelegateClassAdapterTest.java | 91 DelegateClassAdapter cv = new DelegateClassAdapter( local 95 cr.accept(cv, 0 /* flags */); 155 DelegateClassAdapter cv = new DelegateClassAdapter( local 159 cr.accept(cv, 0 /* flags */); 169 DelegateClassAdapter cv = new DelegateClassAdapter( local 173 cr.accept(cv, 0 /* flags */);
|
/packages/apps/Email/provider_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...] |
/external/clang/test/SemaCXX/ |
dcl_init_aggr.cpp | 54 char cv[4] = { 'a', 's', 'd', 'f', 0 }; // expected-error{{excess elements in array initializer}} variable
|
/hardware/interfaces/radio/1.0/vts/functional/ |
sap_hidl_hal_utils.h | 86 std::condition_variable cv; member in class:SapHidlTest
|
/cts/hostsidetests/appsecurity/test-apps/MultiUserStorageApp/src/com/android/cts/multiuserstorageapp/ |
MultiUserStorageTest.java | 163 ContentValues cv = new ContentValues(); local 164 cv.put("_data", otherPath.getAbsolutePath()); 165 contentResolver.insert(Uri.parse(URI_MEDIA_STRING), cv); local
|
/external/clang/test/OpenMP/ |
atomic_read_codegen.c | 10 char cv, cx; variable 88 cv = cx; 165 cv = bx;
|
atomic_write_codegen.c | 10 char cv, cx; variable 88 cx = cv; 182 bx = cv;
|
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ |
EventCount.h | 175 std::condition_variable cv; member in class:Eigen::EventCount::Waiter 208 w->cv.wait(lock); 223 if (state == Waiter::kWaiting) w->cv.notify_one();
|
/external/webrtc/webrtc/base/ |
array_view_unittest.cc | 112 const std::vector<int> cv; local 113 Call<const int>(cv); 114 // Call<int>(cv); // Compile error, because can't drop const. 115 ArrayView<const int> z = cv; 118 // ArrayView<int> w = cv; // Compile error, because can't drop const.
|
/cts/tests/tests/provider/src/android/provider/cts/ |
SettingsTest.java | 141 ContentValues cv = new ContentValues(); local 142 cv.put("name", "name"); 143 cv.put("value", "xxxTESTxxx"); 146 cr.insert(uri, cv); 154 cr.update(uri, cv, NAME_EQ_PLACEHOLDER, new String[]{name});
|
/frameworks/base/core/java/android/provider/ |
ContactsContract.java | 3095 ContentValues cv = new ContentValues(); local [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsSmsDatabaseHelper.java | 487 ContentValues cv = new ContentValues(); local 489 cv.clear(); 494 cv.put(Telephony.MmsSms.WordsTable.ID, id); 495 cv.put(Telephony.MmsSms.WordsTable.INDEXED_TEXT, body); 496 cv.put(Telephony.MmsSms.WordsTable.SOURCE_ROW_ID, id); 497 cv.put(Telephony.MmsSms.WordsTable.TABLE_ID, 1); 498 db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv); 520 ContentValues cv = new ContentValues(); local 522 cv.clear(); 527 cv.put(Telephony.MmsSms.WordsTable.ID, id) [all...] |
/prebuilts/go/darwin-x86/src/compress/flate/ |
deflatefast.go | 82 cv := load32(src, s) 83 nextHash := hash(cv) 115 e.table[nextHash&tableMask] = tableEntry{offset: s + e.cur, val: cv} 119 if offset > maxMatchOffset || cv != candidate.val { 121 cv = now 174 cv = uint32(x >> 8) 175 nextHash = hash(cv)
|
/prebuilts/go/linux-x86/src/compress/flate/ |
deflatefast.go | 82 cv := load32(src, s) 83 nextHash := hash(cv) 115 e.table[nextHash&tableMask] = tableEntry{offset: s + e.cur, val: cv} 119 if offset > maxMatchOffset || cv != candidate.val { 121 cv = now 174 cv = uint32(x >> 8) 175 nextHash = hash(cv)
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSettingsFragment.java | 299 final ContentValues cv = new ContentValues(1); local 307 cv.put(AccountColumns.DISPLAY_NAME, summary); 313 cv.put(AccountColumns.SENDER_NAME, summary); 326 cv.put(AccountColumns.SIGNATURE, signature); 338 cv.put(AccountColumns.SYNC_INTERVAL, Integer.parseInt(summary)); 356 cv.put(AccountColumns.SYNC_INTERVAL, Integer.parseInt(summary)); 364 cv.put(AccountColumns.SYNC_LOOKBACK, Integer.parseInt(summary)); 389 cv.put(AccountColumns.FLAGS, newFlags); 405 if (cv.size() > 0) { 406 new UpdateTask().run(mContext.getContentResolver(), mAccount.getUri(), cv, null, null) local [all...] |
/prebuilts/go/darwin-x86/src/runtime/trace/ |
trace_stack_test.go | 75 cv := sync.NewCond(&sync.Mutex{}) 77 cv.L.Lock() 78 cv.Wait() 79 cv.L.Unlock() 118 cv.Signal()
|
/prebuilts/go/linux-x86/src/runtime/trace/ |
trace_stack_test.go | 75 cv := sync.NewCond(&sync.Mutex{}) 77 cv.L.Lock() 78 cv.Wait() 79 cv.L.Unlock() 118 cv.Signal()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsProvider2Test.java | 20 import static com.android.providers.contacts.TestUtils.cv; 1599 cv(Phone.DISPLAY_NAME, "Dad", Phone.NUMBER, "123-456-7890"), method 1600 cv(Phone.DISPLAY_NAME, "Mam", Phone.NUMBER, "323-123-4567") method 1606 cv(Phone.DISPLAY_NAME, "Dad", Phone.NUMBER, "123-456-7890") method 1613 cv(Phone.DISPLAY_NAME, "Mam", Phone.NUMBER, "323-123-4567") method 2126 ContentValues cv = cv( local 2247 ContentValues cv = cv( local 2345 ContentValues cv = cv( local 2841 ContentValues cv = cv( local 3815 cv(Data._ID, did8), method 3816 cv(Data._ID, did7), method 3817 cv(Data._ID, did5), method 3818 cv(Data._ID, did6), method 3819 cv(Data._ID, did3), method 3820 cv(Data._ID, did4)); method [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
MailboxUtilities.java | 169 ContentValues cv = new ContentValues(); 170 cv.put(AccountColumns.FLAGS, start ? (account.mFlags | ACCOUNT_MAILBOX_CHANGE_FLAG) : 173 ContentUris.withAppendedId(Account.CONTENT_URI, account.mId), cv, null, null); local
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
ContactsContract_ContactsTest.java | 273 final ContentValues cv = new ContentValues(); local 274 cv.put(Contacts.STARRED, 1); 280 assertEquals(1, mResolver.update(Contacts.CONTENT_URI, cv, where, null)); 281 assertEquals(1, mResolver.update(RawContacts.CONTENT_URI, cv, where, null));
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
complexobject.c | 322 Py_complex cv;
local 333 cv.real = -1.;
334 cv.imag = 0.;
343 return cv;
345 cv = ((PyComplexObject *)newop)->cval;
347 return cv;
350 return cv;
356 cv.real = PyFloat_AsDouble(op);
357 return cv;
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
complexobject.c | 318 Py_complex cv;
local 329 cv.real = -1.;
330 cv.imag = 0.;
339 return cv;
341 cv = ((PyComplexObject *)newop)->cval;
343 return cv;
346 return cv;
352 cv.real = PyFloat_AsDouble(op);
353 return cv;
[all...] |