/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...] |
/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/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...] |
/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/chromium/chrome/browser/policy/ |
configuration_policy_store_interface.cc | 24 void ObservingPolicyStoreInterface::Apply(ConfigurationPolicyType policy, 26 next_->Apply(policy, value); 32 void FilteringPolicyStoreInterface::Apply(ConfigurationPolicyType policy, 34 // Apply() takes ownership of |value|. 36 next_->Apply(policy, value);
|
configuration_policy_store_interface_unittest.cc | 15 EXPECT_CALL(store, Apply(_, _)).Times(3); 19 observer.Apply(kPolicyJavascriptEnabled, Value::CreateBooleanValue(true)); 21 observer.Apply(kPolicyProxyMode, Value::CreateStringValue("direct")); 23 observer.Apply(kPolicyIncognitoEnabled, Value::CreateBooleanValue(true)); 34 EXPECT_CALL(store_pass, Apply(_, _)).Times(1); 38 filter_pass.Apply(kPolicyJavascriptEnabled, Value::CreateBooleanValue(true)); 40 filter_pass.Apply(kPolicyProxyMode, Value::CreateStringValue("direct")); 47 EXPECT_CALL(store_block, Apply(_, _)).Times(0); 51 filter_block.Apply(kPolicyJavascriptEnabled, Value::CreateBooleanValue(true)); 53 filter_block.Apply(kPolicyProxyMode, Value::CreateStringValue("direct")) [all...] |
/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...] |
/frameworks/base/packages/WAPPushManager/ |
proguard.flags | 2 #apply method is dynamically referenced by the reflection class. 4 void apply(); 7 void apply();
|
/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/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
Switchable.java | 7 void apply(Switch sw); method in interface:Switchable
|
/cts/tests/res/anim/ |
lineartest.xml | 26 <apply scope="addPaint"> 30 </apply> 33 <apply scope="addPaint"> 35 </apply> 38 <apply scope="addPaint"> 41 </apply> 44 <apply scope="addPaint"> 46 </apply>
|
/external/iptables/iptables/ |
iptables-apply.8 | 1 .\" Title: iptables-apply 5 .TH iptables\-apply 8 2006-06-04 9 iptables-apply \- a safer way to update iptables remotely 11 \fBiptables\-apply\fP [\-\fBhV\fP] [\fB-t\fP \fItimeout\fP] \fIruleset\-file\fP 14 iptables\-apply will try to apply a new ruleset (as output by 21 When called as ip6tables\-apply, the script will use 39 iptables\-apply is copyright by Martin F. Krafft.
|
/external/v8/test/mjsunit/regress/ |
regress-485.js | 45 assertEquals(global, builtin.apply(), "apply() to builtin"); 46 assertEquals(global, builtin.apply(null), "apply(null) to builtin"); 47 assertEquals(global, builtin.apply(undefined), "apply(undefined) to builtin"); 50 assertEquals(global, builtin.call.apply(builtin), "call.apply() to builtin"); 51 assertEquals(global, builtin.apply.call(builtin), "apply.call() to builtin") [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/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
util.js | 11 return func.apply(obj, arguments);
|
/external/clang/test/Preprocessor/ |
mi_opt.c | 4 // shouldn't apply.
|
/frameworks/ex/common/java/com/android/common/ |
SharedPreferencesCompat.java | 25 * Reflection utils to call SharedPreferences$Editor.apply when possible, 26 * falling back to commit when apply isn't available. 33 sApplyMethod = cls.getMethod("apply"); 39 public static void apply(SharedPreferences.Editor editor) { method in class:SharedPreferencesCompat
|
/packages/apps/Music/src/com/android/music/ |
SharedPreferencesCompat.java | 25 * Reflection utils to call SharedPreferences$Editor.apply when possible, 26 * falling back to commit when apply isn't available. 34 return cls.getMethod("apply"); 41 public static void apply(SharedPreferences.Editor editor) { method in class:SharedPreferencesCompat
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
SharedPreferencesCompat.java | 25 * Reflection utils to call SharedPreferences$Editor.apply when possible, 26 * falling back to commit when apply isn't available. 33 return SharedPreferences.Editor.class.getMethod("apply"); 40 public static void apply(SharedPreferences.Editor editor) { method in class:SharedPreferencesCompat
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemApplyImport.java | 30 * Implement xsl:apply-imports. 32 * <!ELEMENT xsl:apply-imports EMPTY> 34 * @see <a href="http://www.w3.org/TR/xslt#apply-imports">apply-imports in XSLT Specification</a> 45 * @return Token ID for xsl:apply-imports element types 63 * Execute the xsl:apply-imports transformation. 77 XSLTErrorResources.ER_NO_APPLY_IMPORT_IN_FOR_EACH); //"xsl:apply-imports not allowed in a xsl:for-each"); 90 XSLTErrorResources.ER_NULL_SOURCENODE_APPLYIMPORTS); //"sourceNode is null in xsl:apply-imports!"); 96 * <!ELEMENT xsl:apply-imports EMPTY> 100 * @return null, xsl:apply-Imports cannot have children [all...] |