Searched defs:apply (Results 26 - 50 of 54) sorted by relevance

123

/frameworks/base/media/java/android/media/
H A DMediaMetadataEditor.java79 public abstract void apply(); method in class:MediaMetadataEditor
187 * Note that none of the information added after {@link #apply()} has been called,
221 * Note that none of the information added after {@link #apply()} has been called
274 * Note that none of the information added after {@link #apply()} has been called
H A DRemoteController.java201 * An application may call {@link #setSynchronizationMode(int)} to apply
429 public synchronized void apply() { method in class:RemoteController.MetadataEditor
H A DRemoteControlClient.java407 * has been set, use {@link #apply()} to make it the new metadata that should be displayed
437 * Note that none of the information added after {@link #apply()} has been called,
473 * Note that none of the information added after {@link #apply()} has been called,
557 public synchronized void apply() { method in class:RemoteControlClient.MetadataEditor
559 Log.e(TAG, "Can't apply a previously applied MetadataEditor");
876 * This is re-initialized in apply() and so cannot be final.
917 * Cache for metadata using Session APIs. This is re-initialized in apply().
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputController.java53 apply(entry);
61 apply(entry);
76 private void apply(NotificationData.Entry entry) { method in class:RemoteInputController
H A DFlingAnimationUtils.java65 * @param animator the animator to apply
70 public void apply(Animator animator, float currValue, float endValue, float velocity) { method in class:FlingAnimationUtils
71 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
78 * @param animator the animator to apply
83 public void apply(ViewPropertyAnimator animator, float currValue, float endValue, method in class:FlingAnimationUtils
85 apply(animator, currValue, endValue, velocity, Math.abs(endValue - currValue));
92 * @param animator the animator to apply
99 public void apply(Animator animator, float currValue, float endValue, float velocity, method in class:FlingAnimationUtils
111 * @param animator the animator to apply
118 public void apply(ViewPropertyAnimato method in class:FlingAnimationUtils
[all...]
H A DNotificationHeaderUtil.java61 public void apply(View view, boolean apply) {
67 applyToChild(icon, apply, header.getOriginalIconColor());
68 applyToChild(expand, apply, header.getOriginalNotificationColor());
156 mComparators.get(compI).apply(row);
232 mComparators.get(compI).apply(row, true /* reset */);
280 public void apply(ExpandableNotificationRow row) { method in class:NotificationHeaderUtil.HeaderProcessor
281 apply(row, false /* reset */);
284 public void apply(ExpandableNotificationRow row, boolean reset) { method in class:NotificationHeaderUtil.HeaderProcessor
285 boolean apply
295 applyToView(boolean apply, View parent) argument
363 apply(View view, boolean apply) argument
369 apply(View view, boolean apply) argument
[all...]
H A DSignalClusterView.java194 * dynamic. As such, they need to be scaled each time the icon changes in {@link #apply()}.
222 apply();
252 apply();
264 apply();
282 apply();
291 apply();
297 apply();
365 apply();
426 apply();
435 private void apply() { method in class:SignalClusterView
593 public boolean apply(boolean isSecondaryIcon) { method in class:SignalClusterView.PhoneState
[all...]
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DDisplayModifier.java489 public static void apply(Paint paint, Canvas canvas) { method in class:DisplayModifier
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp45 /// @param pFragRef [in] the place to apply the relocation
96 void Relocation::apply(Relocator& pRelocator) { function in class:mcld::Relocation
/frameworks/volley/src/main/java/com/android/volley/
H A DRequestQueue.java189 public boolean apply(Request<?> request); method in interface:RequestQueue.RequestFilter
199 if (filter.apply(request)) {
216 public boolean apply(Request<?> request) {
/frameworks/base/core/java/android/view/
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 DAccessibilityInteractionController.java1236 public boolean apply(View view) { method in class:AccessibilityInteractionController.AddNodeInfosForViewId
/frameworks/base/libs/hwui/
H A DSkiaShader.cpp117 // Store / apply
195 // since this assignment of slots is done at store, not apply time
391 void SkiaShader::apply(Caches& caches, const SkiaShaderData& data) { function in class:android::uirenderer::SkiaShader
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DAnimationProps.java106 * manually apply the individual animation properties for each of the animators respectively.
121 public <T extends ValueAnimator> T apply(@PropType int propertyType, T animator) { method in class:AnimationProps
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestGrouping.java172 if (predicate.apply(item)) {
215 public boolean apply(Class aClass) { method in class:TestGrouping.TestCasePredicate
249 public boolean apply(Method method) { method in class:TestGrouping.TestMethodPredicate
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDexExtractor.java236 /* SharedPreferences.Editor doc says that apply() and commit() "atomically performs the
241 apply(edit);
353 sApplyMethod = cls.getMethod("apply");
359 private static void apply(SharedPreferences.Editor editor) { method in class:MultiDexExtractor
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java280 // context.getSharedPreferences(..).edit().putString(..).apply()
361 public void apply() { method in class:SharedPreferencesImpl.EditorImpl
502 * from apply() and this is the runnable to run after
508 * them where possible to apply() ...)
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java295 public ContentProviderResult apply(ContentProvider provider, ContentProviderResult[] backRefs, method in class:ContentProviderOperation
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarWindowManager.java185 private void apply(State state) { method in class:StatusBarWindowManager
229 apply(mCurrentState);
234 apply(mCurrentState);
239 apply(mCurrentState);
245 apply(mCurrentState);
250 apply(mCurrentState);
255 apply(mCurrentState);
260 apply(mCurrentState);
265 apply(mCurrentState);
270 apply(mCurrentStat
[all...]
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java322 apply(items, mUpdateOps);
330 apply(clones, rewritten);
381 private void apply(List<Item> items, List<UpdateOp> updateOps) { method in class:OpReorderTest
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java979 public void apply(AlertController dialog) { method in class:AlertController.AlertParams
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java822 public void apply(AlertController dialog) { method in class:AlertController.AlertParams
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java280 public abstract void apply(View root, ViewGroup rootParent, method in class:RemoteViews.Action
343 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { }
418 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetEmptyView
453 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { method in class:RemoteViews.SetOnClickFillInIntent
535 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { method in class:RemoteViews.SetPendingIntentTemplate
631 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetRemoteViewsAdapterList
694 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetRemoteViewsAdapterIntent
767 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) { method in class:RemoteViews.SetOnClickPendingIntent
961 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetDrawableParameters
1023 public void apply(Vie method in class:RemoteViews.ReflectionActionWithoutParams
1148 public void apply(View root, ViewGroup rootParent, method in class:RemoteViews.BitmapReflectionAction
1400 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.ReflectionAction
1476 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.RunnableAction
1528 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.ViewGroupAction
1695 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.TextViewDrawableAction
1790 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.TextViewSizeAction
1836 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.ViewPaddingAction
1887 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.LayoutParamAction
1978 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.TextViewDrawableColorFilterAction
2028 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) { method in class:RemoteViews.SetRemoteInputsAction
3154 public View apply(Context context, ViewGroup parent) { method in class:RemoteViews
3159 public View apply(Context context, ViewGroup parent, OnClickHandler handler) { method in class:RemoteViews
[all...]
/frameworks/data-binding/internal-prebuilts/com/android/databinding/localizemaven/1.1/
H A Dlocalizemaven-1.1.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/ExportLicensesTask$__clinit__closure1.class ...

Completed in 1169 milliseconds

123