Searched refs:apply (Results 1 - 25 of 101) sorted by path

12345

/frameworks/base/core/java/android/app/
H A DAlertDialog.java974 P.apply(dialog.mAlert);
H A DSharedPreferencesImpl.java277 // context.getSharedPreferences(..).edit().putString(..).apply()
358 public void apply() { method in class:SharedPreferencesImpl.EditorImpl
499 * from apply() and this is the runnable to run after
505 * them where possible to apply() ...)
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java395 content = remoteViews.apply(mContext, this, mOnClickHandler);
518 // Take requested dimensions from child, but apply default gravity.
/frameworks/base/core/java/android/content/
H A DContentProvider.java888 * @param selection A selection criteria to apply when filtering rows.
951 * @param selection A selection criteria to apply when filtering rows.
1097 * The implementation should apply the selection clause when performing
1111 * @param selection An optional restriction to apply to rows when deleting.
1703 * {@link ContentProviderOperation#apply} on each of them.
1704 * If all calls to {@link ContentProviderOperation#apply} succeed
1712 * @param operations the operations to apply
1715 * @see ContentProviderOperation#apply
1722 results[i] = operations.get(i).apply(this, results, i);
H A DContentProviderOperation.java233 public ContentProviderResult apply(ContentProvider provider, ContentProviderResult[] backRefs, method in class:ContentProviderOperation
H A DSharedPreferences.java66 * or {@link #apply}
71 * {@link #commit} or {@link #apply} are called.
85 * back once {@link #commit} or {@link #apply} is called.
98 * {@link #commit} or {@link #apply} are called.
110 * {@link #commit} or {@link #apply} are called.
122 * {@link #commit} or {@link #apply} are called.
134 * once {@link #commit} or {@link #apply} are called.
185 * using {@link #apply} instead.
199 * time, the last one to call apply wins.
202 * to persistent storage synchronously, {@link #apply}
228 void apply(); method in interface:SharedPreferences.Editor
[all...]
/frameworks/base/core/java/android/preference/
H A DPreference.java190 * Perform inflation from XML and apply a class-specific base style. This
289 * Perform inflation from XML and apply a class-specific base style. This
1403 editor.apply();
1407 // an apply method.
1821 * Hook allowing a Preference to re-apply a representation of its internal
H A DPreferenceManager.java490 editor.apply();
494 // an apply method.
535 mEditor.apply();
539 // an apply method.
/frameworks/base/core/java/android/text/style/
H A DLocaleSpan.java73 apply(ds, mLocale);
78 apply(paint, mLocale);
81 private static void apply(Paint paint, Locale locale) { method in class:LocaleSpan
H A DStyleSpan.java73 apply(ds, mStyle);
78 apply(paint, mStyle);
81 private static void apply(Paint paint, int style) { method in class:StyleSpan
H A DTypefaceSpan.java65 apply(ds, mFamily);
70 apply(paint, mFamily);
73 private static void apply(Paint paint, String family) { method in class:TypefaceSpan
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java1184 public boolean apply(View view) { method in class:AccessibilityInteractionController.AddNodeInfosForViewId
H A DGravity.java102 * {@link #apply(int, int, int, Rect, int, int, Rect)}; you must do so
109 * {@link #apply(int, int, int, Rect, int, int, Rect)}; you must do so
138 public static void apply(int gravity, int w, int h, Rect container, Rect outRect) { method in class:Gravity
139 apply(gravity, w, h, container, 0, 0, outRect);
159 public static void apply(int gravity, int w, int h, Rect container, method in class:Gravity
162 apply(absGravity, w, h, container, 0, 0, outRect);
175 * @param xAdj Offset to apply to the X axis. If gravity is LEFT this
179 * @param yAdj Offset to apply to the Y axis. If gravity is TOP this pushes
186 public static void apply(int gravity, int w, int h, Rect container, method in class:Gravity
281 * @param xAdj Offset to apply t
296 public static void apply(int gravity, int w, int h, Rect container, method in class:Gravity
[all...]
H A DView.java189 * inflated from a layout file. The second form should parse and apply
3441 * is useful to apply a specific color filter and/or blending mode and/or
3470 * <p>A hardware layer is useful to apply a specific color filter and/or
3628 * Perform inflation from XML and apply a class-specific base style from a
3649 * Perform inflation from XML and apply a class-specific base style from a
3931 // With builds < ICS, fall through and apply fading edges
4570 // Re-apply user/background padding so that scrollbar(s) get added
4940 * apply, in which case use the default View.FOCUS_DOWN.
5173 * It may not always apply, in which case use the default.
6381 * apply th
20980 public boolean apply(View view) { method in class:View.MatchIdPredicate
20989 public boolean apply(View view) { method in class:View.MatchLabelForPredicate
[all...]
H A DViewGroup.java137 * apply on the child being drawn.
1900 * transformations that apply to the child.
3665 if (predicate.apply(this)) {
5309 // apply recursively
H A DViewRootImpl.java975 // Note: don't apply scroll offset, because we want to know its
2784 // within the visible part of the window and, if not, apply
3544 apply(q, onProcess(q));
3569 protected void apply(QueuedInputEvent q, int result) { method in class:ViewRootImpl.InputStage
3733 protected void apply(QueuedInputEvent q, int result) { method in class:ViewRootImpl.AsyncInputStage
3737 super.apply(q, result);
4341 * The maximum amount of acceleration we will apply.
4348 * and thus apply an acceleration.
4485 // on how quickly the wheel is being turned, to apply
/frameworks/base/core/java/android/widget/
H A DFrameLayout.java321 * mutate the drawable and apply the specified tint and tint mode using
324 * @param tint the tint to apply, may be {@code null} to clear tint
348 * Specifies the blending mode used to apply the tint specified by
352 * @param tintMode the blending mode used to apply the tint, may be
366 * @return the blending mode used to apply the tint to the foreground
618 Gravity.apply(mForegroundGravity, foreground.getIntrinsicWidth(),
728 * The gravity to apply with the View to which these layout parameters
H A DRelativeLayout.java608 Gravity.apply(mGravity, right - left, bottom - top, selfBounds, contentBounds,
H A DRemoteViews.java238 public abstract void apply(View root, ViewGroup rootParent, method in class:RemoteViews.Action
346 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetEmptyView
381 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { method in class:RemoteViews.SetOnClickFillInIntent
456 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { method in class:RemoteViews.SetPendingIntentTemplate
552 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetRemoteViewsAdapterList
615 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetRemoteViewsAdapterIntent
688 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { method in class:RemoteViews.SetOnClickPendingIntent
852 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetDrawableParameters
914 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.ReflectionActionWithoutParams
1032 public void apply(Vie method in class:RemoteViews.BitmapReflectionAction
1270 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.ReflectionAction
1351 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.ViewGroupAction
1425 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.TextViewDrawableAction
1469 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.TextViewSizeAction
1515 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.ViewPaddingAction
1571 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.TextViewDrawableColorFilterAction
2583 public View apply(Context context, ViewGroup parent) { method in class:RemoteViews
2588 public View apply(Context context, ViewGroup parent, OnClickHandler handler) { method in class:RemoteViews
[all...]
H A DRemoteViewsAdapter.java305 addView(view.apply(getContext(), this, handler));
307 Log.e(TAG, "Failed to apply RemoteViews.");
476 View loadingView = mUserLoadingView.apply(parent.getContext(), parent,
492 View firstView = mFirstView.apply(parent.getContext(), parent, handler);
1190 View newView = rv.apply(context, parent, mRemoteViewsOnClickHandler);
H A DRemoteViewsListAdapter.java95 v = rv.apply(mContext, parent);
/frameworks/base/core/java/com/android/internal/app/
H A DAlertActivity.java91 mAlertParams.apply(mAlert);
H A DAlertController.java948 public void apply(AlertController dialog) { method in class:AlertController.AlertParams
/frameworks/base/core/java/com/android/internal/util/
H A DPredicate.java31 boolean apply(T t); method in interface:Predicate
H A DPredicates.java87 public boolean apply(T t) { method in class:Predicates.AndPredicate
89 if (!predicate.apply(t)) {
104 public boolean apply(T t) { method in class:Predicates.OrPredicate
106 if (predicate.apply(t)) {
121 public boolean apply(T t) { method in class:Predicates.NotPredicate
122 return !predicate.apply(t);

Completed in 363 milliseconds

12345