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

1 2 3 4 56 7 8 91011>>

  /packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
ApnEditorActivity.java 411 String where = Telephony.Carriers._ID + " =?"; local
414 mDatabase.delete(ApnDatabase.APN_TABLE, where, whereArgs);
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksProvider.java 403 String where = PartnerBookmarksContract.Bookmarks.PARENT + "=?"; local
404 where = DatabaseUtils.concatenateWhere(where, selection);
409 query = qb.buildQuery(projection, where, null, null, sortOrder, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 510 String where = getSimpleName(targetNode.getFqcn()); local
515 return String.format("%1$s %2$s in %3$s", verb, object, where);
687 // position, such that the view is notified of the position where
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
ihex.c 146 bfd_vma where; member in struct:ihex_data_list
681 n->where = section->lma + offset;
688 && n->where >= tdata->tail->where)
699 *pp != NULL && (*pp)->where < n->where;
768 bfd_vma where; local
772 where = l->where;
785 if (where > segbase + extbase + 0xffff
    [all...]
opncls.c 229 /* OK, put everything where it belongs. */
476 file_ptr where; member in struct:opncls
483 return vec->where;
492 case SEEK_SET: vec->where = offset; break;
493 case SEEK_CUR: vec->where += offset; break;
503 file_ptr nread = (vec->pread) (abfd, vec->stream, buf, nbytes, vec->where);
506 vec->where += nread;
512 const void *where ATTRIBUTE_UNUSED,
863 abfd->where = 0;
902 abfd->where = 0
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-epiphany.c 61 /* Flag to detect when switching to code section where insn alignment is
262 char *where = fixP->fx_frag->fr_literal + fixP->fx_where;
263 unsigned char *insn = (unsigned char *)where;
275 where[0] = where[0] | ((value & 1) << 7);
276 where[1] = where[1] | ((value & 6) >> 1);
277 where[2] = (value >> 3) & 0xff;
281 where[0] = where[0] | ((value & 1) << 7)
258 char *where = fixP->fx_frag->fr_literal + fixP->fx_where; local
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
cris-dis.c 57 where N is an estimation on the corresponding 'case' operand in C,
58 and case_address is where execution of that case continues after the
688 CRISv32, where constants are always DWORD-size for
747 /* Get a buffer of somewhat reasonable size where we store
892 number, where the size can depend on different things. */
1254 int where = buffer[2] + buffer[3] * 256; local
    [all...]
  /device/google/contexthub/util/nanoapp_postprocess/
postprocess_elf.c 55 uint32_t where; member in struct:RelocEntry
363 " Where: 0x%08" PRIX32 "\n"
366 i, relocs[i].where, relocs[i].info & 0xff, whichSym);
374 i, relocs[i].where, relocs[i].info & 0xff, whichSym, syms[whichSym].addr);
376 if (IS_IN_RANGE_E(relocs[i].where, sect->bss_start, sect->bss_end))
378 else if (IS_IN_RANGE_E(relocs[i].where, sect->data_start, sect->data_end))
380 else if (IS_IN_RANGE_E(relocs[i].where, sect->got_start, sect->got_end))
382 else if (IS_IN_RANGE_E(relocs[i].where, FLASH_BASE, FLASH_BASE + sizeof(struct BinHdr)))
390 if (IS_IN_FLASH(relocs[i].where) && relocs[i].where - FLASH_BASE < sizeof(struct BinHdr) && relocType == RELOC_TYPE_SECT)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
bz2module.c 1025 int where = 0; local
1037 if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &where))
1066 if (where == 2) {
1091 } else if (where == 1) {
    [all...]
  /external/e2fsprogs/lib/support/
dict.c 569 dnode_t *where = dict_root(dict), *nil = dict_nil(dict); local
581 while (where != nil) {
582 parent = where;
583 result = dict->compare(key, where->key);
587 where = where->left;
589 where = where->right;
592 dict_assert (where == nil);
    [all...]
  /external/f2fs-tools/fsck/
dict.c 545 dnode_t *where = dict_root(dict), *nil = dict_nil(dict); local
557 while (where != nil) {
558 parent = where;
559 result = dict->compare(key, where->key);
563 where = where->left;
565 where = where->right;
568 dict_assert(where == nil);
    [all...]
  /external/libunwind/src/ia64/
Gparser.c 155 set_reg (struct ia64_reg_info *reg, enum ia64_where where, int when,
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 = IA64_WHERE_GR_SAVE
579 enum ia64_where where = IA64_WHERE_GR; local
794 enum ia64_where where; local
    [all...]
unwind_i.h 432 enum ia64_where where; /* where the register gets saved */ member in struct:ia64_reg_info
  /external/python/cpython2/Mac/Modules/res/
_Resmodule.c 1301 RsrcChainLocation where; local
    [all...]
  /external/python/cpython2/Modules/
bz2module.c 1014 int where = 0; local
1026 if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &where))
1055 if (where == 2) {
1080 } else if (where == 1) {
    [all...]
mmapmodule.c 588 Py_ssize_t where; local
591 where = dist;
596 where = self->pos + dist;
601 where = self->size + dist;
607 if (where > self->size || where < 0)
609 self->pos = where;
    [all...]
  /external/python/cpython3/Modules/
mmapmodule.c 625 Py_ssize_t where; local
628 where = dist;
633 where = self->pos + dist;
638 where = self->size + dist;
644 if (where > self->size || where < 0)
646 self->pos = where;
    [all...]
  /external/syslinux/memdisk/
setup.c 128 uint32_t where = *where_p; local
138 if (check_zip((void *)where, size, &zbytes, &gzdatasize,
195 * This is where the gz image would be put if we put it in this
201 if ((uint64_t) where + size >= gzwhere && where < endrange) {
213 where, newwhere);
215 memmove((void *)newwhere, (void *)where, size);
216 where = newwhere;
232 *where_p = (uint32_t) unzip((void *)(where + offset), zbytes,
315 static const struct geometry *get_disk_image_geometry(uint32_t where,
    [all...]
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 56 * the where clause).</br>
58 * --where "name=\'new_setting\'"
62 * adb shell content delete --uri content://settings/secure --where "name=\'new_setting\'"
65 * # Query \"name\" and \"value\" columns from secure settings where \"name\" is equal to"
68 * --where "name=\'new_setting\'" --sort \"name ASC\"
82 + " <COLUMN_NAME>:<TYPE>:<COLUMN_VALUE> where:\n"
91 + "usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]\n"
92 + " <WHERE> is a SQL style where clause in quotes (You have to escape single quotes
227 String where = null; local
249 String where = null; local
370 String where = null; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 252 String where = EVENTS_WHERE; local
257 where += hideString;
262 endDay, where, null, SORT_EVENTS_BY);
302 * @param selection Filter on the query as an SQL WHERE statement
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekFragment.java 212 String where = WHERE_CALENDARS_VISIBLE; local
214 where += " AND " + Instances.SELF_ATTENDEE_STATUS + "!="
217 return where;
354 String where = updateWhere(); local
357 getActivity(), mEventUri, Event.EVENT_PROJECTION, where,
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoProvider.java 225 protected static final String WHERE = " WHERE ";
351 String where; local
356 where = WHERE_ID;
361 return DatabaseUtils.concatenateWhere(selection, where);
461 protected static String metadataSelectionFromPhotos(String where) {
462 return nestWhere(Metadata.PHOTO_ID, Photos.TABLE, where);
465 protected static String photoSelectionFromAlbums(String where) {
466 return nestWhere(Photos.ALBUM_ID, Albums.TABLE, where);
469 protected static String photoSelectionFromAccounts(String where) {
    [all...]
  /packages/apps/Music/src/com/android/music/
MusicPicker.java 591 StringBuilder where = new StringBuilder(); local
592 where.append(MediaStore.Audio.Media.TITLE + " != ''");
596 // where.append(" AND " + MediaStore.Audio.Media.IS_MUSIC + "=1");
606 uri, CURSOR_COLS, where.toString(), null, mSortOrder);
613 MY_QUERY_TOKEN, null, uri, CURSOR_COLS, where.toString(), null, mSortOrder);
  /packages/apps/Settings/src/com/android/settings/network/
ApnSettings.java 255 StringBuilder where = new StringBuilder("numeric=\"" + mccmnc + local
259 where.append(" AND NOT (type='ims')");
263 "_id", "name", "apn", "type", "mvno_type", "mvno_match_data"}, where.toString(),
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarInstancesHelper.java 75 * Determines the set of Events where the _id matches the first query argument, or the
87 " WHERE " + Tables.EVENTS + "." + Events._ID + "=? OR " +
91 * Determines the set of Events where the _sync_id matches the first query argument, or the
103 " WHERE " + Tables.EVENTS + "." + Events._SYNC_ID + "=?" + " OR " +
145 String where = "SELECT " + columnName + " FROM " + Tables.EVENTS + local
146 " WHERE " + Events._ID + "=?";
147 return DatabaseUtils.stringForQuery(db, where,
791 String where = SQL_WHERE_ID_FROM_INSTANCES_NOT_SYNCED; local
799 String where = SQL_WHERE_ID_FROM_INSTANCES_SYNCED; local
840 String where = CalendarProvider2.SQL_WHERE_ID; local
847 String where = "(" + Events._SYNC_ID + "=? OR " + Events.ORIGINAL_SYNC_ID + "=?) AND " local
    [all...]

Completed in 1173 milliseconds

1 2 3 4 56 7 8 91011>>