Searched defs:invoke (Results 1 - 25 of 174) sorted by relevance

1234567

/external/parameter-framework/asio/include/asio/detail/
H A Dhandler_invoke_helpers.hpp27 inline void invoke(Function& function, Context& context) function in namespace:asio_handler_invoke_helpers
39 inline void invoke(const Function& function, Context& context) function in namespace:asio_handler_invoke_helpers
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dhandler_invoke_helpers.hpp27 inline void invoke(Function& function, Context& context) function in namespace:asio_handler_invoke_helpers
39 inline void invoke(const Function& function, Context& context) function in namespace:asio_handler_invoke_helpers
/external/v8/tools/gcmole/
H A Dparallel.py28 def invoke(cmdline): function
41 sys.argv[2:], pool.imap(invoke, cmdlines)):
/external/clang/test/CodeGen/
H A Dmozilla-ms-inline-asm.c8 void invoke(void* that, unsigned methodIndex, function
11 // CHECK: @invoke
/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/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 DCGLIBProxyRealMethod.java21 public Object invoke(Object target, Object[] arguments) throws Throwable { method in class:CGLIBProxyRealMethod
H A DFilteredCGLIBProxyRealMethod.java25 public Object invoke(Object target, Object[] arguments) throws Throwable { method in class:FilteredCGLIBProxyRealMethod
27 return realMethod.invoke(target, arguments);
/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/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/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/guice/core/src/com/google/inject/internal/
H A DDelegatingInvocationHandler.java32 public Object invoke(Object proxy, Method method, Object[] args) method in class:DelegatingInvocationHandler
50 return method.invoke(delegate, args);
/external/guice/core/test/com/google/inject/
H A DIntegrationTest.java63 public Object invoke(MethodInvocation methodInvocation) throws Throwable { method in class:IntegrationTest.CountingInterceptor
/external/guice/extensions/servlet/test/com/google/inject/servlet/
H A DServletTestUtils.java32 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:ServletTestUtils.ThrowingInvocationHandler
102 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:ServletTestUtils.FakeHttpSessionHandler
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastMethod.java52 public Object invoke(Object obj, Object[] args) throws InvocationTargetException { method in class:FastMethod
53 return fc.invoke(index, obj, args);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs77 public static object invoke( this MethodInfo method, object obj, params object[] parameters ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
/external/caliper/caliper/src/main/java/com/google/caliper/util/
H A DParsers.java64 @Override protected T invoke(String input) throws Exception {
65 return wrappedResultType.cast(method.invoke(null, input));
76 @Override protected T invoke(String input) throws Exception {
85 return invoke(input.toString());
95 protected abstract T invoke(String input) throws Exception; method in class:Parsers.InvokingParser
/external/guava/guava/src/com/google/common/reflect/
H A DAbstractInvocationHandler.java63 @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,
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
H A DJpaLocalTxnInterceptor.java49 public Object invoke(MethodInvocation methodInvocation) throws Throwable { method in class:JpaLocalTxnInterceptor
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
H A DRemoteObject.java133 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:RemoteObject
/external/junit/src/org/junit/internal/runners/
H A DTestMethod.java65 public void invoke(Object test) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException { method in class:TestMethod
66 fMethod.invoke(test);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DPropertyBoxParserImpl.java79 FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke();
90 FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke();
164 public FourCcToBox invoke() { method in class:PropertyBoxParserImpl.FourCcToBox
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DOptionalMethod.java72 return m.invoke(target, args);
106 public Object invoke(T target, Object... args) throws InvocationTargetException { method in class:OptionalMethod
112 return m.invoke(target, args);
130 return invoke(target, args);
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DFacadeManager.java60 public Object invoke(Class<? extends RpcReceiver> clazz, Method method, Object[] args) method in class:FacadeManager
74 return super.invoke(clazz, method, args);
77 Log.notify(mService, "RPC invoke failed...", mService.getPackageName(), e.getCause()

Completed in 1510 milliseconds

1234567