Searched refs:invoke (Results 1 - 25 of 358) sorted by relevance

1234567891011>>

/external/smali/smali/src/test/resources/LexerTest/
H A DCommentTest.smali6 invoke-virtual #invoke-virtua
/external/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/Android.mk
19 test_name := utilities/function.objects/refwrap/refwrap.invoke/invoke_int_0
23 test_name := utilities/function.objects/refwrap/refwrap.invoke/invoke_void_0
27 test_name := utilities/function.objects/refwrap/refwrap.invoke/invoke
28 test_src := invoke.pass.cpp
/external/mockito/src/org/mockito/internal/invocation/realmethod/
H A DRealMethod.java10 Object invoke(Object target, Object[] arguments) throws Throwable; method in interface:RealMethod
H A DFilteredCGLIBProxyRealMethod.java25 public Object invoke(Object target, Object[] arguments) throws Throwable { method in class:FilteredCGLIBProxyRealMethod
27 return realMethod.invoke(target, arguments);
H A DCGLIBProxyRealMethod.java21 public Object invoke(Object target, Object[] arguments) throws Throwable { method in class:CGLIBProxyRealMethod
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp6.cpp52 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(
[all...]
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java41 * reflection to invoke its methods.
90 Constructable constructed = (Constructable) getMethod().invoke(null, 5L, false);
118 method.invoke(instance);
137 assertEquals(10, getMethod().invoke(null, 4));
158 method.invoke(instance, 0);
183 assertEquals(9, getMethod().invoke(null, this, 4));
223 assertEquals(5, method.invoke(null, instance));
256 assertEquals(System.identityHashCode(instance), method.invoke(instance));
278 assertEquals("abc", getMethod().invoke(null, callable));
297 assertEquals(5, getMethod().invoke(nul
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DMethodHandler.java46 Object invoke(Object self, Method thisMethod, Method proceed, method in interface:MethodHandler
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DInvocationHandler.java31 * @see java.lang.reflect.InvocationHandler#invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object)
33 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable; method in interface:InvocationHandler
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1229.js110 function invoke(f, args) { function
116 invoke(f1, [2, 3]);
117 invoke(f2, [2]);
118 invoke(f3, [2, 3, 4]);
119 invoke(g1, [3, 2]);
120 invoke(g2, [3, 2, 4]);
121 invoke(g3, [4, 3, 2]);
122 invoke(h1, [6, 4]);
123 invoke(h2, [6, 4, 8]);
124 invoke(h
[all...]
/external/clang/tools/libclang/
H A DIndex_Internal.h31 #define INVOKE_BLOCK2(block, arg1, arg2) block->invoke(block, arg1, arg2)
37 enum CXVisitorResult (*invoke)(_CXCursorAndRangeVisitorBlock *, member in struct:_CXCursorAndRangeVisitorBlock
/external/conscrypt/src/compat/java/dalvik/system/
H A DCloseGuard.java54 return new CloseGuard(m_get.invoke(null));
64 m_open.invoke(wrappedGuard, message);
73 m_close.invoke(wrappedGuard);
82 m_warnIfOpen.invoke(wrappedGuard);
H A DBlockGuard.java46 Object wrappedPolicy = m_getThreadPolicy.invoke(null);
68 m_onNetwork.invoke(wrappedPolicy);
/external/okhttp/android/test/java/com/squareup/okhttp/internal/
H A DOptionalMethodTest.java148 public void invoke() throws Exception { method in class:OptionalMethodTest
151 assertEquals("string", STRING_METHOD_RETURNS_STRING.invoke(base));
152 assertEquals("string", STRING_METHOD_RETURNS_ANY.invoke(base));
154 assertNull(VOID_METHOD_RETURNS_ANY.invoke(base));
155 assertNull(VOID_METHOD_RETURNS_VOID.invoke(base));
164 assertEquals("string", STRING_METHOD_RETURNS_STRING.invoke(subClass1));
165 assertEquals("string", STRING_METHOD_RETURNS_ANY.invoke(subClass1));
167 assertNull(VOID_METHOD_RETURNS_ANY.invoke(subClass1));
168 assertNull(VOID_METHOD_RETURNS_VOID.invoke(subClass1));
169 assertEquals("subclassMethod1", SUBCLASS_METHOD_RETURNS_ANY.invoke(subClass
[all...]
/external/chromium_org/content/test/plugin/
H A Dplugin_npobject_proxy_test.cc38 HostFunctions()->invoke(id(), doc, create_text_node_id, &strv, 1, &textv);
41 HostFunctions()->invoke(id(), doc, append_child_id, &textv, 1, &v);
/external/chromium_org/third_party/icu/source/config/
H A Dtest-icu-config.sh22 icu-config --invoke
23 icu-config --invoke=genrb
24 icu-config --invoke=./myapp
25 icu-config --invoke=/path/to/myapp
/external/easymock/src/org/easymock/internal/
H A DMockInvocationHandler.java32 public Object invoke(Object proxy, Method method, Object[] args) method in class:MockInvocationHandler
38 return control.getState().invoke(
/external/icu/icu4c/source/config/
H A Dtest-icu-config.sh22 icu-config --invoke
23 icu-config --invoke=genrb
24 icu-config --invoke=./myapp
25 icu-config --invoke=/path/to/myapp
/external/libcxx/test/utilities/function.objects/func.require/
H A DAndroid.mk27 test_name := utilities/function.objects/func.require/invoke
28 test_src := invoke.pass.cpp
/external/apache-http/src/org/apache/http/util/
H A DExceptionUtils.java80 INIT_CAUSE_METHOD.invoke(throwable, new Object[] { cause });
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
H A DUnsafeAllocator.java47 return (T) allocateInstance.invoke(unsafe, c);
66 return (T) newInstance.invoke(null, c, Object.class);
81 final int constructorId = (Integer) getConstructorId.invoke(null, Object.class);
89 return (T) newInstance.invoke(null, c, constructorId);
/external/dhcpcd/
H A Dconfig.mk17 SERVICEEXISTS= /usr/sbin/invoke-rc.d --query --quiet $$1 start >/dev/null 2>\&1 || [ $$? = 104 ]
18 SERVICECMD= /usr/sbin/invoke-rc.d $$1 $$2
/external/objenesis/main/src/org/objenesis/instantiator/gcj/
H A DGCJInstantiator.java36 return newObjectMethod.invoke(dummyStream, new Object[] {type, Object.class});
H A DGCJSerializationInstantiator.java39 return newObjectMethod.invoke(dummyStream, new Object[] {type, superType});
/external/objenesis/main/src/org/objenesis/instantiator/sun/
H A DSun13Instantiator.java36 return allocateNewObjectMethod.invoke(null, new Object[] {type, Object.class});

Completed in 9443 milliseconds

1234567891011>>