/external/webkit/Source/WebKit/mac/Misc/ |
WebNSObjectExtras.mm | 40 static bool returnTypeIsObject(NSInvocation *invocation) 44 return strchr([[invocation methodSignature] methodReturnType], '@'); 55 - (void)forwardInvocation:(NSInvocation *)invocation 57 [invocation setTarget:target]; 58 [invocation performSelectorOnMainThread:@selector(_webkit_invokeAndHandleException:) withObject:self waitUntilDone:YES]; 63 } else if (returnTypeIsObject(invocation)) { 67 [invocation getReturnValue:&returnValue];
|
/external/chromium/net/proxy/ |
proxy_resolver_request_context.h | 14 // This data structure holds state related to an invocation of
|
/external/jsr305/ri/src/main/java/javax/annotation/ |
OverridingMethodsMustInvokeSuper.java | 12 * (through method invocation on super).
|
/external/proguard/src/proguard/classfile/editor/ |
MethodInvocationFixer.java | 99 // But is it not a static invocation? 102 // Replace the invocation by an invokestatic instruction. 120 // But is it not a special invocation? 123 // Replace the invocation by an invokespecial instruction. 143 // But is it not an interface invocation, or is the parameter 148 // Fix the parameter size of the interface invocation. 167 // But is it not a virtual invocation (or a special invocation, 173 // Replace the invocation by an invokevirtual instruction.
|
/external/webkit/Source/WebCore/bridge/objc/ |
objc_instance.mm | 227 NSInvocation* invocation = [NSInvocation invocationWithMethodSignature:signature]; 228 [invocation setSelector:method->selector()]; 229 [invocation setTarget:_instance.get()]; 240 [invocation setArgument:&jsName atIndex:2]; 248 [invocation setArgument:&objcArgs atIndex:3]; 264 [invocation setArgument:&value.objectValue atIndex:i]; 268 [invocation setArgument:&value.charValue atIndex:i]; 272 [invocation setArgument:&value.shortValue atIndex:i]; 276 [invocation setArgument:&value.intValue atIndex:i]; 280 [invocation setArgument:&value.longValue atIndex:i] [all...] |
/dalvik/vm/mterp/x86-atom/ |
OP_MOVE_RESULT.S | 24 * recent method invocation into the indicated register. This 26 * method invocation whose (single-word, non-object) result
|
OP_MOVE_RESULT_WIDE.S | 24 * recent method invocation into the indicated register. This 26 * method invocation whose (single-word, non-object) result
|
/development/samples/Spinner/ |
_index.html | 10 is made. The application remembers the selection from invocation to invocation, even
|
/external/easymock/src/org/easymock/internal/ |
IMocksControlState.java | 22 Object invoke(Invocation invocation) throws Throwable;
|
Invocation.java | 29 public class Invocation implements Serializable {
42 public Invocation(Object mock, Method method, Object[] args) {
93 Invocation other = (Invocation) o;
135 public boolean matches(Invocation actual, org.easymock.ArgumentsMatcher matcher) {
|
/external/javassist/src/main/javassist/tools/rmi/ |
RemoteException.java | 20 * during remote method invocation.
|
/frameworks/base/core/java/android/os/ |
RemoteException.java | 21 * Parent exception for all Binder remote-invocation errors
|
/frameworks/base/include/media/ |
IMediaPlayer.h | 68 // @return OK if the invocation was made successfully. 73 // @return OK if the invocation was made successfully. 78 // since the last invocation of getMetadata. 88 // @return OK if the invocation was made successfully.
|
/external/clang/tools/driver/ |
cc1_main.cpp | 76 // Create a compiler invocation. 77 llvm::errs() << "cc1 creating invocation.\n"; 78 CompilerInvocation Invocation; 79 CompilerInvocation::CreateFromArgs(Invocation, ArgBegin, ArgEnd, Diags); 81 // Convert the invocation back to argument strings. 83 Invocation.toArgs(InvocationArgs); 87 llvm::errs() << "invocation argv :"; 94 // Convert those arguments to another invocation, and check that we got the
|
/libcore/luni/src/main/java/java/lang/reflect/ |
InvocationHandler.java | 33 * //do some processing before the method invocation 38 * //do some processing after the method invocation
|
Proxy.java | 47 * The invocation handler on which the method calls are dispatched. 56 * Constructs a new {@code Proxy} instance with the specified invocation 60 * the invocation handler for the newly created proxy 186 * the specified invocation handler. The interfaces must be visible from the 197 * the invocation handler that handles the dispatched method 252 * Returns the invocation handler of the specified proxy instance. 256 * @return the invocation handler of the specified proxy instance
|
/external/webkit/Source/JavaScriptCore/wtf/ |
MainThread.cpp | 146 FunctionWithContext invocation; local 152 invocation = functionQueue().takeFirst(); 155 invocation.function(invocation.context); 156 if (invocation.syncFlag) 157 invocation.syncFlag->signal();
|
ThreadingPthreads.cpp | 148 OwnPtr<ThreadFunctionInvocation> invocation = adoptPtr(static_cast<ThreadFunctionInvocation*>(arg)); local 153 ret = invocation->function(invocation->data); 164 OwnPtr<ThreadFunctionInvocation> invocation = adoptPtr(new ThreadFunctionInvocation(entryPoint, data)); local 166 if (pthread_create(&threadHandle, 0, runThreadWithRegistration, invocation.get())) { 171 // The thread will take ownership of invocation. 172 ThreadFunctionInvocation* unused = invocation.leakPtr();
|
/external/proguard/src/proguard/preverify/ |
CodeSubroutineInliner.java | 197 // subroutine invocation. 234 // subroutine invocation. 314 // Append a label at this offset instead of the subroutine invocation. 328 System.out.println("Replacing subroutine invocation at ["+offset+"] by a simple branch"); 331 // Replace the subroutine invocation by a simple branch. 357 // by adding a try block before (and later on, after) each invocation. 365 // Is it a subroutine invocation? 373 // Append a try block that ends before the subroutine invocation. 379 // The next try block will start after the subroutine invocation.
|
/external/webkit/Tools/DumpRenderTree/mac/ |
EventSendingController.mm | 204 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(leapForward:)]]; 205 [invocation setTarget:self]; 206 [invocation setSelector:@selector(leapForward:)]; 207 [invocation setArgument:&milliseconds atIndex:2]; 209 [EventSendingController saveEvent:invocation]; 375 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(mouseUp:withModifiers:)]]; 376 [invocation setTarget:self]; 377 [invocation setSelector:@selector(mouseUp:withModifiers:)]; 378 [invocation setArgument:&buttonNumber atIndex:2]; 379 [invocation setArgument:&modifiers atIndex:3] [all...] |
/external/proguard/src/proguard/classfile/attribute/ |
Attribute.java | 87 // Delegate the default invocation if the field is null anyway. 103 // Delegate the default invocation if the method is null anyway. 119 // Delegate the default invocation if the code attribute is null anyway.
|
/external/chromium/chrome/browser/ui/cocoa/ |
tracking_area.mm | 42 - (void)forwardInvocation:(NSInvocation*)invocation { 45 [invocation invokeWithTarget:owner_];
|
/external/webkit/Source/WebCore/manual-tests/inspector/ |
bp-in-named-eval-after-reload.html | 14 executable line of the function <code>f1()</code>, the invocation of <code>doNothing()</code>. 16 executable line of the function <code>f2()</code>, the invocation of <code>doNothing()</code>.
|
/libcore/dalvik/src/main/java/dalvik/bytecode/ |
OpcodeInfo.java | 71 * method invocation operation. This includes most things that 72 * look like method invocation at the source level, but it notably
|
/dalvik/tests/081-hot-exceptions/src/ |
Main.java | 33 // A hot method invocation that always encounters exceptions
|