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

1 2 3 4 5 6 78 91011>>

  /external/syslinux/com32/lua/src/
lparser.c 87 const char *where = (line == 0) local
91 what, limit, where);
126 static void check_match (LexState *ls, int what, int who, int where) {
128 if (where == ls->linenumber)
133 luaX_token2str(ls, what), luaX_token2str(ls, who), where));
257 Mark block where variable at given level was defined
1035 ** where `binop' is any binary operator with a priority higher than `limit'
    [all...]
  /external/toybox/lib/
lib.c 946 int where = 1<<((3*i)+j); local
948 if (amask & where) continue;
963 if (dohow == '=' || (bit && dohow == '-')) mode &= ~where;
964 if (bit && dohow != '-') mode |= where;
  /external/valgrind/coregrind/
m_errormgr.c 140 ExeContext* where; // Initialised by core member in struct:_Error
150 return err->where;
231 // was read, and the lineno in this file where sname was read.
238 // where err occurs) is mandatory; rest are optional.
296 if (!VG_(eq_ExeContext)(res, e1->where, e2->where))
449 // XXX FIXME! properly handle the case where the raw text
640 const HChar* s, void* extra, ExeContext* where )
653 if (NULL == where)
654 err->where = VG_(record_ExeContext)( tid, 0 )
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-generic.c 76 /* We don't really know where the client stack is, because its
543 ExeContext *where; /* NULL if inherited from parent */ member in struct:OpenFd
617 i->where = (tid == -1) ? NULL : VG_(record_ExeContext)(tid, 0/*first_ip_delta*/);
849 if(i->where) {
850 VG_(pp_ExeContext)(i->where);
    [all...]
  /external/valgrind/massif/
ms_main.c 50 // it's clear where/why the peak is occurring. (Mattieu Castet) Also,
601 // Substract req_szB from the heap_xt where.
602 static void sub_heap_xt(Xecu where, SizeT req_szB, Bool exclude_first_entry)
609 VG_(XT_sub_from_xecu) (heap_xt, where, &req_szB);
614 VG_(XT_get_ec_from_xecu)(heap_xt, where),
651 static UInt next_snapshot_i = 0; // Index of where next snapshot will go.
782 // for snapshot n = d(N-1,N)+d(N,N+1), where d(A,B) is the time between
1092 Xecu where; \/\/ Where allocated; XTree xecu from heap_xt member in struct:_HP_Chunk
    [all...]
  /external/valgrind/memcheck/
mc_include.h 70 ExeContext* where[0]; member in struct:_MC_Chunk
76 /* Returns the execontext where the MC_Chunk was allocated/freed.
182 additional information 'kind' field to indicate roughly where the
436 ExeContext* allocated_at; // Where they were allocated.
593 ExeContext* where; member in struct:__anon42911
680 For each client block, the stack traces where it was allocated
  /frameworks/base/core/java/android/text/
Html.java 1048 int where = text.getSpanStart(mark); local
    [all...]
TextUtils.java 689 // "if" instead of "else if" where there are interfaces
911 int where = indexOf(tb, sources[i]); local
913 if (where >= 0)
914 tb.setSpan(sources[i], where, where + sources[i].length(),
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
InboundSmsHandler.java 86 * {@link #haltedProcessMessage}, which transitions to {@link DeliveringState} state, where the message
1190 String where; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java 284 String where = BluetoothMapContract.FolderColumns.PARENT_FOLDER_ID + " = " local
287 where, null, null);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 685 * Prepares an update to the original event so it stops where the new series
832 String where = Reminders.EVENT_ID + "=?"; local
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/event/
EditEventHelperTest.java 1119 String where = Reminders.EVENT_ID + "=?"; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 111 if (TextUtils.isEmpty(args.where)) {
127 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
144 db.delete(args.table, args.where, args.args);
188 int count = db.delete(args.table, args.where, args.args);
199 int count = db.update(args.table, values, args.where, args.args);
332 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
528 // Where's version 5?
719 + "SET icon=? WHERE _id=?");
721 c = db.rawQuery("SELECT _id, icon FROM favorites WHERE iconType=" +
1281 public final String where; field in class:LauncherProvider.SqlArguments
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherProvider.java 132 if (TextUtils.isEmpty(args.where)) {
167 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
330 int count = db.delete(args.table, args.where, args.args);
345 int count = db.update(args.table, values, args.where, args.args);
574 // In the case where neither onCreate nor onUpgrade gets called, we read the maxId from
646 // "DELETE FROM favorites WHERE screen NOT IN (SELECT _id FROM workspaceScreens)
649 " WHERE " +
658 // "DELETE FROM favorites WHERE container <> -100 AND container <> -101 AND container
659 // NOT IN (SELECT _id FROM favorites WHERE itemType = 2)"
661 " WHERE "
1098 public final String where; field in class:LauncherProvider.SqlArguments
    [all...]
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java 556 final String where = MediaStore.Audio.Playlists.NAME + "=?"; local
558 Cursor cursor = query(uri, ids, where, args, null);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 195 * This class encapsulates a SQL where clause and its parameters. It makes it possible for
536 " WHERE " + Downloads.Impl._ID + " = ?",
1074 String where = Downloads.Impl.RequestHeaders.COLUMN_DOWNLOAD_ID + "=" local
    [all...]
  /system/core/adb/
commandline.cpp 2082 const char* where = DATA_DEST; local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elf32-cris.c 94 32-bit ELF) where sym=0xc0001234.
969 /* Relocate an CRIS ELF section. See elf32-fr30.c, from where this was
2224 bfd_byte *where; local
    [all...]
mmo.c 73 byte @samp{0x98} forms a command called a @samp{lopcode}, where
87 0x9801YYZZ, where @samp{Z} is 1 or 2. This is a location
101 0x9803YYZZ, where @samp{Z} is 1 or 2. Store the current location
139 where @var{n} is the @samp{YZ}-type. The flags for such a
147 length of header information in 32-bit words, where the first word
277 bfd_vma where; member in struct:mmo_data_list_struct
674 can't deduce a section, make one up as ".MMIX.sec.N", where N is an
980 bfd_vma last_vma = datap ? datap->where - 1 : 0;
983 if (! mmo_write_loc_chunk (abfd, datap->where, datap->data, datap->size,
    [all...]
vms-lib.c 751 ufile_ptr where; member in struct:vms_lib_iovec
807 return vec->where;
913 /* End of buffer. Stay where we are. */
964 if (vec->where >= vec->file_len)
998 vec->where += res;
999 vec->file_len = vec->where;
1143 vec->where += res;
1156 vec->where = 0;
1172 const void *where ATTRIBUTE_UNUSED,
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-bfin.c 597 Fixes a bug where we could not have keywords as labels. */
658 char *where = fixP->fx_frag->fr_literal + fixP->fx_where; local
669 newval = md_chars_to_number (where, 2);
671 md_number_to_chars (where, newval, 2);
683 newval = md_chars_to_number (where, 2);
685 md_number_to_chars (where, newval, 2);
698 newval = md_chars_to_number (where, 2);
700 md_number_to_chars (where, newval, 2);
721 md_number_to_chars (where - 2, value >> 16, 1);
722 md_number_to_chars (where, value, 1)
    [all...]
tc-d30v.c 592 int i, where; local
603 where = f - frag_now->fr_literal;
604 fix_new_exp (frag_now, where, fx->fix[i].size, &(fx->fix[i].exp),
621 int i, where; local
662 where = f - frag_now->fr_literal;
664 where,
944 int i, j, where; local
1106 where = (f - frag_now->fr_literal) + 4 * j;
1109 where,
1903 char *where; local
    [all...]
tc-i370.c 2458 char *where; local
    [all...]
tc-i960.c 500 expressionS *expP) /* Where to put the results of parsing. */
537 Return pointer to where it was placed. */
542 char *toP; /* Where to output it. */
572 char *outP; /* Where instruction binary is output to. */
648 mema_to_memb (char * opcodeP) /* Where to find the opcode, in target byte order. */
715 parse_regop (struct regop *regopP, /* Where to put description of register operand. */
876 parse_memop (memS *memP, /* Where to put the results. */
1069 char *outP; /* Where the binary was output to. */
2293 char *where; local
    [all...]
tc-ia64.h 293 } where; member in struct:unw_x_record

Completed in 684 milliseconds

1 2 3 4 5 6 78 91011>>