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

12

/frameworks/native/services/surfaceflinger/
H A DSurfaceTracing.cpp59 void SurfaceTracing::traceLayers(const char* where, LayersProto layers) { argument
64 entry->set_where(where);
/frameworks/base/core/java/android/webkit/
H A DWebIconDatabase.java54 * @param path The directory path where the icon database will be stored.
79 public abstract void bulkRequestIconForPageUrl(ContentResolver cr, String where, argument
/frameworks/base/core/java/android/database/sqlite/
H A DSqliteWrapper.java77 ContentValues values, String where, String[] selectionArgs) {
79 return resolver.update(uri, values, where, selectionArgs);
88 String where, String[] selectionArgs) {
90 return resolver.delete(uri, where, selectionArgs);
76 update(Context context, ContentResolver resolver, Uri uri, ContentValues values, String where, String[] selectionArgs) argument
87 delete(Context context, ContentResolver resolver, Uri uri, String where, String[] selectionArgs) argument
H A DSQLiteQueryBuilder.java183 * @param where A filter declaring which rows to return, formatted as an SQL
202 boolean distinct, String tables, String[] columns, String where,
225 appendClause(query, " WHERE ", where);
438 StringBuilder where = new StringBuilder();
442 where.append(mWhereClause.toString());
443 where.append(')');
449 where.append(" AND ");
452 where.append('(');
453 where.append(selection);
454 where
201 buildQueryString( boolean distinct, String tables, String[] columns, String where, String groupBy, String having, String orderBy, String limit) argument
[all...]
/frameworks/base/core/java/android/text/
H A DEditable.java46 * cursor position is preserved even when the entire range where it is located
61 * Convenience for replace(where, where, text, start, end)
64 public Editable insert(int where, CharSequence text, int start, int end); argument
67 * Convenience for replace(where, where, text, 0, text.length());
70 public Editable insert(int where, CharSequence text); argument
H A DPackedObjectVector.java128 moveRowGapTo(int where) argument
130 if (where == mRowGapStart)
133 if (where > mRowGapStart)
135 int moving = where + mRowGapLength - (mRowGapStart + mRowGapLength);
149 else /* where < mRowGapStart */
151 int moving = mRowGapStart - where;
153 for (int i = where + moving - 1; i >= where; i--)
155 int destrow = i - where + mRowGapStart + mRowGapLength - moving;
166 mRowGapStart = where;
[all...]
H A DPackedIntVector.java295 private final void moveValueGapTo(int column, int where) { argument
300 if (where == valuegap[column]) {
302 } else if (where > valuegap[column]) {
303 for (int i = valuegap[column]; i < where; i++) {
306 } else /* where < valuegap[column] */ {
307 for (int i = where; i < valuegap[column]; i++) {
312 valuegap[column] = where;
318 private final void moveRowGapTo(int where) { argument
319 if (where == mRowGapStart) {
321 } else if (where > mRowGapStar
[all...]
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java97 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
107 public int delete(Uri url, String where, String[] whereArgs) { argument
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DSqliteWrapper.java89 ContentValues values, String where, String[] selectionArgs) {
91 return resolver.update(uri, values, where, selectionArgs);
100 String where, String[] selectionArgs) {
102 return resolver.delete(uri, where, selectionArgs);
88 update(Context context, ContentResolver resolver, Uri uri, ContentValues values, String where, String[] selectionArgs) argument
99 delete(Context context, ContentResolver resolver, Uri uri, String where, String[] selectionArgs) argument
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java163 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
173 public int delete(Uri url, String where, String[] whereArgs) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationPresenter.java81 * @param where which view caused this wake up request
83 void wakeUpIfDozing(long time, View where); argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowTracing.java191 void traceStateLocked(String where, WindowManagerService service) { argument
198 os.write(WHERE, where);
H A DWindowSurfaceController.java75 // Surface flinger doesn't support crop rectangles where width or height is non-positive.
76 // However, we need to somehow handle the situation where the cropping would completely hide
117 private void logSurface(String msg, RuntimeException where) { argument
119 if (where != null) {
120 Slog.i(TAG, str, where);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityTestsBase.java87 public void activityFinished(int resultCode, Intent data, RuntimeException where) { argument
88 finishWithResult(resultCode, data, where);
113 RuntimeException where = new RuntimeException("Original error was here");
114 where.fillInStackTrace();
115 finishWithResult(resultCode, data, where);
118 public void finishWithResult(int resultCode, Intent data, RuntimeException where) { argument
123 mResultStack = where;
H A DLocalProvider.java154 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
183 public int delete(Uri url, String where, String[] whereArgs) { argument
H A DLaunchpadActivity.java70 RuntimeException where);
377 private void checkLifecycle(String where) { argument
381 finishBad("Activity lifecycle incorrect: received " + where
386 if (!mExpectedLifecycle[mNextLifecycle].equals(where)) {
387 finishBad("Activity lifecycle incorrect: received " + where
402 if (where.equals(ON_DESTROY)) {
403 finishBad("Activity lifecycle incorrect: received " + where
69 activityFinished(int resultCode, Intent data, RuntimeException where) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java258 public int delete(Uri url, String where, String[] whereArgs) { argument
291 // parse where clause
297 String[] tokens = where.split("AND");
339 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
/frameworks/rs/cpp/util/
H A DTypeHelpers.h163 void splat_type(TYPE* where, const TYPE* what, size_t n) { argument
166 new(where) TYPE(*what);
167 where++;
171 *where++ = *what;
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java56 * 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"
97 + " value:s:newer_value --where \"name=\'new_setting\'\"\n"
100 + " [--bind <BINDING>...] [--where <WHER
518 DeleteCommand(Uri uri, int userId, String where) argument
610 QueryCommand( Uri uri, int userId, String[] projection, String where, String sortOrder) argument
675 UpdateCommand(Uri uri, int userId, ContentValues contentValues, String where) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DBrowser.java415 * @param where Clause to be used to limit the query from the database.
421 public static final void requestAllIcons(ContentResolver cr, String where, argument
/frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/
H A DSpannableBuilder.java318 public SpannableStringBuilder insert(int where, CharSequence tb) { argument
319 super.insert(where, tb);
324 public SpannableStringBuilder insert(int where, CharSequence tb, int start, int end) { argument
325 super.insert(where, tb, start, end);
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java308 public int delete(Uri uri, String where, String[] whereArgs) { argument
316 // If URI is main table, delete uses incoming where clause and args.
317 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
321 // incoming data, but modifies the where clause to restrict it to the
327 MainTable._ID + " = " + ContentUris.parseId(uri), where);
344 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { argument
351 // If URI is main table, update uses incoming where clause and args.
352 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
359 MainTable._ID + " = " + ContentUris.parseId(uri), where);
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java308 public int delete(Uri uri, String where, String[] whereArgs) { argument
316 // If URI is main table, delete uses incoming where clause and args.
317 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
321 // incoming data, but modifies the where clause to restrict it to the
327 MainTable._ID + " = " + ContentUris.parseId(uri), where);
344 public int update(Uri uri, ContentValues values, String where, String[] whereArgs) { argument
351 // If URI is main table, update uses incoming where clause and args.
352 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
359 MainTable._ID + " = " + ContentUris.parseId(uri), where);
/frameworks/native/libs/ui/
H A DRegion.cpp279 size_t where = mStorage.size() - 1; local
280 mStorage.insertAt(rect, where, 1);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DDcTrackerTest.java408 public int update(Uri url, ContentValues values, String where, String[] whereArgs) { argument
630 // Test the scenario where the first data call setup is failed, and then retry the setup later.

Completed in 430 milliseconds

12