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

1234

/external/webkit/Tools/DumpRenderTree/wx/
H A DWorkQueueItemWx.cpp34 bool LoadItem::invoke() const function in class:LoadItem
39 bool LoadHTMLStringItem::invoke() const function in class:LoadHTMLStringItem
44 bool ReloadItem::invoke() const function in class:ReloadItem
49 bool ScriptItem::invoke() const function in class:ScriptItem
54 bool BackForwardItem::invoke() const function in class:BackForwardItem
/external/webkit/Tools/DumpRenderTree/qt/
H A DWorkQueueItemQt.cpp45 bool LoadItem::invoke() const function in class:LoadItem
47 //qDebug() << ">>>LoadItem::invoke";
64 bool LoadHTMLStringItem::invoke() const function in class:LoadHTMLStringItem
76 bool LoadAlternateHTMLStringItem::invoke() const function in class:LoadAlternateHTMLStringItem
88 bool ReloadItem::invoke() const function in class:ReloadItem
90 //qDebug() << ">>>ReloadItem::invoke";
96 bool ScriptItem::invoke() const function in class:ScriptItem
98 //qDebug() << ">>>ScriptItem::invoke";
104 bool BackForwardItem::invoke() const function in class:BackForwardItem
106 //qDebug() << ">>>BackForwardItem::invoke";
[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/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(
H A DObjectMethodsFilter.java61 public final Object invoke(Object proxy, Method method, Object[] args) method in class:ObjectMethodsFilter
72 return delegate.invoke(proxy, method, args);
H A DIMocksControlState.java22 Object invoke(Invocation invocation) throws Throwable; method in interface:IMocksControlState
/external/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/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPRuntimeRemoveProperty.cpp46 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result) function in struct:NPRuntimeRemoveProperty::TestObject
H A DNPPSetWindowCalledDuringDestruction.cpp43 bool invoke(NPIdentifier, const NPVariant*, uint32_t, NPVariant*);
120 bool NPPSetWindowCalledDuringDestruction::ScriptObject::invoke(NPIdentifier identifier, const NPVariant*, uint32_t, NPVariant*) function in class:NPPSetWindowCalledDuringDestruction::ScriptObject
/external/webkit/Tools/DumpRenderTree/gtk/
H A DWorkQueueItemGtk.cpp40 bool LoadItem::invoke() const function in class:LoadItem
60 bool LoadHTMLStringItem::invoke() const function in class:LoadHTMLStringItem
74 bool ReloadItem::invoke() const function in class:ReloadItem
80 bool ScriptItem::invoke() const function in class:ScriptItem
89 bool BackForwardItem::invoke() const function in class:BackForwardItem
/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/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/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp11 virtual R invoke(Args...) = 0;
19 R invoke(Args... args) { return f(args...); } function in class:functor_invoker
63 return invoker->invoke(args...);
/external/javassist/src/test/test/javassist/proxy/
H A DProxySerializationTest.java108 public Object invoke(Object self, Method thisMethod, Method proceed, Object[] args) throws Throwable method in class:ProxySerializationTest.TestHandler
110 return proceed.invoke(self, args);
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DAppTask.java140 public void invoke() { method in class:AppTask
154 logger.logp(Level.SEVERE, this.getClass().toString(), "invoke()", "Exception", e);
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthClient.java157 OAuthMessage response = invoke(accessor, httpMethod,
194 OAuthMessage response = invoke(accessor, httpMethod,
214 public OAuthMessage invoke(OAuthAccessor accessor, String httpMethod, method in class:OAuthClient
222 return invoke(request, style);
227 * to be used by invoke.
249 public OAuthMessage invoke(OAuthAccessor accessor, String url, method in class:OAuthClient
252 return invoke(accessor, null, url, parameters);
264 public OAuthMessage invoke(OAuthMessage request, ParameterStyle style) method in class:OAuthClient
/external/webkit/Tools/DumpRenderTree/win/
H A DWorkQueueItemWin.cpp54 bool LoadItem::invoke() const function in class:LoadItem
84 bool LoadHTMLStringItem::invoke() const function in class:LoadHTMLStringItem
110 bool ReloadItem::invoke() const function in class:ReloadItem
124 bool ScriptItem::invoke() const function in class:ScriptItem
141 bool BackForwardItem::invoke() const function in class:BackForwardItem
/external/webkit/Tools/gdb/
H A Dwebkit.py299 def invoke(self, arg, from_tty): member in class:PrintPathToRootCommand
/external/clang/test/CodeGen/
H A Dblockstret.c61 void (*invoke)(void *, ...); member in struct:block_layout_abi
/external/guava/guava-testlib/src/com/google/common/testing/
H A DNullPointerTester.java166 * @param instance the instance to invoke {@code method} on, or null if
194 * @param instance the instance to invoke {@code method} on, or null if
207 @Override public void invoke(Object instance, Object[] params)
209 method.invoke(instance, params);
234 @Override public void invoke(Object instance, Object[] params)
248 * @param instance the instance to invoke {@code func} on, or null if
258 func.invoke(instance, params);
307 void invoke(Object o, Object[] params) throws Exception; method in interface:NullPointerTester.Functor
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationImpl.java126 public Object invoke(Object proxy, Method method, Object[] args) method in class:AnnotationImpl
246 Class otherAnnotationType = (Class) JDK_ANNOTATION_TYPE_METHOD.invoke(obj, (Object[])null);
263 otherValue = methods[i].invoke(obj, (Object[])null);

Completed in 7983 milliseconds

1234