HomeSort by relevance Sort by last modified time
    Searched defs:invoke (Results 1 - 25 of 295) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/DumpRenderTree/wx/
WorkQueueItemWx.cpp 34 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/
WorkQueueItemQt.cpp 45 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/
MethodHandler.java 46 Object invoke(Object self, Method thisMethod, Method proceed, method in interface:MethodHandler
  /libcore/luni/src/main/java/java/lang/reflect/
InvocationHandler.java 32 * public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
35 * //invoke the method
36 * Object result = method.invoke(proxy, args);
59 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable; method in interface:InvocationHandler
  /external/mockito/src/org/mockito/internal/invocation/realmethod/
RealMethod.java 10 Object invoke(Object target, Object[] arguments) throws Throwable; method in interface:RealMethod
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeRemoveProperty.cpp 46 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result) function in struct:NPRuntimeRemoveProperty::TestObject
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
DynamicProxy.java 48 InvocationHandler invoke = new InvocationHandler() { local
50 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
54 .invoke(delegate, args);
60 return (T) Proxy.newProxyInstance(clazz.getClassLoader(), new Class<?>[] { clazz }, invoke);
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
RemoteControlClientCompat.java 197 mPutStringMethod.invoke(mActualMetadataEditor, key, value);
218 mPutBitmapMethod.invoke(mActualMetadataEditor, key, bitmap);
244 mPutLongMethod.invoke(mActualMetadataEditor, key, value);
259 mClearMethod.invoke(mActualMetadataEditor, (Object[]) null);
275 mApplyMethod.invoke(mActualMetadataEditor, (Object[]) null);
293 metadataEditor = sRCCEditMetadataMethod.invoke(mActualRemoteControlClient,
320 sRCCSetPlayStateMethod.invoke(mActualRemoteControlClient, state);
342 sRCCSetTransportControlFlags.invoke(mActualRemoteControlClient,
RemoteControlHelper.java 65 sRegisterRemoteControlClientMethod.invoke(audioManager,
80 sUnregisterRemoteControlClientMethod.invoke(audioManager,
MediaButtonHelper.java 43 sMethodRegisterMediaButtonEventReceiver.invoke(audioManager, receiver);
68 sMethodUnregisterMediaButtonEventReceiver.invoke(audioManager, receiver);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptC_set_target_api_11.java 48 invoke(mExportFuncIdx_check, check_fp); method
ScriptC_set_target_api_12.java 48 invoke(mExportFuncIdx_check, check_fp); method
ScriptC_set_target_api_13.java 48 invoke(mExportFuncIdx_check, check_fp); method
ScriptC_set_target_api_14.java 48 invoke(mExportFuncIdx_check, check_fp); method
ScriptC_set_target_api_15.java 48 invoke(mExportFuncIdx_check, check_fp); method
ScriptC_set_target_api_16.java 48 invoke(mExportFuncIdx_check, check_fp); method
ScriptC_set_target_api_17.java 48 invoke(mExportFuncIdx_check, check_fp); method
ScriptC_set_target_api_too_high.java 48 invoke(mExportFuncIdx_check, check_fp); method
  /external/easymock/src/org/easymock/internal/
MockInvocationHandler.java 32 public Object invoke(Object proxy, Method method, Object[] args) method in class:MockInvocationHandler
38 return control.getState().invoke(
  /frameworks/rs/cpp/
Script.cpp 25 void Script::invoke(uint32_t slot, const void *v, size_t len) const { function in class:Script
  /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});
  /dalvik/tests/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
  /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 75 INIT_CAUSE_METHOD.invoke(throwable, new Object[] { cause });

Completed in 465 milliseconds

1 2 3 4 5 6 7 8 91011>>