Searched defs:apply (Results 1 - 25 of 63) sorted by relevance

123

/frameworks/base/core/java/android/view/textclassifier/
H A DLinksInfo.java22 * Link information that can be applied to text. See: {@link #apply(CharSequence)}.
41 boolean apply(@NonNull CharSequence text); method in interface:LinksInfo
/frameworks/base/core/java/com/android/internal/util/
H A DPredicate.java34 boolean apply(T t); method in interface:Predicate
H A DToBooleanFunction.java26 * whose functional method is {@link #apply(Object)}.
42 boolean apply(T value); method in interface:ToBooleanFunction
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);
/frameworks/base/core/java/com/google/android/util/
H A DProcedure.java27 void apply(T t); method in interface:Procedure
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DAssignableFrom.java29 public boolean apply(TestMethod testMethod) { method in class:AssignableFrom
/frameworks/ex/common/java/com/android/common/
H A DSharedPreferencesCompat.java25 * Reflection utils to call SharedPreferences$Editor.apply when possible,
26 * falling back to commit when apply isn't available.
33 sApplyMethod = cls.getMethod("apply");
39 public static void apply(SharedPreferences.Editor editor) { method in class:SharedPreferencesCompat
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
H A DPerfStatusReporter.java59 public Statement apply(Statement base, Description description) { method in class:PerfStatusReporter
/frameworks/base/test-runner/src/android/test/suitebuilder/annotation/
H A DHasAnnotation.java41 public boolean apply(TestMethod testMethod) { method in class:HasAnnotation
42 return hasMethodOrClassAnnotation.apply(testMethod);
H A DHasClassAnnotation.java38 public boolean apply(TestMethod testMethod) { method in class:HasClassAnnotation
H A DHasMethodAnnotation.java38 public boolean apply(TestMethod testMethod) { method in class:HasMethodAnnotation
/frameworks/base/media/mca/effect/java/android/media/effect/
H A DEffect.java74 public abstract void apply(int inputTexId, int width, int height, int outputTexId); method in class:Effect
H A DSizeChangeEffect.java41 public void apply(int inputTexId, int width, int height, int outputTexId) { method in class:SizeChangeEffect
H A DFilterGraphEffect.java83 public void apply(int inputTexId, int width, int height, int outputTexId) { method in class:FilterGraphEffect
H A DSingleFilterEffect.java67 public void apply(int inputTexId, int width, int height, int outputTexId) { method in class:SingleFilterEffect
/frameworks/base/media/mca/effect/java/android/media/effect/effects/
H A DIdentityEffect.java34 public void apply(int inputTexId, int width, int height, int outputTexId) { method in class:IdentityEffect
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/leak/
H A DReferenceTestUtils.java54 while (!p.apply()) {
63 boolean apply(); method in interface:ReferenceTestUtils.Condition
/frameworks/support/compat/java/android/support/v4/content/
H A DSharedPreferencesCompat.java32 public void apply(@NonNull SharedPreferences.Editor editor) { method in class:SharedPreferencesCompat.EditorCompat.Helper
34 editor.apply();
38 // an apply method.
57 public void apply(@NonNull SharedPreferences.Editor editor) { method in class:SharedPreferencesCompat.EditorCompat
59 // of getInstance().apply() calls. Otherwise this method could (and should)
61 mHelper.apply(editor);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/recyclerview/test/
H A DSameActivityTestRule.java38 public Statement apply(final Statement base, Description description) { method in class:SameActivityTestRule
/frameworks/support/wear/tests/src/android/support/wear/widget/util/
H A DWakeLockRule.java37 public Statement apply(final Statement statement, Description description) { method in class:WakeLockRule
/frameworks/base/core/java/android/text/style/
H A DStyleSpan.java83 apply(ds, mStyle);
88 apply(paint, mStyle);
91 private static void apply(Paint paint, int style) { method in class:StyleSpan
H A DTypefaceSpan.java75 apply(ds, mFamily);
80 apply(paint, mFamily);
83 private static void apply(Paint paint, String family) { method in class:TypefaceSpan
H A DLocaleSpan.java118 apply(ds, mLocales);
123 apply(paint, mLocales);
126 private static void apply(@NonNull Paint paint, @NonNull LocaleList locales) { method in class:LocaleSpan
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackScrollState.java101 public void apply() { method in class:StackScrollState
/frameworks/base/libs/hwui/
H A DDeferredLayerUpdater.cpp74 void DeferredLayerUpdater::apply() { function in class:android::uirenderer::DeferredLayerUpdater
90 "apply surfaceTexture with non GL backend %x, GL %x, VK %x",

Completed in 5408 milliseconds

123