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

<<11121314151617181920>>

  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java 78 int visibWhere; // Visibility value for Where textview (View.GONE or View.VISIBLE)
79 String where; field in class:CalendarAppWidgetModel.EventInfo
111 builder.append(", where=");
112 builder.append(where);
134 result = prime * result + ((where == null) ? 0 : where.hashCode());
174 if (where == null) {
175 if (other.where != null)
177 } else if (!where.equals(other.where)) {
    [all...]
  /external/javassist/src/main/javassist/bytecode/
LocalVariableAttribute.java 180 void shiftPc(int where, int gapLength, boolean exclusive) {
189 if (pc > where || (exclusive && pc == where && pc != 0))
191 else if (pc + len > where || (exclusive && pc + len == where))
  /external/python/cpython2/Mac/Demo/PICTbrowse/
oldPICTbrowse.py 18 # Where is the picture window?
114 (what, message, when, where, modifiers) = event
116 where = Qd.GlobalToLocal(where)
117 print 'LISTHIT', where
118 if self.list.LClick(where, modifiers):
  /external/tensorflow/tensorflow/compiler/tests/
ternary_ops_test.py 72 array_ops.where,
79 array_ops.where,
86 array_ops.where,
93 array_ops.where,
100 array_ops.where,
  /system/core/libpixelflinger/
raster.cpp 146 GGLint gglBitBlit(GGLContext* con, int tmu, GGLint crop[4], GGLint where[4])
150 GGLint x = where[0];
151 GGLint y = where[1];
152 GGLint w = where[2];
153 GGLint h = where[3];
  /external/autotest/tko/
machine_aggr.cgi 63 where = { 'subdir' : benchmark, 'machine_idx' : machine.idx , 'status' : 6}
69 for test in frontend.test.select(db, where):
94 for test in frontend.test.select(db, where, wherein):
  /external/javassist/src/main/javassist/expr/
MethodCall.java 49 public CtBehavior where() { return super.where(); } method in class:MethodCall
149 && !where().getDeclaringClass().getName().equals(getClassName());
Cast.java 38 public CtBehavior where() { return super.where(); } method in class:Cast
Instanceof.java 39 public CtBehavior where() { return super.where(); } method in class:Instanceof
  /external/python/cpython3/Include/
ceval.h 79 #define Py_EnterRecursiveCall(where) \
81 _Py_CheckRecursiveCall(where))
86 PyAPI_FUNC(int) _Py_CheckRecursiveCall(const char *where);
  /toolchain/binutils/binutils-2.27/gas/
cgen.c 232 FRAG and WHERE are their respective arguments to fix_new_exp.
242 gas_cgen_record_fixup (fragS *frag, int where, const CGEN_INSN *insn,
250 fixP = fix_new (frag, where, length / 8, symbol, offset,
267 FRAG and WHERE are their respective arguments to fix_new_exp.
277 gas_cgen_record_fixup_exp (fragS *frag, int where, const CGEN_INSN *insn,
285 fixP = fix_new_exp (frag, where, length / 8, exp,
530 We use (f - frag_now->fr_literal) to compute where we are and we
841 char *where = fixP->fx_frag->fr_literal + fixP->fx_where; local
902 cgen_get_insn_value (cd, (unsigned char *) where,
908 cgen_put_insn_value (cd, (unsigned char *) where,
    [all...]
  /external/autotest/scheduler/
query_managers.py 115 where=query, order_by=sort_order))
140 where=['(afe_host_queue_entries.id IS NULL OR '
213 @return: A dictionary where the key is a suite job id,
263 where="NOT afe_hosts.leased "
278 WHERE afe_jobs.id IN (%s)
287 WHERE job_id IN (%s)
297 WHERE job_id IN (%s)
326 where="active_hqe.host_id IS NULL AND new_tasks.host_id IS NULL "
360 where="id IN (SELECT label_id FROM afe_hosts_labels)")
371 where="id IN (%s)" % job_string_label_list
    [all...]
  /external/boringssl/src/include/openssl/
stack.h 74 // (once) with |DEFINE_STACK_OF(type)| and declared where needed with
150 // sk_insert inserts |p| into the stack at index |where|, moving existing
153 OPENSSL_EXPORT size_t sk_insert(_STACK *sk, void *p, size_t where);
155 // sk_delete removes the pointer at index |where|, moving other elements down
156 // if needed. It returns the removed pointer, or NULL if |where| is out of
158 OPENSSL_EXPORT void *sk_delete(_STACK *sk, size_t where);
290 STACK_OF(name) *sk, ptrtype p, size_t where) { \
291 return sk_insert((_STACK *)sk, (void *)p, where); \
295 size_t where) { \
296 return (ptrtype)sk_delete((_STACK *)sk, where); \
    [all...]
  /external/pdfium/third_party/libtiff/
tif_aux.c 37 _TIFFMultiply32(TIFF* tif, uint32 first, uint32 second, const char* where)
42 TIFFErrorExt(tif->tif_clientdata, where, "Integer overflow in %s", where);
50 _TIFFMultiply64(TIFF* tif, uint64 first, uint64 second, const char* where)
55 TIFFErrorExt(tif->tif_clientdata, where, "Integer overflow in %s", where);
  /build/make/core/
checktree 89 where = "p4 where " + " ".join(added_depot_path)
90 added = run(where, r'(.*)', r'.*')
  /development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java 234 * Choose the projection and adjust the "where" clause based on URI pattern-matching.
243 * note ID projection, and appends "_ID = <noteID>" to the where clause, so that
281 selection, // The columns for the where clause
282 selectionArgs, // The values for the where clause
395 null, // No WHERE clause, get all matching records
396 null, // Since there is no WHERE clause, no selection criteria
542 * specified by where and whereArgs.
545 * @return If a "where" clause is used, the number of rows affected is returned, otherwise
546 * 0 is returned. To delete all rows and get a row count, use "1" as the where clause.
550 public int delete(Uri uri, String where, String[] whereArgs)
    [all...]
  /external/curl/docs/cmdline-opts/
continue-at.d 12 Use "-C -" to tell curl to automatically find out where/how to resume the
fail.d 12 This method is not fail-safe and there are occasions where non-successful
url.d 14 This option may be used any number of times. To control where this URL is
  /external/jline/src/src/main/java/jline/
ConsoleReader.java 1503 int where = num; local
    [all...]
  /external/llvm/bindings/ocaml/irreader/
llvm_irreader.mli 19 raises [Error msg] otherwise, where [msg] is a description of the error
  /external/python/cpython2/Lib/plat-mac/
argvemulator.py 53 what, message, when, where, modifiers = event
54 h, v = where
  /external/python/cpython3/Tools/msi/
get_externals.bat 5 where /Q svn
  /external/tensorflow/tensorflow/contrib/opt/python/training/
sign_decay.py 101 decayed = array_ops.where(
154 decayed = array_ops.where(
  /external/valgrind/memcheck/tests/
partiallydefinedeq.stderr.exp 18 Use --track-origins=yes to see where uninitialised values come from

Completed in 2091 milliseconds

<<11121314151617181920>>