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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
dynamic_annotations.c 86 const volatile void *cv,
89 const volatile void *cv){}
91 const volatile void *cv){}
  /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...]
  /external/libcxx/src/
mutex.cpp 216 static pthread_cond_t cv = PTHREAD_COND_INITIALIZER; variable
223 pthread_cond_wait(&cv, &mut);
236 pthread_cond_broadcast(&cv);
244 pthread_cond_broadcast(&cv);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
ClassTransformerChain.java 41 return cv.visitMethod(access, name, desc, signature, exceptions);
  /external/valgrind/main/drd/
drd.h 164 * Tell DRD that waiting on the condition variable at address cv has succeeded
171 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, mtx) do { } while(0)
174 * Tell DRD that the condition variable at address cv is about to be signaled.
176 #define ANNOTATE_CONDVAR_SIGNAL(cv) do { } while(0)
179 * Tell DRD that the condition variable at address cv is about to be signaled.
181 #define ANNOTATE_CONDVAR_SIGNAL_ALL(cv) do { } while(0)
184 * Tell DRD that waiting on condition variable at address cv succeeded and that
186 * to happen after the matching ANNOTATE_CONDVAR_SIGNAL(cv). Since this is the
190 #define ANNOTATE_CONDVAR_WAIT(cv) do { } while(0)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
mutex.cpp 220 static pthread_cond_t cv = PTHREAD_COND_INITIALIZER; variable
229 pthread_cond_wait(&cv, &mut);
248 pthread_cond_broadcast(&cv);
260 pthread_cond_broadcast(&cv);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckClassAdapter.java 69 * ClassVisitor cv = new <b>MyClassAdapter</b>(new CheckClassAdapter(cw));
70 * cr.accept(cv, 0);
251 * @param cv the class visitor to which this adapter must delegate calls.
253 public CheckClassAdapter(final ClassVisitor cv) {
254 super(cv);
303 cv.visit(version, access, name, signature, superName, interfaces);
312 cv.visitSource(file, debug);
331 cv.visitOuterClass(owner, name, desc);
353 cv.visitInnerClass(name, outerName, innerName, access);
377 FieldVisitor av = cv.visitField(access, name, desc, signature, value);
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
ClassStubber.java 32 public ClassStubber(ClassVisitor cv) {
33 super(Opcodes.ASM4, cv);
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 821 ContentValues cv; local
994 ContentValues cv = new ContentValues(); local
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateClassAdapter.java 51 * @param cv the class visitor to which this adapter must delegate calls.
58 ClassVisitor cv,
61 super(Opcodes.ASM4, cv);
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 193 ContentValues cv = new ContentValues(2); local
253 cv.clear();
254 cv.put(Words.WORD, word);
255 cv.put(Words.FREQUENCY, frequencyInt);
256 cv.put(Words.LOCALE, locale);
257 cv.put(Words.APP_ID, appidInt);
258 cv.put(Words.SHORTCUT, shortcut);
267 getContentResolver().insert(contentUri, cv);
  /external/valgrind/main/helgrind/tests/
tc20_verifywrap.c 45 pthread_cond_t cv; local
146 r= pthread_cond_init( &cv, NULL ); assert(!r);
147 r= pthread_cond_wait( &cv, &mx4 ); assert(r);
152 r= pthread_cond_signal( &cv ); assert(!r);
158 r= pthread_cond_broadcast( &cv ); assert(!r);
165 r= pthread_cond_timedwait( &cv, &mx4, &abstime ); assert(r);
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasFullSyncOperation.java 247 final ContentValues cv = new ContentValues(2); local
248 updateMailbox(mailbox, cv, isUserSync ?
263 updateMailbox(mailbox, cv, EmailContent.SYNC_STATUS_NONE);
332 * @param cv A {@link ContentValues} object to use for updating the provider.
335 private void updateMailbox(final Mailbox mailbox, final ContentValues cv,
337 cv.put(Mailbox.UI_SYNC_STATUS, syncStatus);
339 cv.put(Mailbox.SYNC_TIME, System.currentTimeMillis());
341 mailbox.update(mContext, cv);
EasSyncCalendar.java 269 final ContentValues cv = new ContentValues(1); local
272 cv.put(EVENT_SYNC_MARK, "1");
276 final int cnt = cr.update(asSyncAdapter(Events.CONTENT_URI, account), cv,
337 * @param cv The {@link ContentValues} to find the value in.
338 * @param column The name of the column in cv to get.
341 private static int getInt(final ContentValues cv, final String column) {
342 final Integer i = cv.getAsInteger(column);
415 final ContentValues cv = new ContentValues(1); local
416 cv.put(Events.STATUS, Events.STATUS_CANCELED);
419 cv, null, null) local
822 final ContentValues cv = new ContentValues(); local
827 cv, null, null); local
832 cr.insert(asSyncAdapter(ExtendedProperties.CONTENT_URI, account), cv); local
881 final ContentValues cv = new ContentValues(1); local
885 cv, null, null); local
957 final ContentValues cv = new ContentValues(2); local
962 cv, null, null); local
984 final ContentValues cv = new ContentValues(1); local
987 account), cv, null, null); local
1046 final ContentValues cv = new ContentValues(2); local
1051 Events.CONTENT_URI, eventId), account), cv, null, null); local
    [all...]
EasMoveItems.java 165 final ContentValues cv = new ContentValues(1); local
168 cv.put(EmailContent.MessageColumns.MAILBOX_KEY, request.getSourceFolderKey());
171 cv.put(EmailContent.SyncColumns.SERVER_ID, response.newMessageId);
174 if (cv.size() != 0) {
177 request.getMessageId()), cv, null, null); local
  /external/chromium_org/content/shell/android/java/src/org/chromium/content_shell/
Shell.java 256 ContentView cv = ContentView.newInstance(context, mContentViewCore); local
257 mContentViewCore.initialize(cv, cv, nativeWebContents, mWindow);
262 ((FrameLayout) findViewById(R.id.contentview_holder)).addView(cv,
266 cv.requestFocus();
  /external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/
ContentShellTestBase.java 216 ContentView cv = ContentView.newInstance(getActivity(), getContentViewCore());
217 ((ViewGroup) getContentViewCore().getContainerView().getParent()).addView(cv);
218 getContentViewCore().setContainerView(cv);
219 getContentViewCore().setContainerViewInternals(cv);
220 cv.requestFocus();
  /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...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastContentProvider.java 191 ContentValues cv = message.getContentValues(); local
198 long rowId = db.insert(CellBroadcastDatabaseHelper.TABLE_NAME, null, cv);
257 ContentValues cv = new ContentValues(1); local
258 cv.put(Telephony.CellBroadcasts.MESSAGE_READ, 1);
263 int rowCount = db.update(CellBroadcastDatabaseHelper.TABLE_NAME, cv, whereClause, whereArgs);
  /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);
  /external/chromium_org/base/third_party/dynamic_annotations/
dynamic_annotations.c 107 const char *file, int line, const volatile void *cv,
112 const char *file, int line, const volatile void *cv)
116 const char *file, int line, const volatile void *cv)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_cliptest_tmp.h 38 const unsigned cv = draw_current_shader_clipvertex_output(pvs->draw); local
63 if ((flags & DO_CLIP_USER) && cv != pos)
64 clipvertex = out->data[cv];
  /external/eigen/test/eigen2/
eigen2_basicstuff.cpp 73 Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> cv(rows);
75 cv = square.col(r);
76 VERIFY_IS_APPROX(rv, cv.transpose());
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_cliptest_tmp.h 38 const unsigned cv = draw_current_shader_clipvertex_output(pvs->draw); local
63 if ((flags & DO_CLIP_USER) && cv != pos)
64 clipvertex = out->data[cv];

Completed in 1076 milliseconds

1 2 3 4 56 7 8 91011>>