HomeSort by relevance Sort by last modified time
    Searched refs:where (Results 101 - 125 of 2398) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/tests/app/app/src/android/app/stubs/
ActivityTestsBase.java 87 public void activityFinished(int resultCode, Intent data, RuntimeException where) {
88 finishWithResult(resultCode, data, where);
114 final RuntimeException where = new RuntimeException("Original error was here"); local
115 where.fillInStackTrace();
116 finishWithResult(resultCode, data, where);
119 public void finishWithResult(int resultCode, Intent data, RuntimeException where) {
123 mResultStack = where;
  /cts/tests/tests/os/src/android/os/cts/
ActivityTestsBase.java 87 public void activityFinished(int resultCode, Intent data, RuntimeException where) {
88 finishWithResult(resultCode, data, where);
114 final RuntimeException where = new RuntimeException("Original error was here"); local
115 where.fillInStackTrace();
116 finishWithResult(resultCode, data, where);
119 public void finishWithResult(int resultCode, Intent data, RuntimeException where) {
123 mResultStack = where;
  /frameworks/base/core/tests/coretests/src/android/app/activity/
ActivityTestsBase.java 87 public void activityFinished(int resultCode, Intent data, RuntimeException where) {
88 finishWithResult(resultCode, data, where);
113 RuntimeException where = new RuntimeException("Original error was here"); local
114 where.fillInStackTrace();
115 finishWithResult(resultCode, data, where);
118 public void finishWithResult(int resultCode, Intent data, RuntimeException where) {
123 mResultStack = where;
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockProvider.java 108 " WHERE " + InstancesColumns.ALARM_ID +
134 // storage area, which is where our data lives from now on.
210 public int update(@NonNull Uri uri, ContentValues values, String where, String[] whereArgs) {
257 public int delete(@NonNull Uri uri, String where, String[] whereArgs) {
263 count = db.delete(ALARMS_TABLE_NAME, where, whereArgs);
267 if (TextUtils.isEmpty(where)) {
268 where = AlarmsColumns._ID + "=" + primaryKey;
270 where = AlarmsColumns._ID + "=" + primaryKey + " AND (" + where + ")";
272 count = db.delete(ALARMS_TABLE_NAME, where, whereArgs)
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-msp430.c 310 However we've got gdb's built-in simulator where we can do anything.
322 where 'flags' is a combination of the following chars:
2199 int where; local
2462 int where; local
3978 unsigned char * where; local
4373 char * where = 0; local
    [all...]
tc-xstormy16.c 196 int where,
241 fix_new_exp (f, where, nbytes, exp, 0, code);
249 int where,
262 fixP = gas_cgen_record_fixup_exp (frag, where, insn, length,
445 char *where = fixP->fx_frag->fr_literal + fixP->fx_where;
450 /* md_cgen_lookup_reloc() will adjust this to compensate for where
507 cgen_get_insn_value (cd, (unsigned char *) where,
513 cgen_put_insn_value (cd, (unsigned char *) where,
519 (unsigned char *) where,
554 md_number_to_chars (where, value, 1)
441 char *where = fixP->fx_frag->fr_literal + fixP->fx_where; local
    [all...]
  /external/mesa3d/src/mesa/main/
pbo.c 184 const GLvoid *ptr, const char *where)
193 where);
197 where, clientMemSize);
210 where);
225 const char *where)
236 where);
243 where);
265 const GLvoid *ptr, const char *where)
269 clientMemSize, ptr, where)) {
342 GLvoid *ptr, const char *where)
    [all...]
  /external/llvm/include/llvm/ADT/
ilist.h 314 // circularly linked list where we snip the 'next' link from the sentinel node
409 iterator insert(iterator where, NodeTy *New) {
410 NodeTy *CurNode = where.getNodePtrUnchecked();
425 iterator insertAfter(iterator where, NodeTy *New) {
429 return insert(++where, New);
447 // strictly required, but this catches errors where a node is removed from
465 iterator erase(iterator where) {
466 this->deleteNode(remove(where));
467 return where;
568 template<class InIt> void insert(iterator where, InIt first, InIt last)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
SQLite.java 52 * @param whereClause SQL where clause fragment
67 String where = whereClause; local
69 where = buildWhereClause(whereClause, whereArgs);
71 sb.append(" WHERE ");
72 sb.append(where);
83 * @param whereClause SQL where clause fragment
94 String where = whereClause; local
96 where = buildWhereClause(whereClause, whereArgs);
98 sb.append(" WHERE ");
99 sb.append(where);
    [all...]
  /system/core/libutils/include/utils/
VectorImpl.h 76 ssize_t insertAt(size_t where, size_t numItems = 1);
77 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
110 void* _grow(size_t where, size_t amount);
111 void _shrink(size_t where, size_t amount);
143 //! finds where this item should be inserted
172 ssize_t insertAt(size_t where, size_t numItems = 1);
173 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
ceval.h 48 #define Py_EnterRecursiveCall(where) \
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
ceval.h 48 #define Py_EnterRecursiveCall(where) \
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
  /external/autotest/cli/
compose_query 21 where = query_lib.parse_scrub_and_gen_condition( variable
23 # print("where clause:" % where)
25 where = None variable
29 test_data = frontend.get_matrix_data(db, options.x_axis, options.y_axis, where)
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 375 void shiftPc(int where, int gapSize, boolean exclusive)
378 new Shifter(this, where, gapSize, exclusive).visit();
382 private int where, gap; field in class:StackMap.Shifter
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) {
387 this.where = where;
393 if (exclusive ? where <= offset : where < offset)
407 * @param where the position of the removed NEW opcode.
409 public void removeNew(int where) throws CannotCompileException
    [all...]
  /external/python/cpython2/Include/
ceval.h 48 #define Py_EnterRecursiveCall(where) \
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(const char *where);
  /external/tensorflow/tensorflow/python/ops/distributions/
special_math.py 40 # Lower bound values were chosen by examining where the support of ndtr
97 y = array_ops.where(math_ops.less(z, half_sqrt_2),
99 array_ops.where(math_ops.greater(w, 0.),
197 maybe_complement_p = array_ops.where(p > 1. - np.exp(-2.), 1. - p, p)
202 sanitized_mcp = array_ops.where(
215 # where z = sqrt(-2. * log(p)), and P/Q are chosen between two different
226 x = array_ops.where(sanitized_mcp > np.exp(-2.),
228 array_ops.where(z >= 8.0, x_for_small_p, x_otherwise))
230 x = array_ops.where(p > 1. - np.exp(-2.), x, -x)
233 x_nan_replaced = array_ops.where(
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/contactsfragment/
ContactsCursorLoader.java 73 String where = getProjection(context)[CONTACT_DISPLAY_NAME] + " IS NOT NULL"; local
75 where += " AND " + Contacts.HAS_PHONE_NUMBER + "=1";
77 return where;
  /prebuilts/gdb/darwin-x86/include/python2.7/
ceval.h 48 #define Py_EnterRecursiveCall(where) \
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
  /prebuilts/gdb/linux-x86/include/python2.7/
ceval.h 48 #define Py_EnterRecursiveCall(where) \
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
function.cpp 248 auto where = augmented_successors_map_.find(block);
249 return where == augmented_successors_map_.end() ? block->successors()
250 : &(*where).second;
257 auto where = loop_header_successors_plus_continue_target_map_.find(block);
258 return where == loop_header_successors_plus_continue_target_map_.end()
260 : &(*where).second;
266 auto where = augmented_predecessors_map_.find(block);
267 return where == augmented_predecessors_map_.end() ? block->predecessors()
268 : &(*where).second;
297 auto where
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
ceval.h 48 #define Py_EnterRecursiveCall(where) \
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
ceval.h 48 #define Py_EnterRecursiveCall(where) \
50 _Py_CheckRecursiveCall(where))
53 PyAPI_FUNC(int) _Py_CheckRecursiveCall(char *where);
  /external/ltp/testcases/kernel/fs/scsi/ltpfs/
ltpfsio.sh 33 - These operations are destructive so do NOT point the tests to partitions where the data shouldn't be overwritten.
  /external/python/cpython2/Mac/Demo/quicktime/
VerySimplePlayer.py 62 (what, message, when, where, modifiers) = evt
63 ## print what, message, when, where, modifiers # XXXX
69 part, whichWindow = Win.FindWindow(where)
71 done = whichWindow.TrackGoAway(where)
73 Qt.DragAlignedWindow(whichWindow, where, (0, 0, 4000, 4000))
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentResolver.java 106 public int update(Uri uri, ContentValues values, String where, String[] selectionArgs) {
109 return provider.update(uri, values, where, selectionArgs);
111 UpdateStatement updateStatement = new UpdateStatement(uri, new ContentValues(values), where, selectionArgs);
136 public final int delete(Uri url, String where, String[] selectionArgs) {
139 return provider.delete(url, where, selectionArgs);
141 DeleteStatement deleteStatement = new DeleteStatement(url, where, selectionArgs);
365 private final String where;
368 public UpdateStatement(Uri uri, ContentValues values, String where, String[] selectionArgs) {
371 this.where = where;
    [all...]

Completed in 817 milliseconds

1 2 3 45 6 7 8 91011>>