HomeSort by relevance Sort by last modified time
    Searched refs:invoke (Results 1 - 25 of 2926) 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/smali/smali/src/test/resources/LexerTest/
CommentTest.smali 6 invoke-virtual #invoke-virtua
  /external/dropbear/debian/
dropbear.prerm 6 if test -x /usr/sbin/invoke-rc.d; then
7 invoke-rc.d dropbear stop
  /libcore/luni/src/test/java/libcore/java/lang/
IntrinsicTest.java 27 String.class.getMethod("charAt", int.class).invoke("hello", 0);
32 String.class.getMethod("compareTo", String.class).invoke("hello", "world");
37 String.class.getMethod("equals", Object.class).invoke("hello", "world");
42 String.class.getMethod("indexOf", int.class).invoke("hello", 'l');
47 String.class.getMethod("isEmpty").invoke("hello");
52 String.class.getMethod("length").invoke("hello");
57 Math.class.getMethod("abs", int.class).invoke(null, 1); method
59 Math.class.getMethod("abs", long.class).invoke(null, 1L); method
61 Math.class.getMethod("abs", float.class).invoke(null, 1.0f); method
63 Math.class.getMethod("abs", double.class).invoke(null, 1.0) method
68 StrictMath.class.getMethod("abs", int.class).invoke(null, 1); method
70 StrictMath.class.getMethod("abs", long.class).invoke(null, 1L); method
72 StrictMath.class.getMethod("abs", float.class).invoke(null, 1.0f); method
74 StrictMath.class.getMethod("abs", double.class).invoke(null, 1.0); method
79 StrictMath.class.getMethod("min", int.class, int.class).invoke(null, 1, 2); method
84 StrictMath.class.getMethod("max", int.class, int.class).invoke(null, 1, 2); method
89 StrictMath.class.getMethod("sqrt", double.class).invoke(null, 2.0); method
94 Math.class.getMethod("min", int.class, int.class).invoke(null, 1, 2); method
99 Math.class.getMethod("max", int.class, int.class).invoke(null, 1, 2); method
104 Math.class.getMethod("sqrt", double.class).invoke(null, 2.0); method
109 Math.class.getMethod("cos", double.class).invoke(null, Math.PI); method
114 Math.class.getMethod("sin", double.class).invoke(null, Math.PI); method
119 Float.class.getMethod("floatToIntBits", float.class).invoke(null, 0.0f); method
124 Float.class.getMethod("floatToRawIntBits", float.class).invoke(null, 0.0f); method
129 Float.class.getMethod("intBitsToFloat", int.class).invoke(null, 0); method
134 Double.class.getMethod("doubleToLongBits", double.class).invoke(null, 0.0); method
139 Double.class.getMethod("doubleToRawLongBits", double.class).invoke(null, 0.0); method
144 Double.class.getMethod("longBitsToDouble", long.class).invoke(null, 0L); method
    [all...]
  /external/webkit/Tools/DumpRenderTree/
WorkQueueItem.h 38 virtual bool invoke() const = 0; // Returns true if this started a load.
50 virtual bool invoke() const;
72 virtual bool invoke() const;
81 virtual bool invoke() const;
92 virtual bool invoke() const;
106 virtual bool invoke() const { return ScriptItem::invoke(); } function in class:LoadingScriptItem
117 virtual bool invoke() const { ScriptItem::invoke(); return false; } function in class:NonLoadingScriptItem
128 virtual bool invoke() const
    [all...]
  /external/mockito/src/org/mockito/internal/invocation/realmethod/
RealMethod.java 10 Object invoke(Object target, Object[] arguments) throws Throwable; method in interface:RealMethod
  /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/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/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 41 * 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(null))
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
MethodHandler.java 46 Object invoke(Object self, Method thisMethod, Method proceed, method in interface:MethodHandler
  /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);
  /external/webkit/Tools/DumpRenderTree/qt/
WorkQueueItemQt.h 42 virtual bool invoke() const = 0;
60 virtual bool invoke() const;
77 virtual bool invoke() const;
94 virtual bool invoke() const;
107 virtual bool invoke() const;
120 virtual bool invoke() const;
133 virtual bool invoke() const { return ScriptItem::invoke(); } function in class:LoadingScriptItem
143 virtual bool invoke() const { ScriptItem::invoke(); return false; function in class:NonLoadingScriptItem
    [all...]
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/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/webkit/Source/WebKit/win/Interfaces/
IWebUndoTarget.idl 39 HRESULT invoke([in] BSTR actionName, [in] IUnknown* obj);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ConnectivityManagerCompatUtils.java 30 return (Boolean)CompatUtils.invoke(manager,
InputMethodServiceCompatUtils.java 34 return (Boolean)CompatUtils.invoke(ims, false /* defaultValue */,
  /external/webkit/Tools/DumpRenderTree/gtk/
WorkQueueItemGtk.cpp 40 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/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
UnsafeAllocator.java 47 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);
104 final long constructorId = (Long) getConstructorId.invoke(null, Object.class);
112 return (T) newInstance.invoke(null, c, constructorId);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_float/d/
T_neg_float_5.d 9 invoke-direct {v0}, java/lang/Object/<init>()V
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_int/d/
T_neg_int_6.d 9 invoke-direct {v0}, java/lang/Object/<init>()V
  /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,
  /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(
  /external/icu4c/config/
test-icu-config.sh 22 icu-config --invoke
23 icu-config --invoke=genrb
24 icu-config --invoke=./myapp
25 icu-config --invoke=/path/to/myapp
  /external/apache-http/src/org/apache/http/util/
ExceptionUtils.java 75 INIT_CAUSE_METHOD.invoke(throwable, new Object[] { cause });

Completed in 800 milliseconds

1 2 3 4 5 6 7 8 91011>>