Searched defs:where (Results 26 - 36 of 36) sorted by relevance

12

/frameworks/base/core/java/android/content/
H A DContentResolver.java866 maybeLogUpdateToEventLog(durationMillis, url, "insert", null /* where */);
927 maybeLogUpdateToEventLog(durationMillis, url, "bulkinsert", null /* where */);
944 * @param where A filter to apply to rows before deleting, formatted as an SQL WHERE clause
948 public final int delete(Uri url, String where, String[] selectionArgs) argument
956 int rowsDeleted = provider.delete(url, where, selectionArgs);
958 maybeLogUpdateToEventLog(durationMillis, url, "delete", where);
977 * @param where A filter to apply to rows before updating, formatted as an SQL WHERE clause
982 public final int update(Uri uri, ContentValues values, String where, argument
990 int rowsUpdated = provider.update(uri, values, where, selectionArgs);
992 maybeLogUpdateToEventLog(durationMillis, uri, "update", where);
[all...]
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java109 public char charAt(int where) { argument
111 if (where < 0) {
112 throw new IndexOutOfBoundsException("charAt: " + where + " < 0");
113 } else if (where >= len) {
114 throw new IndexOutOfBoundsException("charAt: " + where + " >= length " + len);
117 if (where >= mGapStart)
118 return mText[where + mGapLength];
120 return mText[where];
152 private void moveGapTo(int where) { argument
153 if (where
201 insert(int where, CharSequence tb, int start, int end) argument
206 insert(int where, CharSequence tb) argument
[all...]
H A DTextUtils.java606 // "if" instead of "else if" where there are interfaces
805 int where = indexOf(tb, sources[i]);
807 if (where >= 0)
808 tb.setSpan(sources[i], where, where + sources[i].length(),
1024 float avail, TruncateAt where) {
1025 return ellipsize(text, p, avail, where, false, null);
1042 float avail, TruncateAt where,
1045 return ellipsize(text, paint, avail, where, preserveLength, callback,
1047 (where
1022 ellipsize(CharSequence text, TextPaint p, float avail, TruncateAt where) argument
1040 ellipsize(CharSequence text, TextPaint paint, float avail, TruncateAt where, boolean preserveLength, EllipsizeCallback callback) argument
1063 ellipsize(CharSequence text, TextPaint paint, float avail, TruncateAt where, boolean preserveLength, EllipsizeCallback callback, TextDirectionHeuristic textDir, String ellipsis) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DGridView.java268 * @param nextTop The location where the top of the item associated with pos
330 final int where = flow ? -1 : pos - startPos;
331 child = makeAndAddView(pos, y, flow, nextLeft, selected, where);
357 * @param nextBottom The location where the bottom of the item associated
395 * @param nextTop The location where the top of the first item should be
669 * @param childrenBottom Last pixel where children can be drawn
841 * @param childrenBottom Last pixel where children can be drawn
906 * Keep selection where it was
1309 * @param childrenLeft Left edge where children should be positioned
1311 * @param where t
1314 makeAndAddView(int position, int y, boolean flow, int childrenLeft, boolean selected, int where) argument
1355 setupChild(View child, int position, int y, boolean flow, int childrenLeft, boolean selected, boolean recycled, int where) argument
[all...]
H A DListView.java314 private void removeFixedViewInfo(View v, ArrayList<FixedViewInfo> where) { argument
315 int len = where.size();
317 FixedViewInfo info = where.get(i);
319 where.remove(i);
655 * @param nextTop The location where the top of the item associated with pos
690 * @param nextBottom The location where the bottom of the item associated
722 * @param nextTop The location where the top of the first item should be
800 * @param childrenBottom Last pixel where children can be drawn
924 * @param childrenBottom Last pixel where children can be drawn
955 * Try to keep the top of the previously selected item where i
3456 findViewInHeadersOrFooters(ArrayList<FixedViewInfo> where, int id) argument
3502 findViewWithTagInHeadersOrFooters(ArrayList<FixedViewInfo> where, Object tag) argument
3550 findViewByPredicateInHeadersOrFooters(ArrayList<FixedViewInfo> where, Predicate<View> predicate, View childToSkip) argument
[all...]
H A DTextView.java236 * (Useful for devices where the fade can be expensive if overdone)
2550 * {@link URLSpan#getURL} on them to find where they link to
4278 * anti-aliased text where not all the characters are
4309 int where = getSelectionEnd();
4311 invalidateCursor(where, where, where);
5115 * lines but where it doesn't make sense to insert newlines.
6818 public void setEllipsize(TextUtils.TruncateAt where) { argument
6820 if (mEllipsize != where) {
[all...]
/frameworks/base/core/java/android/provider/
H A DMediaStore.java184 * The caller may pass an extra EXTRA_OUTPUT to control where this image will be written.
200 * where the video is written. If EXTRA_OUTPUT is not present the video will be
650 * The latitude where the image was captured.
656 * The longitude where the image was captured.
702 String where, String orderBy) {
703 return cr.query(uri, projection, where,
1834 * The latitude where the video was captured.
1840 * The longitude where the video was captured.
701 query(ContentResolver cr, Uri uri, String[] projection, String where, String orderBy) argument
H A DTelephony.java190 String where, String orderBy) {
191 return cr.query(CONTENT_URI, projection, where,
586 * be 'unassigned/0x...', where '...' is the hex value of the unassigned parameter. If
1354 String where, String orderBy) {
1356 where, null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
189 query(ContentResolver cr, String[] projection, String where, String orderBy) argument
1352 query( ContentResolver cr, String[] projection, String where, String orderBy) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java1449 // where we have decided to go to 'next' so keep track of that.
1756 // If starting in an existing task, find where that is...
2113 // we currently punt on the case where we are resetting a
2368 private final ActivityRecord moveActivityToFrontLocked(int where) { argument
2369 ActivityRecord newTop = mHistory.remove(where);
2907 int where = findActivityInHistoryLocked(r, sourceRecord.task.taskId);
2908 if (where >= 0) {
2909 ActivityRecord top = moveActivityToFrontLocked(where);
3439 // in the client where it can be constructed with a
3954 * a configuration switch where w
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp1777 "%s <p>This symbol is the offset where the {@link %s.R.attr#%s}\n"
2046 void add(const String8& rule, const String8& where);
2049 void ProguardKeepSet::add(const String8& rule, const String8& where) argument
2055 rules.editValueAt(index).add(where);
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java708 // move the surface and tell the involved window(s) where we are
1037 TAG, "Figuring out where to add app window "
1039 // Figure out where the window should go, based on the
1118 // Figure out where window should go, based on layer.
1244 // it is not -really- where input will go. So if the caller
2557 static void logSurface(WindowState w, String msg, RuntimeException where) { argument
2559 if (where != null) {
2560 Slog.i(TAG, str, where);
2566 static void logSurface(Surface s, String title, String msg, RuntimeException where) { argument
2568 if (where !
[all...]

Completed in 298 milliseconds

12