Searched refs:apply (Results 26 - 50 of 624) sorted by relevance

1234567891011>>

/external/clang/test/SemaTemplate/
H A Dtypename-specifier-2.cpp5 typedef typename MetaFun::template apply<T> type;
10 struct apply { struct in struct:add_pointer
H A Dinstantiate-template-template-parm.cpp3 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();
H A Dtypename-specifier-4.cpp14 typedef typename MetaFun::template apply<T1, T2> inner;
22 struct apply { struct in struct:make_pair
30 typename make_pair::template apply<int, float>, // expected-warning{{'template' keyword outside of a template}} \
32 make_pair::apply<int, float>
38 struct apply { struct in struct:swap_and_apply2
39 typedef typename MetaFun::template apply<T2, T1> new_metafun;
44 int a2[is_same<swap_and_apply2<make_pair>::apply<int, float>::type,
50 struct apply { struct in struct:swap_and_apply2b
51 typedef typename MetaFun::template apply<T2, T1>::type type;
55 int a3[is_same<swap_and_apply2b<make_pair>::apply<in
[all...]
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp45 from->apply(fromT, size);
47 apply(toT, size);
/external/guava/guava-tests/test/com/google/common/base/
H A DFunctionsTest.java43 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("Nul
288 public Integer apply(Object o) { method in class:FunctionsTest.HashCodeFunction
[all...]
H A DPredicatesTest.java51 public boolean apply(Integer i) {
61 public boolean apply(Integer i) { method in class:PredicatesTest.IsOdd
304 assertFalse(predicate.apply(1));
306 assertFalse(predicate.apply(1));
313 assertTrue(predicate.apply(1));
315 assertTrue(predicate.apply(1));
328 assertTrue(predicate.apply(1));
330 assertTrue(predicate.apply(1));
467 assertEquals(pre.apply(0), post.apply(
794 public String apply(String string) { method in class:PredicatesTest.TrimStringFunction
[all...]
/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/v8/test/mjsunit/regress/
H A Dregress-485.js44 assertTrue("[object builtins]" != builtin2.apply(), "call() to toString");
H A Dregress-1099.js39 x.apply(this, arguments);
H A Dregress-2045.js36 return foo.apply(this, arguments);
H A Dregress-269.js46 g.apply(null, ['']);
/external/llvm/include/llvm/Support/
H A DCommandLine.h271 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
973 // not correctly respond to the apply method). Because the syntax to use this
974 // is a pain, we have the 'apply' method below to handle the nastiness...
978 static void opt(const Mod &M, Opt &O) { M.apply(O); }
1013 // apply method - Apply a modifier to an option in a type safe way.
1015 void apply(cons 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...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dutil.js11 return func.apply(obj, arguments);
/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/icu4c/layout/
H A DMPreFixups.h32 void apply(LEGlyphStorage &glyphStorage, LEErrorCode& success);
/external/junit/src/org/junit/rules/
H A DMethodRule.java39 Statement apply(Statement base, FrameworkMethod method, Object target); method in interface:MethodRule
H A DVerifier.java29 public Statement apply(final Statement base, Description description) { method in class:Verifier
/external/v8/test/mjsunit/
H A Darguments-call-apply.js41 assertEquals(6, sum.apply(this, [1, 2, 3]), "apply");
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEMerge.h36 virtual void apply();
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
H A Dscope-004.js92 localC.apply(new Object());
96 localC.apply(new Object(), [objTEST]);
100 localC.apply(objTEST, [objTEST]);
108 localD.apply(new Object(), [objTEST]);
112 localD.apply(objTEST, [objTEST]);
/external/skia/src/animator/
H A DSkDisplayList.cpp79 SkApply* apply = (SkApply*) draw; local
80 if (apply->scope == match)
82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
84 if (apply->mode == SkApply::kMode_create) {
85 for (SkDrawable** ptr = apply->fScopes.begin(); ptr < apply->fScopes.end(); ptr++) {
121 SkApply* apply = (SkApply*) draw; local
122 apply->reset();
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Darray_data_model.js61 return this.array_.slice.apply(this.array_, arguments);
83 var rv = arr.splice.apply(arr, arguments);
101 this.splice.apply(this, args);
/external/clang/test/SemaCXX/
H A Dnested-name-spec-locations.cpp91 typedef typename T::template apply<typename add_reference<U>::type
98 struct apply { struct in struct:HasApply
107 typedef typename T::template apply<typename add_reference<U>::type
116 T::template apply<typename add_reference<U>::type
125 typedef class T::template apply<typename add_reference<U>::type
140 template apply<

Completed in 437 milliseconds

1234567891011>>