/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/ |
15.3.4.3-1.js | 38 * SUMMARY: ECMA conformance of Function.prototype.apply 40 * Function.prototype.apply(thisArg, argArray) 47 var summary = 'Testing ECMA conformance of Function.prototype.apply'; 74 * Function.prototype.apply.length should return 2 77 actual = Function.prototype.apply.length; 83 * When |thisArg| is not provided to the apply() method, the 87 actual = F0.apply(); 93 * If |argArray| is not provided to the apply() method, the 97 actual = F0.apply(""); 102 actual = F0.apply(true) [all...] |
/external/clang/test/SemaTemplate/ |
dependent-type-identity.cpp | 13 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_type>::type*); // expected-error{{redeclar} [all...] |
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}}
|
instantiate-template-template-parm.cpp | 3 struct apply { struct 18 apply<add_pointer, int>::type ip = &i; 19 apply<add_reference, int>::type ir = i; 20 apply<add_reference, float>::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot bind to a value of unrelated type 'int'}} 66 static void apply(); 77 X0<Init::template VeryInner>::apply();
|
typename-specifier-2.cpp | 5 typedef typename MetaFun::template apply<T> type; 10 struct apply { struct in struct:add_pointer
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
Switchable.java | 7 void apply(Switch sw); method in interface:Switchable
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/FunctionObjects/ |
apply-001-n.js | 25 print ("STATUS: f.apply crash test."); 37 f.apply(2,2);
|
/frameworks/base/core/java/com/android/internal/util/ |
Predicate.java | 31 boolean apply(T t); method in interface:Predicate
|
Predicates.java | 87 public boolean apply(T t) { method in class:Predicates.AndPredicate 89 if (!predicate.apply(t)) { 104 public boolean apply(T t) { method in class:Predicates.OrPredicate 106 if (predicate.apply(t)) { 121 public boolean apply(T t) { method in class:Predicates.NotPredicate 122 return !predicate.apply(t);
|
/frameworks/base/core/java/com/google/android/util/ |
Procedure.java | 27 void apply(T t); method in interface:Procedure
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
PredicatesTest.java | 27 public boolean apply(Object o) { 33 public boolean apply(Object o) { 39 assertTrue(Predicates.and(newArrayList(TRUE)).apply(null)); 40 assertTrue(Predicates.and(newArrayList(TRUE, TRUE)).apply(null)); 44 assertFalse(Predicates.and(newArrayList(FALSE, TRUE, TRUE)).apply(null)); 45 assertFalse(Predicates.and(newArrayList(TRUE, FALSE, TRUE)).apply(null)); 46 assertFalse(Predicates.and(newArrayList(TRUE, TRUE, FALSE)).apply(null)); 50 assertTrue(Predicates.or(newArrayList(TRUE, TRUE, TRUE)).apply(null)); 54 assertFalse(Predicates.or(newArrayList(FALSE, FALSE, FALSE)).apply(null)); 58 assertTrue(Predicates.or(newArrayList(TRUE, FALSE, FALSE)).apply(null)) [all...] |
/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/CXX/temp/temp.names/ |
p4.cpp | 5 struct apply { struct in struct:meta 11 void f(typename T::template apply<U>::type);
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/ |
DepthFirstAdapter.java | 34 node.getPCommand().apply(this); 35 node.getEOF().apply(this); 57 e.apply(this); 79 node.getPosition().apply(this); 83 node.getComment().apply(this); 104 node.getData().apply(this); 125 node.getPosition().apply(this); 129 node.getExpression().apply(this); 150 node.getPosition().apply(this); 154 node.getExpression().apply(this) [all...] |
ReversedDepthFirstAdapter.java | 34 node.getEOF().apply(this); 35 node.getPCommand().apply(this); 58 e.apply(this); 80 node.getComment().apply(this); 84 node.getPosition().apply(this); 105 node.getData().apply(this); 126 node.getExpression().apply(this); 130 node.getPosition().apply(this); 151 node.getExpression().apply(this); 155 node.getPosition().apply(this) [all...] |
/external/v8/test/mjsunit/ |
apply.js | 36 assertTrue(this === f0.apply(), "1-0"); 38 assertTrue(this === f0.apply(this), "2a"); 39 assertTrue(this === f0.apply(this, new Array(1)), "2b"); 40 assertTrue(this === f0.apply(this, new Array(2)), "2c"); 41 assertTrue(this === f0.apply(this, new Array(4242)), "2d"); 43 assertTrue(this === f0.apply(null), "3a"); 44 assertTrue(this === f0.apply(null, new Array(1)), "3b"); 45 assertTrue(this === f0.apply(null, new Array(2)), "3c"); 46 assertTrue(this === f0.apply(this, new Array(4242)), "3d"); 48 assertTrue(this === f0.apply(void 0), "4a") [all...] |
arguments-apply.js | 38 return ReturnArguments.apply(this, arguments); 51 return object.f.apply(this, arguments); 64 return ReturnArguments.apply(this, arguments); 73 return ReturnReceiver.apply(receiver, arguments); 84 return ReturnReceiver.apply(Object, arguments); 92 f.apply = function() { return 87; } 93 return f.apply(this, arguments); 102 var object = { apply: Function.prototype.apply }; 103 return object.apply(this, arguments) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/anim/ |
CanvasAnimation.java | 24 public abstract void apply(GLCanvas canvas); method in class:CanvasAnimation
|
/system/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
|
/external/webkit/Source/WebCore/platform/graphics/transforms/ |
Matrix3DTransformOperation.cpp | 45 from->apply(fromT, size); 47 apply(toT, size);
|
/external/llvm/include/llvm/Support/ |
CommandLine.h | 266 void apply(Option &O) const { O.setDescription(Desc); } function in struct:llvm::cl::desc 274 void apply(Option &O) const { O.setValueStr(Desc); } function in struct:llvm::cl::value_desc 287 void apply(Opt &O) const { O.setInitialValue(Init); } function in struct:llvm::cl::initializer 306 void apply(Opt &O) const { O.setLocation(O, Loc); } function in struct:llvm::cl::LocationClass 462 void apply(Opt &O) const { function in class:llvm::cl::ValuesClass 940 // not correctly respond to the apply method). Because the syntax to use this 941 // is a pain, we have the 'apply' method below to handle the nastiness... 982 void apply(const Mod &M, Opt *O) { function in namespace:llvm::cl 1379 void apply(list<D, S, P> &L) const { L.setNumAdditionalVals(AdditionalVals); } function in struct:llvm::cl::multi_val [all...] |
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/ |
AssignableFromTest.java | 33 assertTrue(assignableFrom.apply(testMethodFor(Animal.class))); 37 assertTrue(assignableFrom.apply(testMethodFor(Mammal.class))); 38 assertTrue(assignableFrom.apply(testMethodFor(Human.class))); 42 assertFalse(assignableFrom.apply(testMethodFor(Pencil.class))); 48 assertTrue(assignableFrom.apply(testMethodFor(Pencil.class))); 49 assertTrue(assignableFrom.apply(testMethodFor(Pen.class)));
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
TemplateSyntaxTree.java | 39 public void apply(Switch sw) { method in class:TemplateSyntaxTree 40 root.apply(sw);
|
/frameworks/base/test-runner/src/android/test/suitebuilder/annotation/ |
HasAnnotation.java | 41 public boolean apply(TestMethod testMethod) { method in class:HasAnnotation 42 return hasMethodOrClassAnnotation.apply(testMethod);
|
/external/guava/src/com/google/common/base/ |
Function.java | 54 T apply(@Nullable F from); method in interface:Function 61 * that either {@code function1.apply(o)} and {@code function2.apply(o)} are 62 * both null, or {@code function1.apply(o).equals(function2.apply(o))}.
|