HomeSort by relevance Sort by last modified time
    Searched defs:where (Results 26 - 50 of 201) sorted by null

12 3 4 5 6 7 8 9

  /external/icu4c/i18n/
uspoof_wsconf.cpp 339 void *where = spImpl->fSpoofData->reserveSpace(size, status); local
340 utrie2_serialize(anyCaseTrie, where, size, &status);
352 where = spImpl->fSpoofData->reserveSpace(size, status);
353 utrie2_serialize(lowerCaseTrie, where, size, &status);
  /external/icu4c/test/cintltst/
chashtst.c 286 static const char where[] = "where"; local
304 _put(hash, where, 3, 0);
  /external/javassist/src/main/javassist/expr/
Handler.java 43 public CtBehavior where() { return super.where(); } method in class:Handler
Cast.java 38 public CtBehavior where() { return super.where(); } method in class:Cast
Expr.java 98 public CtBehavior where() { method in class:Expr
FieldAccess.java 39 public CtBehavior where() { return super.where(); } method in class:FieldAccess
Instanceof.java 39 public CtBehavior where() { return super.where(); } method in class:Instanceof
MethodCall.java 49 public CtBehavior where() { return super.where(); } method in class:MethodCall
149 && !where().getDeclaringClass().getName().equals(getClassName());
NewArray.java 42 public CtBehavior where() { return super.where(); } method in class:NewArray
NewExpr.java 58 public CtBehavior where() { return super.where(); } method in class:NewExpr
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl.c 83 const char *where, *terminator; local
86 where = SDL_strchr(extension, ' ');
87 if ( where || *extension == '\0' )
101 where = SDL_strstr(start, extension);
102 if (!where) break;
104 terminator = where + SDL_strlen(extension);
105 if (where == start || *(where - 1) == ' ')
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11gl.c 68 const char *where, *terminator; local
71 where = SDL_strchr(extension, ' ');
72 if ( where || *extension == '\0' ) {
89 where = SDL_strstr(start, extension);
90 if (!where) break;
92 terminator = where + strlen(extension);
93 if (where == start || *(where - 1) == ' ')
  /external/robolectric/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...]
  /external/valgrind/main/drd/
drd_malloc_wrappers.c 51 ExeContext* where; // where it was allocated member in struct:_DRD_Chunk
105 mc->where = VG_(record_ExeContext)(tid, 0);
209 mc->where = VG_(record_ExeContext)(tid, 0);
217 mc->where = VG_(record_ExeContext)(tid, 0);
239 mc->where = VG_(record_ExeContext)(tid, 0);
319 ExeContext** const where)
325 tl_assert(where);
334 *where = mc->where;
    [all...]
  /system/core/libutils/
VectorImpl.cpp 123 void* where = _grow(index, length); local
124 if (where) {
125 _do_copy(where, array, length);
127 return where ? index : (ssize_t)NO_MEMORY;
144 void* where = _grow(index, numItems); local
145 if (where) {
147 _do_splat(where, item, numItems);
149 _do_construct(where, numItems);
152 return where ? index : (ssize_t)NO_MEMORY;
367 void* VectorImpl::_grow(size_t where, size_t amount
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
dec_base.cpp 69 Inst::PrefGroups where; local
83 where = Inst::Group1;
95 where = Inst::Group2;
109 where = Inst::Group3;
114 where = Inst::Group4;
124 if (InstPrefix_Null != pinst->pref[where]) //only one prefix in each group
127 pinst->pref[where] = (InstPrefix)by1;
  /external/chromium_org/third_party/icu/source/i18n/
uspoof_wsconf.cpp 340 void *where = spImpl->fSpoofData->reserveSpace(size, status); local
341 utrie2_serialize(anyCaseTrie, where, size, &status);
353 where = spImpl->fSpoofData->reserveSpace(size, status);
354 utrie2_serialize(lowerCaseTrie, where, size, &status);
  /external/chromium_org/third_party/icu/source/tools/icupkg/
icupkg.cpp 56 FILE *where=isHelp ? stdout : stderr; local
58 fprintf(where,
65 fprintf(where,
74 fprintf(where,
81 fprintf(where,
89 fprintf(where,
95 fprintf(where,
104 fprintf(where,
112 fprintf(where,
116 fprintf(where,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
vmw_context.c 50 struct SVGAGuestPtr *where; member in struct:vmw_region_relocation
52 /* TODO: put offset info inside where */
151 *reloc->where = ptr;
247 uint32 *where,
255 *where = SVGA3D_INVALID_ID;
263 *where = vsurf->sid;
273 struct SVGAGuestPtr *where,
286 reloc->where = where;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
searchcvs.php 13 $where = "WHERE `date` >= DATE_SUB(CURDATE(), INTERVAL $days DAY)"; variable
17 array("regex" => "/author: ?(\S+)/", "sql" => "`author` LIKE '%%%s%%'", "sqlpart" => "where"),
18 array("regex" => "/file: ?(\S+)/", "sql" => "`cvsname` LIKE '%%%s%%'", "sqlpart" => "where"),
19 array("regex" => "/days: ?(\d+)/", "sql" => "`date` >= DATE_SUB(CURDATE(), INTERVAL %d DAY)", "sqlpart" => "where"),
20 array("regex" => "/(?:project|module): ?(\S+)/", "sql" => "`project` LIKE '%s'", "sqlpart" => "where"),
21 array("regex" => "/branch: ?(\S+)/", "sql" => "`branch` LIKE '%%%s%%'", "sqlpart" => "having") //is a calculated value, won't work in WHERE
25 $extra = array("where" => array(), "having" => array());
40 $where = "WHERE `bugid` = $regs[1]" variable
50 $where = "WHERE " . ($match ? $match : "1"); variable
    [all...]
  /external/icu4c/tools/icupkg/
icupkg.cpp 56 FILE *where=isHelp ? stdout : stderr; local
58 fprintf(where,
65 fprintf(where,
74 fprintf(where,
81 fprintf(where,
89 fprintf(where,
95 fprintf(where,
104 fprintf(where,
112 fprintf(where,
116 fprintf(where,
    [all...]
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_context.c 50 struct SVGAGuestPtr *where; member in struct:vmw_region_relocation
52 /* TODO: put offset info inside where */
151 *reloc->where = ptr;
247 uint32 *where,
255 *where = SVGA3D_INVALID_ID;
263 *where = vsurf->sid;
273 struct SVGAGuestPtr *where,
286 reloc->where = where;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteDatabase.java 118 String where = selection; local
120 where = buildWhereClause(selection, selectionArgs);
124 columns, where, groupBy, having, orderBy, limit);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQueryBuilder.java 86 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
88 * WHERE clause looks like:
90 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
92 * @param inWhere the chunk of text to append to the WHERE clause.
105 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
107 * WHERE clause looks like:
109 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
111 * @param inWhere the chunk of text to append to the WHERE clause. it will be escaped
183 * @param where A filter declaring which rows to return, formatted as an SQL
184 * WHERE clause (excluding the WHERE itself). Passing null wil
449 StringBuilder where = new StringBuilder(); local
    [all...]
  /frameworks/base/core/java/android/text/
Selection.java 24 * A cursor is a selection where the start and end are at the same offset.
339 int where = findEdge(text, layout, -1); local
340 extendSelection(text, where);
345 int where = findEdge(text, layout, 1); local
346 extendSelection(text, where);
351 int where = findEdge(text, layout, -1); local
352 setSelection(text, where);
357 int where = findEdge(text, layout, 1); local
358 setSelection(text, where);

Completed in 192 milliseconds

12 3 4 5 6 7 8 9