HomeSort by relevance Sort by last modified time
    Searched refs:apply (Results 1 - 25 of 913) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
Filter.java 48 public boolean apply( T input ); method in interface:Filter
  /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();
  /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
  /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...]
  /cts/tests/tests/webkitsecurity/assets/
call-apply-crash.js 1 description("Test to ensure that the registerfile is grown correctly when calling apply");
5 Function.prototype.call.apply(testLog, arguments);
6 })('Did not crash using apply', 0, 0); // needs 3+ arguments
9 Function.prototype.call.apply(testLog, arguments);
10 })('Did not crash using apply', 0, 0); // needs 3+ arguments
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
IPredicate.java 20 boolean apply(Object value); method in interface:IPredicate
  /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 assertSame(this, f0.apply(), "1-0");
38 assertSame(this, f0.apply(this), "2a");
39 assertSame(this, f0.apply(this, new Array(1)), "2b");
40 assertSame(this, f0.apply(this, new Array(2)), "2c");
41 assertSame(this, f0.apply(this, new Array(4242)), "2d");
43 assertSame(this, f0.apply(null), "3a");
44 assertSame(this, f0.apply(null, new Array(1)), "3b");
45 assertSame(this, f0.apply(null, new Array(2)), "3c");
46 assertSame(this, f0.apply(this, new Array(4242)), "3d");
48 assertSame(this, f0.apply(void 0), "4a")
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
EnumsTest.java 45 assertEquals(TestEnum.CHEETO, function.apply("CHEETO"));
46 assertEquals(TestEnum.HONDA, function.apply("HONDA"));
47 assertEquals(TestEnum.POODLE, function.apply("POODLE"));
52 assertNull(function.apply("cHEETO"));
53 assertNull(function.apply("Honda"));
54 assertNull(function.apply("poodlE"));
59 assertNull(function.apply("WOMBAT"));
FunctionsTest.java 43 assertNull(identity.apply(null));
44 assertSame("foo", identity.apply("foo"));
49 assertNotSame(new Long(135135L), identity.apply(new Long(135135L)));
58 assertEquals("3", Functions.toStringFunction().apply(3));
59 assertEquals("hiya", Functions.toStringFunction().apply("hiya"));
61 Functions.toStringFunction().apply(
68 Functions.toStringFunction().apply(null);
93 assertEquals(1, function.apply("One").intValue());
94 assertEquals(3, function.apply("Three").intValue());
95 assertNull(function.apply("Null"))
288 public Integer apply(Object o) { method in class:FunctionsTest.HashCodeFunction
    [all...]
  /external/junit/src/org/junit/rules/
TestRule.java 53 Statement apply(Statement base, Description description); method in interface:TestRule
  /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
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
CanvasAnimation.java 24 public abstract void apply(GLCanvas canvas); method in class:CanvasAnimation
  /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 271 void apply(Option &O) const { O.setDescription(Desc); } function in struct:llvm::cl::desc
279 void apply(Option &O) const { O.setValueStr(Desc); } function in struct:llvm::cl::value_desc
292 void apply(Opt &O) const { O.setInitialValue(Init); } function in struct:llvm::cl::initializer
311 void apply(Opt &O) const { O.setLocation(O, Loc); } function in struct:llvm::cl::LocationClass
473 void apply(Opt &O) const { function in class:llvm::cl::ValuesClass
1015 void apply(const Mod &M, Opt *O) { function in namespace:llvm::cl
1412 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)));

Completed in 574 milliseconds

1 2 3 4 5 6 7 8 91011>>