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

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/android/webkit/
WebIconDatabase.java 152 String where = (String) map.get("where"); local
159 where, null, null);
197 * @param path The directory path where the icon database will be stored.
244 public void bulkRequestIconForPageUrl(ContentResolver cr, String where,
258 map.put("where", where);
  /frameworks/base/include/utils/
TypeHelpers.h 151 void splat_type(TYPE* where, const TYPE* what, size_t n) {
154 new(where) TYPE(*what);
155 where++;
159 *where++ = *what;
  /frameworks/compile/libbcc/runtime/make/
lib_info.mk 14 # AvailableIn.<function> - The list of subdir keys where 'function' is
41 # Compute lists of where each function is available.
  /system/core/libpixelflinger/tinyutils/
TypeHelpers.h 151 void splat_type(TYPE* where, const TYPE* what, size_t n) {
154 new(where) TYPE(*what);
155 where++;
159 *where++ = *what;
  /external/dbus/dbus/
dbus-auth-script.c 508 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/harfbuzz/src/
harfbuzz-khmer.c 122 // they are also used to know where a character should be placed (location in reference to the base character)
560 hb_uint32 where[16]; local
562 where[i] = ~(PreSubstProperty
569 where[i] &= ~PreFormProperty;
571 where[i] &= ~BelowFormProperty;
573 where[i] &= ~AboveFormProperty;
575 where[i] &= ~PostFormProperty;
578 HB_OpenTypeShape(item, where);
harfbuzz-myanmar.c 177 with virama where virama should treat as start of next syllable
427 hb_uint32 where[32]; local
430 where[i] = ~(PreSubstProperty
437 where[i] &= ~PreFormProperty;
439 where[i] &= ~BelowFormProperty;
441 where[i] &= ~AboveFormProperty;
443 where[i] &= ~PostFormProperty;
446 HB_OpenTypeShape(item, where);
  /external/icu4c/common/
rbbisetb.cpp 327 void RBBISetBuilder::serializeTrie(uint8_t *where) {
329 where, // Buffer
633 void RangeDescriptor::split(UChar32 where, UErrorCode &status) {
634 U_ASSERT(where>fStartChar && where<=fEndChar);
646 nr->fStartChar = where;
647 this->fEndChar = where-1;
triedict.cpp 266 StackBranch where = (StackBranch) fBranchStack.peeki(); local
271 switch (where) {
276 where = (StackBranch) fBranchStack.push(kLessThan, status);
292 where = (StackBranch) fBranchStack.push(kLessThan, status);
308 where = (StackBranch) fBranchStack.push(kLessThan, status);
315 where = (StackBranch) fBranchStack.peeki();
547 UVector32 fIndexStack; // Stack of where in node we are
599 int where = fIndexStack.peeki(); local
608 where = fIndexStack.peeki();
613 if (where == 0)
    [all...]
  /external/netperf/
netsh.c 121 /* stuff to say where this test is going */
125 char test_port[PORTBUFSIZE]; /* where is the test waiting */
359 fprintf(where,
377 fprintf(where,
380 fprintf(where,
382 fflush(where);
392 /* stuff to say where this test is going */
396 strncpy(test_port,"12865",PORTBUFSIZE); /* where is the test waiting */
711 generations of netperf where having a single value did not
748 fprintf(where,
    [all...]
  /packages/apps/Phone/src/com/android/phone/
BluetoothAtPhonebook.java 321 String where; local
326 where = VISIBLE_PHONEBOOK_WHERE;
328 where = OUTGOING_CALL_WHERE;
330 where = INCOMING_CALL_WHERE;
332 where = MISSED_CALL_WHERE;
344 Calls.CONTENT_URI, CALLS_PROJECTION, where, null,
353 where, null, Phone.NUMBER + " LIMIT " + MAX_PHONEBOOK_SIZE);
  /external/e2fsprogs/debugfs/
logdump.c 48 enum journal_location where; member in struct:journal_source
92 journal_source.where = JOURNAL_IS_INTERNAL;
200 journal_source.where = JOURNAL_IS_EXTERNAL;
227 journal_source.where = JOURNAL_IS_INTERNAL;
250 journal_source.where = JOURNAL_IS_EXTERNAL;
256 if (journal_source.where == JOURNAL_IS_INTERNAL)
279 if (source->where == JOURNAL_IS_EXTERNAL) {
562 static void show_indirect(FILE *out_file, const char *name, __u32 where)
564 if (where)
565 fprintf(out_file, "(%s): %u ", name, where);
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 58 // where clause for restricting queries to files in mSubDirectories
60 // where arguments for restricting queries to files in mSubDirectories
136 // Compute "where" string for restricting queries to subdirectories
150 // Compute "where" arguments for restricting queries to subdirectories
341 String where; local
350 where = null;
357 where = PARENT_WHERE;
364 where = FORMAT_WHERE;
371 where = FORMAT_PARENT_WHERE;
382 where = STORAGE_WHERE
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 305 public int delete(Uri uri, String where, String[] whereArgs) {
313 // If URI is main table, delete uses incoming where clause and args.
314 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
318 // incoming data, but modifies the where clause to restrict it to the
324 MainTable._ID + " = " + ContentUris.parseId(uri), where);
341 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) {
348 // If URI is main table, update uses incoming where clause and args.
349 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
356 MainTable._ID + " = " + ContentUris.parseId(uri), where);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderThrottleSupport.java 306 public int delete(Uri uri, String where, String[] whereArgs) {
314 // If URI is main table, delete uses incoming where clause and args.
315 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
319 // incoming data, but modifies the where clause to restrict it to the
325 MainTable._ID + " = " + ContentUris.parseId(uri), where);
342 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) {
349 // If URI is main table, update uses incoming where clause and args.
350 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
357 MainTable._ID + " = " + ContentUris.parseId(uri), where);
  /external/openssl/apps/
s_cb.c 305 void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret)
310 w=where& ~SSL_ST_MASK;
316 if (where & SSL_CB_LOOP)
320 else if (where & SSL_CB_ALERT)
322 str=(where & SSL_CB_READ)?"read":"write";
328 else if (where & SSL_CB_EXIT)
  /external/javassist/src/main/javassist/expr/
NewExpr.java 58 public CtBehavior where() { return super.where(); } method in class:NewExpr
  /external/libpng/
Android.mk 29 # Case where we're building windows but not under linux (so it must be cygwin)
  /external/v8/test/mjsunit/
constant-folding.js 43 assertTrue(y++ === 3, "y++ === 3, where y = \"3\"");
45 assertEquals(y++, 3, "y++ == 3, where y = 3");
47 assertTrue(y++ === 7.1, "y++ === 7.1, where y = \"7.1\"");
196 // We generate different code for the case where the operand is a constant.
  /external/valgrind/main/memcheck/tests/darwin/
aio.stderr.exp 22 Use --track-origins=yes to see where uninitialised values come from
  /external/webkit/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/
cells.js 1 description('Test behavior of the HTMLTableRowElement cells attribute in cases where there is unusual nesting.');
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 130 public int update(Uri url, ContentValues values, String where, String[] whereArgs) {
159 public int delete(Uri url, String where, String[] whereArgs) {
  /frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProvider.java 136 String sql = "SELECT _blob FROM data WHERE _id=" + url.getPathSegments().get(1);
163 public int update(Uri url, ContentValues values, String where, String[] whereArgs) {
173 public int delete(Uri url, String where, String[] whereArgs) {
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebug.java 38 * The info is displayed as a ListActivity, where each entry has the calendar name
99 String where = CalendarContract.Events.CALENDAR_ID + "=" + id; local
101 CalendarContract.Events.CONTENT_URI, EVENTS_PROJECTION, where,
  /external/chromium/chrome/browser/resources/shared/js/
local_strings.js 26 * Returns a formatted string where $1 to $9 are replaced by the second to the
67 * Returns a formatted localized string where $1 to $9 are replaced by the

Completed in 597 milliseconds

1 2 3 4 56 7 8 91011>>