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

1 23 4 5 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
EOF.java 28 public void apply(Switch sw) method in class:EOF
Switchable.java 7 void apply(Switch sw); method in interface:Switchable
TArgWhitespace.java 28 public void apply(Switch sw) method in class:TArgWhitespace
TCommandDelimiter.java 28 public void apply(Switch sw) method in class:TCommandDelimiter
TComment.java 28 public void apply(Switch sw) method in class:TComment
TCsClose.java 28 public void apply(Switch sw) method in class:TCsClose
TCsOpen.java 28 public void apply(Switch sw) method in class:TCsOpen
TData.java 28 public void apply(Switch sw) method in class:TData
TDecNumber.java 28 public void apply(Switch sw) method in class:TDecNumber
TElseIf.java 28 public void apply(Switch sw) method in class:TElseIf
THardDelimiter.java 28 public void apply(Switch sw) method in class:THardDelimiter
THexNumber.java 28 public void apply(Switch sw) method in class:THexNumber
TString.java 28 public void apply(Switch sw) method in class:TString
TWord.java 28 public void apply(Switch sw) method in class:TWord
  /external/junit/src/main/java/org/junit/rules/
ExternalResource.java 38 public Statement apply(Statement base, Description description) { method in class:ExternalResource
TestWatchman.java 46 public Statement apply(final Statement base, final FrameworkMethod method, method in class:TestWatchman
  /external/mockito/src/test/java/org/mockitoutil/
RetryRule.java 25 public Statement apply(final Statement base, final Description description) { method in class:RetryRule
26 return innerRule.apply(base, description);
38 public Statement apply(final Statement base, final Description description) { method in class:RetryRule.NumberedAttempts
SafeJUnitRule.java 30 public Statement apply(final Statement base, final FrameworkMethod method, final Object target) { method in class:SafeJUnitRule
34 testedRule.apply(base, method, target).evaluate();
  /external/skia/src/gpu/
GrFixedClip.cpp 48 bool GrFixedClip::apply(int rtWidth, int rtHeight, GrAppliedHardClip* out, SkRect* bounds) const { function in class:GrFixedClip
  /external/skqp/src/gpu/
GrFixedClip.cpp 48 bool GrFixedClip::apply(int rtWidth, int rtHeight, GrAppliedHardClip* out, SkRect* bounds) const { function in class:GrFixedClip
  /external/tensorflow/tensorflow/python/training/
moving_averages.py 242 The `apply()` method adds shadow copies of trained variables and add ops that
288 training_op = ema.apply([var0, var1])
319 The `apply()` method has to be called to create shadow variables and add
336 `apply()`.
344 def apply(self, var_list=None): member in class:ExponentialMovingAverage
360 Note that `apply()` can be called multiple times with different lists of
449 `average_name()` can be called whether or not `apply()` has been called.
  /frameworks/base/apct-tests/perftests/multiuser/src/android/multiuser/
BenchmarkResultsReporter.java 38 public Statement apply(final Statement base, final Description description) { method in class:BenchmarkResultsReporter
  /frameworks/base/media/mca/effect/java/android/media/effect/
Effect.java 50 * Apply an effect to GL textures.
52 * <p>Apply the Effect on the specified input GL texture, and write the result into the
74 public abstract void apply(int inputTexId, int width, int height, int outputTexId); method in class:Effect
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 25 * 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
  /libcore/ojluni/src/main/java/java/util/function/
Function.java 33 * whose functional method is {@link #apply(Object)}.
49 R apply(T t); method in interface:Function
59 * @param before the function to apply before this function is applied
68 return (V v) -> apply(before.apply(v));
79 * @param after the function to apply after this function is applied
88 return (T t) -> after.apply(apply(t));

Completed in 498 milliseconds

1 23 4 5 6 7 8 91011>>