HomeSort by relevance Sort by last modified time
    Searched full:apply (Results 176 - 200 of 7701) sorted by null

1 2 3 4 5 6 78 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
numeric_op.hpp 101 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::AUX778076_OP_IMPL_NAME
103 typedef apply type;
111 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::AUX778076_OP_IMPL_NAME
113 typedef apply type;
120 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::AUX778076_OP_IMPL_NAME
122 typedef apply type;
129 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::AUX778076_OP_IMPL_NAME
131 typedef apply type;
138 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::AUX778076_OP_IMPL_NAME
140 typedef apply type
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java 56 @Override public Integer apply(String input) { method in class:EquivalenceTest.LengthFunction
117 assertTrue(equalTo1.apply("1"));
118 assertFalse(equalTo1.apply("2"));
119 assertFalse(equalTo1.apply(null));
121 assertFalse(isNull.apply("1"));
122 assertFalse(isNull.apply("2"));
123 assertTrue(isNull.apply(null));
  /external/v8/test/mjsunit/compiler/
inline-arguments.js 41 this.X.apply(this, arguments);
53 A.prototype.X.apply = function (receiver, args) {
54 return Function.prototype.apply.call(this, receiver, args);
62 function F2() { F1.apply(this, arguments); }
70 return F1.apply(this, arguments);
99 G2.apply(this, arguments);
103 G4.apply(this, arguments);
  /frameworks/base/media/mca/effect/java/android/media/effect/
package.html 3 <p>Provides classes that allow you to apply a variety of visual effects to images and
5 adjust brightness, adjust saturation, rotate an image, apply a fisheye effect, and much more. The
9 must have a valid OpenGL context before it can use the effects APIs. The textures to which you apply
17 <p>An {@link android.media.effect.Effect} object defines a single media effect that you can apply to
38 <p>To apply an effect on a texture, call {@link android.media.effect.Effect#apply apply()} on the
  /external/chromium_org/v8/test/mjsunit/harmony/
array-find.js 134 found = Array.prototype.find.apply(a, [function(val, key, obj) {
167 Array.prototype.push.apply(a, [30, 31, 32]);
234 Array.prototype.push.apply(thisArg, ["c", "b", "a"]);
247 assertThrows('Array.prototype.find.apply(null, function() { }, [])',
249 assertThrows('Array.prototype.find.apply(undefined, function() { }, [])',
272 assertThrows('Array.prototype.find.apply({}, null, [])', TypeError);
273 assertThrows('Array.prototype.find.apply({}, undefined, [])', TypeError);
274 assertThrows('Array.prototype.find.apply({}, 0, [])', TypeError);
275 assertThrows('Array.prototype.find.apply({}, true, [])', TypeError);
276 assertThrows('Array.prototype.find.apply({}, false, [])', TypeError)
    [all...]
array-findindex.js 135 index = Array.prototype.findIndex.apply(a, [function(val, key, obj) {
168 Array.prototype.push.apply(a, [30, 31, 32]);
234 Array.prototype.push.apply(thisArg, ["c", "b", "a"]);
247 assertThrows('Array.prototype.findIndex.apply(null, function() { }, [])',
249 assertThrows('Array.prototype.findIndex.apply(undefined, function() { }, [])',
272 assertThrows('Array.prototype.findIndex.apply({}, null, [])', TypeError);
273 assertThrows('Array.prototype.findIndex.apply({}, undefined, [])', TypeError);
274 assertThrows('Array.prototype.findIndex.apply({}, 0, [])', TypeError);
275 assertThrows('Array.prototype.findIndex.apply({}, true, [])', TypeError);
276 assertThrows('Array.prototype.findIndex.apply({}, false, [])', TypeError)
    [all...]
  /external/bison/data/xslt/
xml2text.xsl 34 <xsl:apply-templates select="bison-xml-report"/>
38 <xsl:apply-templates select="grammar" mode="reductions"/>
39 <xsl:apply-templates select="grammar" mode="useless-in-parser"/>
40 <xsl:apply-templates select="automaton" mode="conflicts"/>
41 <xsl:apply-templates select="grammar"/>
42 <xsl:apply-templates select="automaton"/>
46 <xsl:apply-templates select="nonterminals" mode="useless-in-grammar"/>
47 <xsl:apply-templates select="terminals" mode="unused-in-grammar"/>
48 <xsl:apply-templates select="rules" mode="useless-in-grammar"/>
108 <xsl:apply-templates select="terminals"/
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
image_adjust.js 14 ImageEditor.Mode.apply(this, arguments);
31 ImageEditor.Mode.prototype.cleanUpUI.apply(this, arguments);
67 ImageEditor.Mode.prototype.update.apply(this, arguments);
118 ImageEditor.Mode.Adjust.apply(this, arguments);
171 toolbar.addButton('Apply', this.apply.bind(this));
186 ImageEditor.Mode.Autofix.prototype.apply = function() {
195 ImageEditor.Mode.Autofix.apply(this, arguments);
206 ImageEditor.Mode.Autofix.prototype.setUp.apply(this, arguments);
207 this.apply();
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-stepin-function-call.js 102 // Test step into function apply from a function without local variables.
105 g.apply(null, [3]);
109 // Test step into function apply from a function with some local variables.
115 g.apply(null, [3, 4]);
118 // Test step into function apply which is a part of an expression.
122 var r = 10 + alias.apply(null, [3, 'unused arg']);
128 // Test step into function apply from a function with some local variables.
132 alias.apply(null, [3]);
145 // Test step into apply of bound function.
149 bound.apply(null, [3])
    [all...]
  /external/clang/test/SemaTemplate/
typename-specifier-4.cpp 14 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<int, float>::type,
    [all...]
  /packages/apps/Email/src/com/android/email/
Preferences.java 115 getPreferences(context).mSharedPreferences.edit().remove(ACCOUNT_UUIDS).apply();
119 mSharedPreferences.edit().putBoolean(ENABLE_DEBUG_LOGGING, value).apply();
127 mSharedPreferences.edit().putBoolean(ENABLE_EXCHANGE_LOGGING, value).apply();
135 mSharedPreferences.edit().putBoolean(ENABLE_EXCHANGE_FILE_LOGGING, value).apply();
143 mSharedPreferences.edit().putBoolean(INHIBIT_GRAPHICS_ACCELERATION, value).apply();
151 mSharedPreferences.edit().putBoolean(FORCE_ONE_MINUTE_REFRESH, value).apply();
159 mSharedPreferences.edit().putBoolean(ENABLE_STRICT_MODE, value).apply();
175 mSharedPreferences.edit().putString(DEVICE_UID, result).apply();
185 mSharedPreferences.edit().putInt(ONE_TIME_INITIALIZATION_PROGRESS, progress).apply();
193 mSharedPreferences.edit().putInt(AUTO_ADVANCE_DIRECTION, direction).apply();
351 mSharedPreferences.edit().putBoolean(makeKey(account, key), value).apply(); method
    [all...]
  /external/clang/test/SemaCXX/
nested-name-spec-locations.cpp 91 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<
  /external/openfst/src/extensions/far/
farscript.cc 49 Apply<Operation<FarCompileStringsArgs> >("FarCompileStrings", arc_type,
64 Apply<Operation<FarCreateArgs> >("FarCreate", arc_type, &args);
73 Apply<Operation<FarEqualArgs> >("FarEqual", arc_type, &args_with_retval);
89 Apply<Operation<FarExtractArgs> >("FarExtract", arc_type, &args);
99 Apply<Operation<FarInfoArgs> >("FarInfo", arc_type, &args);
120 Apply<Operation<FarPrintStringsArgs> >("FarPrintStrings", arc_type,
  /external/openfst/src/extensions/pdt/
pdtscript.cc 51 Apply<Operation<PdtComposeArgs> >("PdtCompose", ifst1.ArcType(), &args);
59 Apply<Operation<PdtExpandArgs> >("PdtExpand", ifst.ArcType(), &args);
81 Apply<Operation<PdtReplaceArgs> >("PdtReplace", ofst->ArcType(), &args);
89 Apply<Operation<PdtReverseArgs> >("PdtReverse", ifst.ArcType(), &args);
98 Apply<Operation<PdtShortestPathArgs> >("PdtShortestPath",
105 Apply<Operation<PrintPdtInfoArgs> >("PrintPdtInfo", ifst.ArcType(), &args);
  /frameworks/base/core/java/com/android/internal/util/
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);
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
AccountPreferences.java 103 getEditor().putBoolean(PreferenceKeys.DEFAULT_INBOX_NOTIFICATIONS_ENABLED, enabled).apply();
107 getEditor().remove(PreferenceKeys.DEFAULT_INBOX_NOTIFICATIONS_ENABLED).apply();
115 getEditor().putBoolean(PreferenceKeys.NOTIFICATIONS_ENABLED, enabled).apply();
127 getEditor().putInt(PreferenceKeys.ACCOUNT_SYNC_OFF_DISMISSES, 0).apply();
134 getEditor().putInt(PreferenceKeys.ACCOUNT_SYNC_OFF_DISMISSES, value + 1).apply();
142 getEditor().putInt(PreferenceKeys.LAST_SEEN_OUTBOX_COUNT, count).apply();
  /external/chromium/chrome/browser/policy/
profile_policy_connector_unittest.cc 27 EXPECT_CALL(store0, Apply(_, _)).Times(1);
37 EXPECT_CALL(store1, Apply(_, _)).Times(2);
49 EXPECT_CALL(store2, Apply(_, _)).Times(2);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-784.js 28 // Test that CallApplyLazy, generating optimized code for apply calls of the
29 // form x.apply(y, arguments), does not leave an extra copy of the result
38 A.x.y(B.apply(this, arguments));
  /external/chromium_org/v8/test/webkit/
call-apply-crash-expected.txt 24 Test to ensure that the registerfile is grown correctly when calling apply
29 PASS Did not crash using apply
30 PASS Did not crash using apply
  /external/chromium_org/v8/test/webkit/fast/js/kde/
Error-expected.txt 32 PASS Object.prototype.toString.apply(Error()) is '[object Error]'
33 PASS Object.prototype.toString.apply(Error) is '[object Function]'
34 PASS Object.prototype.toString.apply(EvalError) is '[object Function]'
Error.js 33 shouldBe("Object.prototype.toString.apply(Error())", "'[object Error]'");
34 shouldBe("Object.prototype.toString.apply(Error)", "'[object Function]'");
35 shouldBe("Object.prototype.toString.apply(EvalError)", "'[object Function]'");
  /external/guava/guava/src/com/google/common/base/
FunctionalEquivalence.java 51 return resultEquivalence.equivalent(function.apply(a), function.apply(b));
55 return resultEquivalence.hash(function.apply(a));
  /external/iptables/iptables/
iptables.xslt 21 <xsl:apply-templates select="node()"/>
26 <xsl:apply-templates select="*"/>
31 <xsl:apply-templates select="*"/>
36 <xsl:apply-templates select="*"/>
42 <xsl:apply-templates select="*"/>
56 <xsl:apply-templates select="node()"/>
62 <xsl:apply-templates select="node()"/>
73 <xsl:apply-templates select="conditions"/>
86 <xsl:apply-templates select="."/>
114 <xsl:apply-templates select="node()"/
    [all...]
  /external/openfst/src/script/
relabel.cc 32 Apply<Operation<RelabelArgs1> >("Relabel", ofst->ArcType(), &args);
41 Apply<Operation<RelabelArgs2> >("Relabel", ofst->ArcType(), &args);
49 Apply<Operation<RelabelArgs3> >("Relabel", fst->ArcType(), &args);
rmepsilon.cc 30 Apply<Operation<RmEpsilonArgs1> >("RmEpsilon", ifst.ArcType(), &args);
38 Apply<Operation<RmEpsilonArgs2> >("RmEpsilon", fst->ArcType(), &args);
45 Apply<Operation<RmEpsilonArgs3> >("RmEpsilon", fst->ArcType(), &args);

Completed in 522 milliseconds

1 2 3 4 5 6 78 91011>>