Searched defs:where (Results 1 - 25 of 89) sorted by relevance

1234

/external/icu4c/tools/gencmn/
H A Dgencmn.c68 FILE *where = argc < 0 ? stderr : stdout; local
74 fprintf(where,
77 fprintf(where, "\n"
80 fprintf(where, "\n"
87 fprintf(where,
/external/skia/src/animator/
H A DSkDisplayAdd.h39 SkDrawable* where; // if NULL, offset becomes index member in class:SkAdd
/external/compiler-rt/BlocksRuntime/tests/
H A Dfail.c92 char *where = strstr(got, desired); local
93 if (!where) {
/external/javassist/src/main/javassist/bytecode/
H A DLineNumberAttribute.java172 void shiftPc(int where, int gapLength, boolean exclusive) { argument
177 if (pc > where || (exclusive && pc == where))
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 DLocalVariableAttribute.java180 void shiftPc(int where, int gapLength, boolean exclusive) { argument
189 if (pc > where || (exclusive && pc == where && pc != 0))
191 else if (pc + len > where || (exclusive && pc + len == where))
/external/javassist/src/main/javassist/expr/
H A DCast.java38 public CtBehavior where() { return super.where(); } method in class:Cast
H A DHandler.java43 public CtBehavior where() { return super.where(); } method in class:Handler
H A DInstanceof.java39 public CtBehavior where() { return super.where(); } method in class:Instanceof
H A DMethodCall.java49 public CtBehavior where() { return super.where(); } method in class:MethodCall
149 && !where().getDeclaringClass().getName().equals(getClassName());
H A DFieldAccess.java39 public CtBehavior where() { return super.where(); } method in class:FieldAccess
H A DNewArray.java42 public CtBehavior where() { return super.where(); } method in class:NewArray
H A DNewExpr.java58 public CtBehavior where() { return super.where(); } method in class:NewExpr
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysevents.cc167 BPoint where; local
169 if (msg->FindPoint("where", &where) == B_OK && msg->FindInt32("be:transit", &transit) == B_OK) {
173 x = (int)where.x - x;
174 y = (int)where.y - y;
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macmouse.c117 Point where; local
121 where.h = x;
122 where.v = y;
123 LocalToGlobal(&where);
125 CursorDeviceMoveTo(cursordevice, where.h, where.v);
/external/valgrind/main/memcheck/tests/
H A Dmempool.c16 char *where; member in struct:_level_list
24 char *where; member in struct:_pool
39 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
44 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
49 VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
65 l->where = p->where;
66 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
74 VALGRIND_DESTROY_MEMPOOL(l->where);
75 VALGRIND_MAKE_MEM_NOACCESS(l->where,
101 char *where; local
[all...]
H A Dmempool2.c19 char *where; member in struct:_level_list
27 char *where; member in struct:_pool
42 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
47 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
52 VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
68 l->where = p->where;
69 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
77 VALGRIND_DESTROY_MEMPOOL(l->where);
78 VALGRIND_MAKE_MEM_NOACCESS(l->where,
104 char *where; local
[all...]
/external/icu4c/test/cintltst/
H A Dchashtst.c286 static const char where[] = "where"; local
304 _put(hash, where, 3, 0);
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
H A DSDL_wingl.c83 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/dbus/dbus/
H A Ddbus-auth-script.c508 int where; local
511 "USERID_HEX", &where))
530 _dbus_string_delete (&to_send, where, strlen ("USERID_HEX"));
533 &to_send, where))
544 "USERNAME_HEX", &where))
563 _dbus_string_delete (&to_send, where, strlen ("USERNAME_HEX"));
566 &to_send, where))
/external/dbus/tools/
H A Ddbus-monitor.c302 const char *where; local
304 where = address;
310 where = "system bus";
313 where = "session bus";
316 where = "";
320 where,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
H A Dsearchcvs.php13 $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"),
25 $extra = array("where" => array(), "having" => array());
40 $where = "WHERE `bugid` = $regs[1]"; variable
43 else if (preg_match("/(\S)/", $q, $regs) || sizeof($extra["where"]) + sizeof($extra["having"]) > 0)
50 $where = "WHERE " . ($match ? $match : "1"); variable
51 $where
[all...]
/external/grub/netboot/
H A Dpci.c34 #define CONFIG_CMD(bus, device_fn, where) (0x80000000 | (bus << 16) | (device_fn << 8) | (where & ~3))
37 unsigned int where, unsigned char *value)
39 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
40 *value = inb(0xCFC + (where&3));
45 unsigned int device_fn, unsigned int where, unsigned short *value)
47 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
48 *value = inw(0xCFC + (where&2));
53 unsigned int where, unsigned int *value)
55 outl(CONFIG_CMD(bus,device_fn,where),
36 pcibios_read_config_byte(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned char *value) argument
44 pcibios_read_config_word(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned short *value) argument
52 pcibios_read_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned int *value) argument
60 pcibios_write_config_byte(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned char value) argument
68 pcibios_write_config_word(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned short value) argument
76 pcibios_write_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned int value) argument
135 pcibios_read_config_byte(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned char *value) argument
162 pcibios_read_config_word(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned short *value) argument
189 pcibios_read_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned int *value) argument
216 pcibios_write_config_byte(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned char value) argument
243 pcibios_write_config_word(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned short value) argument
270 pcibios_write_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, unsigned int value) argument
[all...]
/external/icu4c/common/
H A Drbbisetb.cpp327 void RBBISetBuilder::serializeTrie(uint8_t *where) { argument
329 where, // Buffer
633 void RangeDescriptor::split(UChar32 where, UErrorCode &status) { argument
634 U_ASSERT(where>fStartChar && where<=fEndChar);
646 nr->fStartChar = where;
647 this->fEndChar = where-1;
/external/icu4c/i18n/
H A Duspoof_wsconf.cpp336 void *where = spImpl->fSpoofData->reserveSpace(size, status); local
337 utrie2_serialize(anyCaseTrie, where, size, &status);
349 where = spImpl->fSpoofData->reserveSpace(size, status);
350 utrie2_serialize(lowerCaseTrie, where, size, &status);

Completed in 8068 milliseconds

1234