Searched refs:where (Results 51 - 75 of 430) sorted by relevance

1234567891011>>

/external/ltrace/
H A Dvalue.c40 valp->where = VAL_LOC_NODATA;
85 if (val->where == VAL_LOC_COPY) {
87 val->where = VAL_LOC_NODATA;
106 valp->where = VAL_LOC_WORD;
109 valp->where = VAL_LOC_COPY;
121 valp->where = VAL_LOC_INFERIOR;
128 if (val->where != VAL_LOC_INFERIOR)
154 val->where = nloc;
172 switch (val->where) {
184 assert(!"Unexpected value of val->where");
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentResolver.java106 public int update(Uri uri, ContentValues values, String where, String[] selectionArgs) { argument
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) { argument
139 return provider.delete(url, where, selectionArgs);
141 DeleteStatement deleteStatement = new DeleteStatement(url, where, selectionArgs);
365 private final String where; field in class:ShadowContentResolver.UpdateStatement
368 public UpdateStatement(Uri uri, ContentValues values, String where, String[] selectionArgs) { argument
371 this.where = where;
394 private final String where; field in class:ShadowContentResolver.DeleteStatement
397 DeleteStatement(Uri uri, String where, String[] selectionArgs) argument
[all...]
H A DShadowSQLiteQueryBuilder.java16 String[] columns, String where, String groupBy, String having,
34 conditionallyAppend(sb, " WHERE ", where);
15 buildQueryString(boolean distinct, String tables, String[] columns, String where, String groupBy, String having, String orderBy, String limit) argument
H A DShadowSpannableStringBuilder.java36 public Editable insert(int where, CharSequence text) { argument
37 builder.insert(where, text.toString());
/external/smack/src/org/xbill/DNS/
H A DDNSOutput.java130 * @param where The position to write the value.
133 writeU16At(int val, int where) { argument
135 if (where > pos - 2)
138 array[where++] = (byte)((val >>> 8) & 0xFF);
139 array[where++] = (byte)(val & 0xFF);
/external/valgrind/main/drd/
H A Ddrd_malloc_wrappers.h44 ExeContext** const where);
H A Ddrd_malloc_wrappers.c51 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;
316 heap_addrinfo(Addr const a, Addr* const data, SizeT* const size, ExeContext** const where) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macevents.c146 /* for some reason, event.where isn't set ? */
147 GetGlobalMouse ( &event.where );
151 if ( (event.where.h != last_where.h) ||
152 (event.where.v != last_where.v) ) {
154 pt = last_where = event.where;
259 area = FindWindow(event.where, &win);
268 Mac_DoAppleMenu(this, MenuSelect(event.where));
273 DragWindow(win, event.where, NULL);
275 DragWindow(win, event.where, &theQD->screenBits.bounds);
279 if ( TrackGoAway(win, event.where) ) {
[all...]
/external/llvm/include/llvm/ADT/
H A Dilist.h317 // circularly linked list where we snip the 'next' link from the sentinel node
412 iterator insert(iterator where, NodeTy *New) { argument
413 NodeTy *CurNode = where.getNodePtrUnchecked();
428 iterator insertAfter(iterator where, NodeTy *New) { argument
432 return insert(++where, New);
450 // strictly required, but this catches errors where a node is removed from
465 iterator erase(iterator where) { argument
466 this->deleteNode(remove(where));
467 return where;
565 template<class InIt> void insert(iterator where, InI argument
570 splice(iterator where, iplist &L2) argument
574 splice(iterator where, iplist &L2, iterator first) argument
579 splice(iterator where, iplist &L2, iterator first, iterator last) argument
664 insert(iterator where, const NodeTy &val) argument
673 insert(iterator where, size_type count, const NodeTy &val) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Drbbisetb.h50 void split(UChar32 where, UErrorCode &status); // Spit this range in two at "where", with
51 // where appearing in the second (higher) part.
88 void serializeTrie(uint8_t *where); // write out the serialized Trie.
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dudbgutil.h125 U_CAPI void *udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UBool *firstForTicket,
134 U_CAPI void *udbg_knownIssue_open(void *ptr, const char *ticket, char *where, const char *msg, UBool *firstForTicket,
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpbo.c181 const GLvoid *ptr, const char *where)
189 "%s(out of bounds PBO access)", where);
193 where, clientMemSize);
205 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(PBO is mapped)", where);
277 GLvoid *ptr, const char *where)
285 "%s(out of bounds PBO access)", where);
289 where, clientMemSize);
301 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(PBO is mapped)", where);
175 _mesa_map_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, const GLvoid *ptr, const char *where) argument
272 _mesa_map_validate_pbo_dest(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, GLvoid *ptr, const char *where) argument
/external/icu/icu4c/source/common/
H A Drbbisetb.h50 void split(UChar32 where, UErrorCode &status); // Spit this range in two at "where", with
51 // where appearing in the second (higher) part.
88 void serializeTrie(uint8_t *where); // write out the serialized Trie.
/external/icu/icu4c/source/tools/toolutil/
H A Dudbgutil.h125 U_CAPI void *udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UBool *firstForTicket,
134 U_CAPI void *udbg_knownIssue_open(void *ptr, const char *ticket, char *where, const char *msg, UBool *firstForTicket,
/external/libcap-ng/libcap-ng-0.7/src/
H A Dcap-ng.h73 char *capng_print_caps_numeric(capng_print_t where, capng_select_t set);
74 char *capng_print_caps_text(capng_print_t where, capng_type_t which);
/external/mesa3d/src/mesa/main/
H A Dpbo.c181 const GLvoid *ptr, const char *where)
189 "%s(out of bounds PBO access)", where);
193 where, clientMemSize);
205 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(PBO is mapped)", where);
277 GLvoid *ptr, const char *where)
285 "%s(out of bounds PBO access)", where);
289 where, clientMemSize);
301 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(PBO is mapped)", where);
175 _mesa_map_validate_pbo_source(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, const GLvoid *ptr, const char *where) argument
272 _mesa_map_validate_pbo_dest(struct gl_context *ctx, GLuint dimensions, const struct gl_pixelstore_attrib *unpack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, GLvoid *ptr, const char *where) argument
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dbrkiter.h59 * text returning the index of characters where boundaries occur.
61 * Line boundary analysis determines where a text string can be broken
343 * @param where the locale.
359 createWordInstance(const Locale& where, UErrorCode& status);
367 * @param where the locale.
383 createLineInstance(const Locale& where, UErrorCode& status);
389 * @param where the locale.
405 createCharacterInstance(const Locale& where, UErrorCode& status);
410 * @param where the locale.
426 createSentenceInstance(const Locale& where, UErrorCod
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dbrkiter.h59 * text returning the index of characters where boundaries occur.
61 * Line boundary analysis determines where a text string can be broken
343 * @param where the locale.
359 createWordInstance(const Locale& where, UErrorCode& status);
367 * @param where the locale.
383 createLineInstance(const Locale& where, UErrorCode& status);
389 * @param where the locale.
405 createCharacterInstance(const Locale& where, UErrorCode& status);
410 * @param where the locale.
426 createSentenceInstance(const Locale& where, UErrorCod
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DStackMapTable.java788 void shiftPc(int where, int gapSize, boolean exclusive) argument
791 new Shifter(this, where, gapSize, exclusive).doit();
796 private int where, gap; field in class:StackMapTable.Shifter
801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) { argument
804 this.where = where;
830 match = oldPos < where && where <= position;
832 match = oldPos <= where && where < positio
850 insertGap(byte[] info, int where, int gap) argument
898 removeNew(int where) argument
[all...]
H A DExceptionTable.java251 void shiftPc(int where, int gapLength, boolean exclusive) { argument
255 e.startPc = shiftPc(e.startPc, where, gapLength, exclusive);
256 e.endPc = shiftPc(e.endPc, where, gapLength, exclusive);
257 e.handlerPc = shiftPc(e.handlerPc, where, gapLength, exclusive);
261 private static int shiftPc(int pc, int where, int gapLength, argument
263 if (pc > where || (exclusive && pc == where))
H A DLineNumberAttribute.java172 void shiftPc(int where, int gapLength, boolean exclusive) { argument
177 if (pc > where || (exclusive && pc == where))
/external/compiler-rt/lib/BlocksRuntime/
H A Druntime.c103 static unsigned long int latching_incr_long(unsigned long int *where) {
105 unsigned long int old_value = *(volatile unsigned long int *)where;
109 if (OSAtomicCompareAndSwapLong(old_value, old_value+1, (volatile long int *)where)) {
116 static int latching_incr_int(int *where) { argument
118 int old_value = *(volatile int *)where;
122 if (OSAtomicCompareAndSwapInt(old_value, old_value+1, (volatile int *)where)) {
129 static int latching_decr_long(unsigned long int *where) {
131 unsigned long int old_value = *(volatile int *)where;
138 if (OSAtomicCompareAndSwapLong(old_value, old_value-1, (volatile long int *)where)) {
145 static int latching_decr_int(int *where) { argument
[all...]
/external/llvm/test/MC/Mips/
H A Dhigher-highest-addressing.s32 # Check the case where relocations are not modified by adding +1. The constant
43 # Check the case where %higher is modified by adding +1.
50 # Check the case where both %higher and %highest are modified by adding +1.
/external/libunwind/src/ia64/
H A DGparser.c155 set_reg (struct ia64_reg_info *reg, enum ia64_where where, int when, argument
159 reg->where = where;
172 if (reg->where == IA64_WHERE_SPILL_HOME)
174 reg->where = IA64_WHERE_PSPREL;
189 if (reg->where == IA64_WHERE_SPILL_HOME)
211 if (reg->where == IA64_WHERE_GR_SAVE)
213 reg->where = IA64_WHERE_GR;
478 if (reg->where == IA64_WHERE_NONE)
479 reg->where
579 enum ia64_where where = IA64_WHERE_GR; local
794 enum ia64_where where; local
[all...]
/external/llvm/bindings/ocaml/bitreader/
H A Dllvm_bitreader.mli19 raises [Error msg] otherwise, where [msg] is a description of the error
26 raises [Error msg] otherwise, where [msg] is a description of the error

Completed in 718 milliseconds

1234567891011>>