HomeSort by relevance Sort by last modified time
    Searched refs:apply (Results 51 - 75 of 1472) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.java 51 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(0))
794 public String apply(String string) { method in class:PredicatesTest.TrimStringFunction
    [all...]
  /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);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
minus.hpp 33 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::minus_impl
35 typedef apply type;
42 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::minus_impl
44 typedef apply type;
51 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::minus_impl
53 typedef apply type;
113 >::template apply< N1,N2 >::type
131 template< typename N1, typename N2 > struct apply struct in struct:boost::mpl::minus_impl
plus.hpp 33 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::plus_impl
35 typedef apply type;
42 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::plus_impl
44 typedef apply type;
51 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::plus_impl
53 typedef apply type;
113 >::template apply< N1,N2 >::type
131 template< typename N1, typename N2 > struct apply struct in struct:boost::mpl::plus_impl
times.hpp 33 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::times_impl
35 typedef apply type;
42 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::times_impl
44 typedef apply type;
51 template< typename U1, typename U2 > struct apply struct in struct:boost::mpl::times_impl
53 typedef apply type;
113 >::template apply< N1,N2 >::type
131 template< typename N1, typename N2 > struct apply struct in struct:boost::mpl::times_impl
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
begin_end.hpp 27 template< typename List > struct apply struct in struct:boost::mpl::begin_impl
36 template< typename > struct apply struct in struct:boost::mpl::end_impl
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
O1_size.hpp 31 template< typename Vector > struct apply struct in struct:boost::mpl::O1_size_impl
44 template< typename Vector > struct apply
begin_end.hpp 30 template< typename Vector > struct apply struct in struct:boost::mpl::begin_impl
39 template< typename Vector > struct apply struct in struct:boost::mpl::end_impl
clear.hpp 30 template< typename Vector > struct apply struct in struct:boost::mpl::clear_impl
43 template< typename Vector > struct apply
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
CommonPreferences.java 32 editor.apply();
38 editor.apply();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
SparseArrayElementRemoveTransform.java 33 public void apply(IGLProperty currentState) { method in class:SparseArrayElementRemoveTransform
41 mAddTransform.apply(currentState);
  /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/chromium_org/v8/test/mjsunit/
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/v8/test/mjsunit/
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/chromium_org/content/test/
web_gesture_curve_mock.h 22 virtual bool apply(double time,
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
IdentityTransformOperation.h 48 virtual void apply(TransformationMatrix&, const FloatSize&) const { } function in class:WebCore::IdentityTransformOperation
  /external/guava/guava/src/com/google/common/base/
Function.java 38 * 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
Predicate.java 38 * 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/
AsyncFunction.java 40 ListenableFuture<O> apply(I input) throws Exception; method in interface:AsyncFunction
  /external/icu4c/layout/
MPreFixups.h 32 void apply(LEGlyphStorage &glyphStorage, LEErrorCode& success);
  /external/junit/src/org/junit/rules/
MethodRule.java 39 Statement apply(Statement base, FrameworkMethod method, Object target); method in interface:MethodRule
Verifier.java 29 public Statement apply(final Statement base, Description description) { method in class:Verifier
  /frameworks/base/test-runner/src/android/test/suitebuilder/
AssignableFrom.java 29 public boolean apply(TestMethod testMethod) { method in class:AssignableFrom
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
clear_impl.hpp 28 template< typename Sequence > struct apply;

Completed in 340 milliseconds

1 23 4 5 6 7 8 91011>>