HomeSort by relevance Sort by last modified time
    Searched defs:invoke (Results 76 - 100 of 1057) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SmallStructsTest.java 158 .invoke(field);
170 set_bytes.invoke(field, elem, bytes, true);
183 modify.invoke(mScript, alloc, alloc);
184 verify.invoke(mScript, alloc);
205 getInitialValueSetter(type).invoke(mScript, getInitialValue(type));
218 .invoke(field);
226 fieldASetter.invoke(field, elem, initialValueA, true);
232 fieldBSetter.invoke(field, elem, initialValueB, true);
245 modify.invoke(mScript, alloc, alloc);
246 verify.invoke(mScript, alloc)
    [all...]
  /art/test/004-NativeAllocations/src/
Main.java 36 register_native_allocation.invoke(runtime, bytes);
60 register_native_free.invoke(runtime, bytes);
70 runtime = get_runtime.invoke(null);
  /art/test/647-jni-get-field-id/src/
Main.java 41 m.invoke(null, get);
52 get.invoke(null, TestClass.class, "bogus", signature);
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MediaButtonHelper.java 43 sMethodRegisterMediaButtonEventReceiver.invoke(audioManager, receiver);
68 sMethodUnregisterMediaButtonEventReceiver.invoke(audioManager, receiver);
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/trigger/
EventGenerationControllingObserver.java 89 startEventGeneratingMethod.invoke(mFacadeManager, new JSONArray());
99 stopEventGeneratingMethod.invoke(mFacadeManager, new JSONArray());
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
ForegroundService.java 54 mStartForeground.invoke(this, mStartForegroundArgs);
77 mStopForeground.invoke(this, mStopForegroundArgs);
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
SubstitutableLoggerTest.java 67 m.invoke(proxyLogger, new Object[m.getParameterTypes().length]);
75 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:SubstitutableLoggerTest.LoggerInvocationHandler
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConfigurationException.java 145 m.invoke(this, new Object[] {cause});
157 Throwable cause = (Throwable) m1.invoke(this, new Object[] {});
163 m2.invoke(this, new Object[] {causeOnJDK13OrBelow});
  /art/test/044-proxy/src/
Clash.java 65 public Object invoke(Object proxy, Method method, Object[] args) method in class:ClashInvocationHandler
Clash2.java 55 public Object invoke(Object proxy, Method method, Object[] args) method in class:Clash2InvocationHandler
NativeProxy.java 53 public Object invoke(final Object proxy, method in class:NativeProxy.NativeInvocationHandler
  /art/test/146-bad-interface/src/
Main.java 36 r.invoke(null, o);
  /art/test/574-irreducible-and-constant-area/src/
Main.java 27 m.invoke(null, arguments);
  /art/test/575-checker-string-init-alias/src/
Main.java 41 m.invoke(null, new Object[] { array , "foo" });
56 m.invoke(null, new Object[] { array, "bar" });
  /art/test/612-jit-dex-cache/src/
Main.java 55 // Invoke the method enough times to get an inline cache and get JITted.
57 m.invoke(null, b);
60 ClassLoader loader = (ClassLoader) m.invoke(null);
  /art/test/616-cha-proxy-method-inline/src/
Main.java 35 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { method in class:DebugProxy
42 result = m.invoke(obj, args);
  /art/test/972-default-imt-collision/src/
Main.java 25 test.invoke(null, o);
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
ForceEphemeralUsersTest.java 40 setForceEphemeralUsersMethod.invoke(mDevicePolicyManager, getWho(), true);
44 assertTrue((boolean) getForceEphemeralUsersMethod.invoke(mDevicePolicyManager, getWho()));
56 setForceEphemeralUsersMethod.invoke(mDevicePolicyManager, getWho(), true);
  /cts/tests/tests/permission/src/android/permission/cts/
AppOpsTest.java 53 setMode.invoke(mAppOps, writeSmsOp, android.os.Process.myUid(),
  /cts/tools/vm-tests-tf/src/dot/junit/
DxTestCase.java 92 method.invoke(receiver, args);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 77 public static object invoke( this MethodInfo method, object obj, params object[] parameters ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
79 return method.Invoke( obj, parameters );
97 return type.GetConstructor( new Type[0] ).Invoke( new object[0] );
  /external/apache-http/src/org/apache/http/util/
ExceptionUtils.java 80 INIT_CAUSE_METHOD.invoke(throwable, new Object[] { cause });
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 52 template<class T> void invoke(void (*f)(T)) { f(T()); } // expected-note 6 {{couldn't infer template argument}} \ function in namespace:test1
58 invoke(&temp); // expected-error {{no matching function for call to 'invoke'}}
59 invoke(&temp<>); // expected-error {{no matching function for call to 'invoke'}}
62 invoke(&temp<int>);
70 invoke(&over);
77 invoke(&over); // expected-error {{no matching function for call to 'invoke'}}
85 invoke(&temp2); // expected-error {{no matching function for call to 'invoke'}
    [all...]
  /external/clang/tools/libclang/
Index_Internal.h 31 #define INVOKE_BLOCK2(block, arg1, arg2) block->invoke(block, arg1, arg2)
37 enum CXVisitorResult (*invoke)(_CXCursorAndRangeVisitorBlock *, member in struct:_CXCursorAndRangeVisitorBlock
  /external/guava/guava/src/com/google/common/reflect/
AbstractInvocationHandler.java 63 @Override public final Object invoke(Object proxy, Method method, @Nullable Object[] args) method in class:AbstractInvocationHandler
91 * {@link #invoke} delegates to this method upon any method invocation on the proxy instance,
95 * <p>Unlike {@link #invoke}, {@code args} will never be null. When the method has no parameter,

Completed in 357 milliseconds

1 2 34 5 6 7 8 91011>>