Searched defs:apply (Results 1 - 25 of 298) 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/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/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DFilter.java48 public boolean apply( T input ); method in interface:Filter
/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/webkit/support/
H A Dweb_gesture_curve_mock.cc20 bool WebGestureCurveMock::apply(double time, function in class:WebGestureCurveMock
/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/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DIdentityTransformOperation.h49 virtual bool apply(TransformationMatrix&, const FloatSize&) const function in class:WebCore::IdentityTransformOperation
H A DInterpolatedTransformOperation.cpp46 bool InterpolatedTransformOperation::apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const function in class:WebCore::InterpolatedTransformOperation
50 from.apply(borderBoxSize, fromTransform);
51 to.apply(borderBoxSize, toTransform);
H A DMatrix3DTransformOperation.h56 virtual bool apply(TransformationMatrix& transform, const FloatSize&) const function in class:WebCore::Matrix3DTransformOperation
H A DPerspectiveTransformOperation.h57 virtual bool apply(TransformationMatrix& transform, const FloatSize&) const function in class:WebCore::PerspectiveTransformOperation
H A DTransformOperations.h46 void apply(const FloatSize& sz, TransformationMatrix& t) const function in class:WebCore::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 Ddependent-type-identity.cpp13 struct apply { struct in struct:N::X2
47 void f4(typename T::template apply<U>*); // expected-note{{previous}}
48 void f4(typename U::template apply<U>*);
49 void f4(typename type::template apply<T>*);
50 void f4(typename type::template apply<U_type>*); // expected-error{{redeclar}}
52 void f5(typename T::template apply<U>::type*); // expected-note{{previous}}
53 void f5(typename U::template apply<U>::type*);
54 void f5(typename U::template apply<T>::type*);
55 void f5(typename type::template apply<T>::type*);
56 void f5(typename type::template apply<U_typ
[all...]
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}}

Completed in 499 milliseconds

1234567891011>>