HomeSort by relevance Sort by last modified time
    Searched defs:apply (Results 76 - 100 of 2090) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Camera2/src/com/android/camera/one/
FlashSetting.java 32 public OneCamera.PhotoCaptureParameters.Flash apply(String settingString) { method in class:FlashSetting.FlashStringToEnum
  /packages/apps/Launcher3/src/com/android/launcher3/util/
FlagOp.java 9 public int apply(int flags) { method in class:FlagOp
16 public int apply(int flags) {
25 public int apply(int flags) {
  /packages/apps/Launcher3/tests/src/com/android/launcher3/util/rule/
LauncherActivityRule.java 42 public Statement apply(Statement base, Description description) { method in class:LauncherActivityRule
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Function.java 50 T apply(F from); method in interface:Function
57 * that either {@code function1.apply(o)} and {@code function2.apply(o)} are
58 * both null, or {@code function1.apply(o).equals(function2.apply(o))}.
Predicate.java 44 boolean apply(T input); method in interface:Predicate
51 * implies that either {@code predicate1.apply(input)} and
52 * {@code predicate2.apply(input)} are both {@code true} or both
  /platform_testing/libraries/longevity/src/android/longevity/core/scheduler/
Iterate.java 34 public List<Runner> apply(Map<String, String> args, List<Runner> input) { method in class:Iterate
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
IPredicate.java 20 boolean apply(Object value); method in interface:IPredicate
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/utils/
IOExceptionFunction.java 36 @Nullable T apply(@Nullable F input) throws IOException; method in interface:IOExceptionFunction
47 return f.apply(i);
  /frameworks/base/core/java/android/service/autofill/
InternalTransformation.java 50 abstract void apply(@NonNull ValueFinder finder, @NonNull RemoteViews template, method in class:InternalTransformation
75 transformation.apply(finder, template, id);
78 Log.e(TAG, "Could not apply transformation " + transformation + ": "
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
EquivalenceTest.java 54 @Override public Integer apply(String input) { method in class:EquivalenceTest.LengthFunction
116 assertTrue(equalTo1.apply("1"));
117 assertFalse(equalTo1.apply("2"));
118 assertFalse(equalTo1.apply(null));
120 assertFalse(isNull.apply("1"));
121 assertFalse(isNull.apply("2"));
122 assertTrue(isNull.apply(null));
  /external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java 57 @Override public Integer apply(String input) { method in class:EquivalenceTest.LengthFunction
126 assertTrue(equalTo1.apply("1"));
127 assertFalse(equalTo1.apply("2"));
128 assertFalse(equalTo1.apply(null));
130 assertFalse(isNull.apply("1"));
131 assertFalse(isNull.apply("2"));
132 assertTrue(isNull.apply(null));
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
OnFailureRule.java 38 public Statement apply(Statement base, Description description) { method in class:OnFailureRule
RequiredFeatureRule.java 41 public Statement apply(Statement base, Description description) { method in class:RequiredFeatureRule
  /cts/hostsidetests/devicepolicy/app/IntentReceiver/src/com/android/cts/intent/receiver/
BroadcastIntentReceiver.java 36 editor.apply();
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AutofillLoggingTestRule.java 49 public Statement apply(Statement base, Description description) { method in class:AutofillLoggingTestRule
  /cts/tests/autofillservice/src/android/autofillservice/cts/common/
StateChangerRule.java 53 public Statement apply(Statement base, Description description) { method in class:StateChangerRule
  /cts/tests/tests/content/lib/accountaccess/src/com.android.cts.content/
FlakyTestRule.java 39 public Statement apply(Statement statement, Description description) { method in class:FlakyTestRule
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
Tracer.java 29 public Statement apply(Statement base, Description description) { method in class:Tracer
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 50 public void apply(NotificationCompat.Builder builder, method in class:PriorityPresets.SimplePriorityPreset
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 50 public void apply(NotificationCompat.Builder builder, method in class:PriorityPresets.SimplePriorityPreset
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
PriorityPresets.java 50 public void apply(NotificationCompat.Builder builder, method in class:PriorityPresets.SimplePriorityPreset
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 4 template<class T> void apply(T x, void (*f)(T)) { f(x); } // expected-note 2 {{candidate template ignored: deduced conflicting types for parameter 'T'}}\ function in namespace:test0
10 apply(0, &temp);
11 apply(0, &temp<>);
14 apply(0, &temp<int>);
17 apply(0, &temp<long>); // expected-error {{no matching function for call to 'apply'}}
25 apply(0, &over);
28 apply(0L, &over); // expected-error {{no matching function for call to 'apply'}}
35 // pick correct overload of 'over' during overload resolution for 'apply'
    [all...]
  /external/clang/test/SemaTemplate/
metafun-apply.cpp 5 struct apply { struct in struct:add_pointer
12 struct apply { struct in struct:add_reference
18 struct apply { struct in struct:bogus
25 typedef typename MetaFun::template apply<T>::type type; // expected-note{{in instantiation of template class 'add_reference::apply<void>' requested here}} \
26 // expected-error{{'apply' following the 'template' keyword does not refer to a template}}
typename-specifier-2.cpp 5 typedef typename MetaFun::template apply<T> type;
10 struct apply { struct in struct:add_pointer
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
ConcreteFunction.java 23 public Long apply(String input) { method in class:ConcreteFunction
47 @Override public T apply(String in); method in interface:ConcreteFunction.Parser
52 @Override public T apply(String in); method in interface:ConcreteFunction.SpecializedParser

Completed in 697 milliseconds

1 2 34 5 6 7 8 91011>>