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

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1592.js31 apply: function(a, b) {}
35 f.apply(this, arguments);
/external/clang/test/CXX/temp/temp.names/
H A Dp4.cpp6 struct apply { struct in struct:meta
12 void f(typename T::template apply<U>::type);
/external/junit/src/org/junit/rules/
H A DTestRule.java53 Statement apply(Statement base, Description description); method in interface:TestRule
H A DExternalResource.java36 public Statement apply(Statement base, Description description) { method in class:ExternalResource
H A DMethodRule.java39 Statement apply(Statement base, FrameworkMethod method, Object target); method in interface:MethodRule
H A DTimeout.java46 public Statement apply(Statement base, Description description) { method in class:Timeout
H A DVerifier.java29 public Statement apply(final Statement base, Description description) { method in class:Verifier
/external/chromium_org/v8/test/webkit/
H A Dfunction-apply-aliased.js25 "This tests that we can correctly call Function.prototype.apply"
28 var myObject = { apply: function() { return [myObject, "myObject.apply"] } };
38 return f.apply(thisValue, arguments);
40 return g.apply(null, args);
43 recurseArguments.apply(null, arguments);
46 myFunctionWithApply.apply = function (arg1) { return [this, "myFunctionWithApply.apply", arg1] };
47 Function.prototype.aliasedApply = Function.prototype.apply;
50 shouldBe("myObject.apply()", '[myObjec
[all...]
/external/chromium_org/content/test/
H A Dweb_gesture_curve_mock.cc20 bool WebGestureCurveMock::apply(double time, function in class:WebGestureCurveMock
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dftfy.sh42 apply() { function
145 --commit) apply "${FINAL_DIFF}"; commit;;
146 --amend) apply "${FINAL_DIFF}"; amend;;
151 apply "${FINAL_DIFF}"
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DPredicate.java37 boolean apply(T input); method in interface:Predicate
/external/guava/guava/src/com/google/common/base/
H A DFunction.java38 * Objects.equal}{@code (a, b)} implies that {@code Objects.equal(function.apply(a),
39 * function.apply(b))}.
45 T apply(@Nullable F input); method in interface:Function
53 * <i>typically</i> means that {@code Objects.equal(this.apply(f), that.apply(f))} is true for all
H A DPredicate.java38 * Objects.equal}{@code (a, b)} implies that {@code predicate.apply(a) ==
39 * predicate.apply(b))}.
45 boolean apply(@Nullable T input); method in interface:Predicate
53 * <i>typically</i> means that {@code this.apply(t) == that.apply(t)} for all {@code t} of type
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAsyncFunction.java40 ListenableFuture<O> apply(I input) throws Exception; method in interface:AsyncFunction
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTemplateSyntaxTree.java39 public void apply(Switch sw) { method in class:TemplateSyntaxTree
40 root.apply(sw);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DSwitchable.java7 void apply(Switch sw); method in interface:Switchable
/external/libvpx/libvpx/tools/
H A Dftfy.sh42 apply() { function
146 --commit) apply "${FINAL_DIFF}"; commit;;
147 --amend) apply "${FINAL_DIFF}"; amend;;
152 apply "${FINAL_DIFF}"
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DStandardUrlAttributePolicy.java43 public String apply(String elementName, String attributeName, String s) { method in class:StandardUrlAttributePolicy
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDefaultStyleInterpolation.h20 virtual void apply(StyleResolverState& state) const function in class:blink::DefaultStyleInterpolation
H A DDeferredLegacyStyleInterpolation.cpp21 void DeferredLegacyStyleInterpolation::apply(StyleResolverState& state) const function in class:blink::DeferredLegacyStyleInterpolation
28 innerInterpolation->apply(state);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DInterpolatedTransformOperation.cpp46 void InterpolatedTransformOperation::apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const function in class:blink::InterpolatedTransformOperation
50 from.apply(borderBoxSize, fromTransform);
51 to.apply(borderBoxSize, toTransform);
H A DTransformOperations.h46 void apply(const FloatSize& sz, TransformationMatrix& t) const function in class:blink::TransformOperations
49 m_operations[i]->apply(t, sz);
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp6.cpp4 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/
H A Dmetafun-apply.cpp5 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}}
H A Dtypename-specifier-2.cpp5 typedef typename MetaFun::template apply<T> type;
10 struct apply { struct in struct:add_pointer

Completed in 925 milliseconds

1234567891011>>