Searched refs:apply (Results 151 - 175 of 828) sorted by relevance

1234567891011>>

/external/clang/unittests/Format/
H A DCleanupTest.cpp255 inline std::string apply(StringRef Code, function in class:clang::format::__anon3333::CleanUpReplacementsTest
319 EXPECT_EQ(Expected, apply(Code, Replaces));
336 EXPECT_EQ(Expected, apply(Code, Replaces));
361 EXPECT_EQ(Expected, apply(Code, Replaces));
374 EXPECT_EQ(Expected, apply(Code, Replaces));
386 EXPECT_EQ(Expected, apply(Code, Replaces));
399 EXPECT_EQ(Expected, apply(Code, Replaces));
417 EXPECT_EQ(Expected, apply(Code, Replaces));
435 EXPECT_EQ(Expected, apply(Code, Replaces));
452 EXPECT_EQ(Expected, apply(Cod
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DDescriptiveStatistics.java194 return apply(meanImpl);
204 return apply(geometricMeanImpl);
213 return apply(varianceImpl);
240 return apply(skewnessImpl);
250 return apply(kurtosisImpl);
258 return apply(maxImpl);
266 return apply(minImpl);
282 return apply(sumImpl);
291 return apply(sumsqImpl);
414 return apply(percentileImp
446 public double apply(UnivariateStatistic stat) { method in class:DescriptiveStatistics
[all...]
/external/guava/guava/src/com/google/common/base/
H A DFunctions.java52 * documented at {@link Function#apply}). For example, this function yields different results for
64 public String apply(Object o) { method in class:Functions.ToStringFunction
89 public Object apply(@Nullable Object o) { method in class:Functions.IdentityFunction
119 public V apply(@Nullable K key) { method in class:Functions.FunctionForMapNoDefault
168 public V apply(@Nullable K key) { method in class:Functions.ForMapWithDefault
196 * @param g the second function to apply
197 * @param f the first function to apply
215 public C apply(@Nullable A a) { method in class:Functions.FunctionComposition
216 return g.apply(f.apply(
257 public Boolean apply(@Nullable T t) { method in class:Functions.PredicateFunction
298 public E apply(@Nullable Object from) { method in class:Functions.ConstantFunction
341 @Override public T apply(@Nullable Object input) { method in class:Functions.SupplierFunction
[all...]
/external/clang/test/SemaTemplate/
H A Ddependent-base-member-init.cpp58 struct X0 : T::template apply<U> {
59 X0(int i) : T::template apply<U>(i) { }
/external/guava/guava/src/com/google/common/cache/
H A DForwardingLoadingCache.java30 * <p>Note that {@link #get}, {@link #getUnchecked}, and {@link #apply} all expose the same
62 public V apply(K key) { method in class:ForwardingLoadingCache
63 return delegate().apply(key);
/external/guava/guava/src/com/google/common/collect/
H A DByFunctionOrdering.java46 return ordering.compare(function.apply(left), function.apply(right));
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DInlineRewriter.java81 command.apply(this);
102 node.getCommand().apply(WHITESPACE_STRIPPER);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAOptimizedMultipleCommand.java57 public void apply(Switch sw) { method in class:AOptimizedMultipleCommand
59 commands[i].apply(sw);
/external/junit/src/main/java/org/junit/runner/manipulation/
H A DFilter.java9 * If you want to filter the tests to be run, extend <code>Filter</code> and apply an instance of
11 * {@link org.junit.runner.JUnitCore#run(Request)}. Alternatively, apply a <code>Filter</code> to
33 public void apply(Object child) throws NoTestsRemainException {
92 public void apply(Object child) throws NoTestsRemainException { method in class:Filter
/external/libmojo/mojo/public/js/
H A Dunicode.js17 return decodeURIComponent(escape(String.fromCharCode.apply(null, buffer)));
/external/selinux/libsepol/include/sepol/policydb/
H A Dsidtab.h50 int (*apply) (sepol_security_id_t sid,
55 int (*apply) (sepol_security_id_t
/external/smali/smalidea/
H A Dbuild.gradle43 apply plugin: 'java'
44 apply plugin: 'idea'
45 apply plugin: 'antlr'
93 apply plugin: 'org.jetbrains.intellij'
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
H A DSmalideaClassDef.java136 @Override public boolean apply(PsiField psiField) {
145 @Nullable @Override public Field apply(@Nullable PsiField psiField) {
154 @Override public boolean apply(PsiField psiField) {
163 @Nullable @Override public Field apply(@Nullable PsiField psiField) {
180 @Override public boolean apply(PsiMethod psiMethod) {
188 @Nullable @Override public Method apply(PsiMethod psiMethod) {
197 @Override public boolean apply(PsiMethod psiMethod) {
205 @Nullable @Override public Method apply(PsiMethod psiMethod) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.el_1.0.0.v201004212143.jar ... .commons.el.Logger pLogger public abstract double apply (double, double) public abstract long apply (long, long) public abstract ...
/external/skia/src/core/
H A DSkRecordOpts.cpp25 static bool apply(Pass* pass, SkRecord* record) { function
50 while (apply(&pass, record));
69 apply(&pass, record);
172 while (apply(&onlyDraws, record) || apply(&noDraws, record));
231 apply(&pass, record);
286 apply(&pass, record);
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DMapMakerTest.java124 public String apply(Integer key) {
149 public String apply(Integer key) {
165 public Object apply(Object from) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DFilteredMultimapTest.java38 @Override public boolean apply(Entry<String, Integer> entry) {
52 @Override public boolean apply(String key) {
68 @Override public boolean apply(Integer value) {
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DMatchFinder.java70 return predicate.apply(element);
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTransformTest.java45 public String apply(Integer input) { method in class:FuturesTransformTest.ComposeFunction
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCaseMap.java106 public <A extends Appendable> A apply( method in class:CaseMap.Lower
149 public <A extends Appendable> A apply( method in class:CaseMap.Upper
245 public <A extends Appendable> A apply( method in class:CaseMap.Title
316 public <A extends Appendable> A apply(CharSequence src, A dest, Edits edits) { method in class:CaseMap.Fold
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCaseMap.java113 public <A extends Appendable> A apply( method in class:CaseMap.Lower
159 public <A extends Appendable> A apply( method in class:CaseMap.Upper
260 public <A extends Appendable> A apply( method in class:CaseMap.Title
335 public <A extends Appendable> A apply(CharSequence src, A dest, Edits edits) { method in class:CaseMap.Fold
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DVariableTranslator.java62 csVariable.apply(this);
88 node.getParent().apply(this);
89 node.getChild().apply(this);
94 node.getParent().apply(this);
/external/junit/src/main/java/org/junit/internal/requests/
H A DFilterRequest.java25 * @param filter {@link Filter} to apply to the Tests described in
37 fFilter.apply(runner);
/external/junit/src/main/java/org/junit/rules/
H A DTestWatchman.java46 public Statement apply(final Statement base, final FrameworkMethod method, method in class:TestWatchman
/external/libvpx/libvpx/tools/
H A Dftfy.sh42 apply() { function
144 --commit) apply "${FINAL_DIFF}"; commit;;
145 --amend) apply "${FINAL_DIFF}"; amend;;
150 apply "${FINAL_DIFF}"

Completed in 920 milliseconds

1234567891011>>