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

12 3 4 5 6 7 8 91011>>

  /external/avb/libavb_user/
avb_ops_user.cpp 119 off_t where; local
140 where = lseek(fd, offset, SEEK_SET);
141 if (where == -1) {
146 if (where != offset) {
182 off_t where; local
193 where = lseek(fd, offset, SEEK_SET);
194 if (where == -1) {
199 if (where != offset) {
  /external/python/cpython2/Lib/lib-tk/
Tkdnd.py 13 should call Tkdnd.dnd_start(source, event), where 'source' is the
35 function is called as dnd_accept(source, event), where 'source' is the
242 # where the pointer is relative to the label widget:
245 # where the widget is relative to the canvas:
249 x, y = self.where(self.canvas, event)
255 def where(self, canvas, event): member in class:Icon
256 # where the corner of the canvas is relative to the screen:
259 # where the pointer is relative to the canvas widget:
281 x, y = source.where(self.canvas, event)
288 x, y = source.where(self.canvas, event
    [all...]
  /external/python/cpython3/Lib/tkinter/
dnd.py 13 should call Tkdnd.dnd_start(source, event), where 'source' is the
35 function is called as dnd_accept(source, event), where 'source' is the
242 # where the pointer is relative to the label widget:
245 # where the widget is relative to the canvas:
249 x, y = self.where(self.canvas, event)
255 def where(self, canvas, event): member in class:Icon
256 # where the corner of the canvas is relative to the screen:
259 # where the pointer is relative to the canvas widget:
281 x, y = source.where(self.canvas, event)
288 x, y = source.where(self.canvas, event
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
Mark.java 94 StringBuilder where = new StringBuilder(" in "); local
95 where.append(name);
96 where.append(", line ");
97 where.append(line + 1);
98 where.append(", column ");
99 where.append(column + 1);
101 where.append(":\n");
102 where.append(snippet);
104 return where.toString();
  /external/syslinux/com32/modules/
pmload.c 61 int boot_raw(void *ptr, size_t len, addr_t where, char **argv)
87 dprintf("Segment at 0x%08x len 0x%08x\n", where, len);
89 if (syslinux_memmap_type(amap, where, len) != SMT_FREE) {
91 where, len);
96 if (syslinux_add_memmap(&amap, where, len, SMT_ALLOC))
100 if (syslinux_add_movelist(&ml, where, (addr_t) ptr, len))
169 regs.eip = where;
199 addr_t where; local
206 where = strtoul(argv[2], NULL, 0);
213 boot_raw(data, data_len, where, &argv[1])
    [all...]
  /external/valgrind/memcheck/tests/
mempool.c 16 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 (void) 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 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where)
101 char *where; local
    [all...]
mempool2.c 19 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 (void) 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 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where)
104 char *where; local
    [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;
  /packages/apps/Dialer/java/com/android/dialer/speeddial/
AddFavoriteActivity.java 101 String where = Contacts._ID + " = ?"; local
103 return getContentResolver().update(Contacts.CONTENT_URI, contentValues, where, selectionArgs);
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkdnd.py 13 should call Tkdnd.dnd_start(source, event), where 'source' is the
35 function is called as dnd_accept(source, event), where 'source' is the
242 # where the pointer is relative to the label widget:
245 # where the widget is relative to the canvas:
249 x, y = self.where(self.canvas, event)
255 def where(self, canvas, event): member in class:Icon
256 # where the corner of the canvas is relative to the screen:
259 # where the pointer is relative to the canvas widget:
281 x, y = source.where(self.canvas, event)
288 x, y = source.where(self.canvas, event
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkdnd.py 13 should call Tkdnd.dnd_start(source, event), where 'source' is the
35 function is called as dnd_accept(source, event), where 'source' is the
242 # where the pointer is relative to the label widget:
245 # where the widget is relative to the canvas:
249 x, y = self.where(self.canvas, event)
255 def where(self, canvas, event): member in class:Icon
256 # where the corner of the canvas is relative to the screen:
259 # where the pointer is relative to the canvas widget:
281 x, y = source.where(self.canvas, event)
288 x, y = source.where(self.canvas, event
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 13 should call Tkdnd.dnd_start(source, event), where 'source' is the
35 function is called as dnd_accept(source, event), where 'source' is the
242 # where the pointer is relative to the label widget:
245 # where the widget is relative to the canvas:
249 x, y = self.where(self.canvas, event)
255 def where(self, canvas, event): member in class:Icon
256 # where the corner of the canvas is relative to the screen:
259 # where the pointer is relative to the canvas widget:
281 x, y = source.where(self.canvas, event)
288 x, y = source.where(self.canvas, event
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 13 should call Tkdnd.dnd_start(source, event), where 'source' is the
35 function is called as dnd_accept(source, event), where 'source' is the
242 # where the pointer is relative to the label widget:
245 # where the widget is relative to the canvas:
249 x, y = self.where(self.canvas, event)
255 def where(self, canvas, event): member in class:Icon
256 # where the corner of the canvas is relative to the screen:
259 # where the pointer is relative to the canvas widget:
281 x, y = source.where(self.canvas, event)
288 x, y = source.where(self.canvas, event
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elfcore.h 191 file_ptr where = (file_ptr) i_ehdrp->e_shoff; local
194 if (bfd_seek (abfd, where, SEEK_SET) != 0)
217 file_ptr where; local
225 where = (file_ptr)(i_ehdrp->e_phoff + (i_ehdrp->e_phnum - 1) * sizeof (x_phdr));
226 if ((bfd_size_type) where <= i_ehdrp->e_phoff)
229 if (bfd_seek (abfd, where, SEEK_SET) != 0)
  /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;
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/
SelectionBuilder.java 44 * <p>If multiple where() statements are provided, they're combined using {@code AND}.
51 * .where(FeedContract.Entry._ID + "=?", id); // String _ID = "_ID"
56 * <p>In this example, the table name and filters ({@code WHERE} clauses) are both explicitly
73 * // + Tables.SESSIONS + " WHERE " + Qualified.SESSIONS_BLOCK_ID + "="
83 * .where(Qualified.SESSIONS_BLOCK_ID + "=?", blockId);
119 * <p>In the most basic usage, simply provide a selection in SQL {@code WHERE} statement format.
124 * .where("blog_posts.category = 'PROGRAMMING');
137 * .where("blog_posts.title contains ?, userSearchString);
140 * @param selection SQL where statement
145 public SelectionBuilder where(String selection, String... selectionArgs) method in class:SelectionBuilder
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 44 * <p>If multiple where() statements are provided, they're combined using {@code AND}.
51 * .where(FeedContract.Entry._ID + "=?", id); // String _ID = "_ID"
56 * <p>In this example, the table name and filters ({@code WHERE} clauses) are both explicitly
73 * // + Tables.SESSIONS + " WHERE " + Qualified.SESSIONS_BLOCK_ID + "="
83 * .where(Qualified.SESSIONS_BLOCK_ID + "=?", blockId);
119 * <p>In the most basic usage, simply provide a selection in SQL {@code WHERE} statement format.
124 * .where("blog_posts.category = 'PROGRAMMING');
137 * .where("blog_posts.title contains ?, userSearchString);
140 * @param selection SQL where statement
145 public SelectionBuilder where(String selection, String... selectionArgs) method in class:SelectionBuilder
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 44 * <p>If multiple where() statements are provided, they're combined using {@code AND}.
51 * .where(FeedContract.Entry._ID + "=?", id); // String _ID = "_ID"
56 * <p>In this example, the table name and filters ({@code WHERE} clauses) are both explicitly
73 * // + Tables.SESSIONS + " WHERE " + Qualified.SESSIONS_BLOCK_ID + "="
83 * .where(Qualified.SESSIONS_BLOCK_ID + "=?", blockId);
119 * <p>In the most basic usage, simply provide a selection in SQL {@code WHERE} statement format.
124 * .where("blog_posts.category = 'PROGRAMMING');
137 * .where("blog_posts.title contains ?, userSearchString);
140 * @param selection SQL where statement
145 public SelectionBuilder where(String selection, String... selectionArgs) method in class:SelectionBuilder
    [all...]
  /external/icu/icu4c/source/test/cintltst/
chashtst.c 288 static const char where[] = "where"; local
306 _put(hash, where, 3, 0);
  /external/javassist/src/main/javassist/expr/
Handler.java 43 public CtBehavior where() { return super.where(); } method in class:Handler
  /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...]
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
ops.py 1253 def where(condition, x, y, name=None): function
    [all...]
  /external/valgrind/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);
318 ExeContext** const where)
324 tl_assert(where);
333 *where = mc->where;
    [all...]

Completed in 507 milliseconds

12 3 4 5 6 7 8 91011>>