HomeSort by relevance Sort by last modified time
    Searched refs:invocation (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/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/easymock/src/org/easymock/internal/
ExpectedInvocation.java 31 private final Invocation invocation; field in class:ExpectedInvocation
38 public ExpectedInvocation(Invocation invocation,
40 this(invocation, matchers, null);
43 private ExpectedInvocation(Invocation invocation,
46 this.invocation = invocation;
48 this.matchers = (matcher == null) ? createMissingMatchers(invocation,
    [all...]
ReplayState.java 36 public Object invoke(Invocation invocation) throws Throwable {
44 return invokeInner(invocation);
51 return invokeInner(invocation);
54 private Object invokeInner(Invocation invocation) throws Throwable {
55 LastControl.pushCurrentInvocation(invocation);
57 Result result = behavior.addActual(invocation);
IMocksBehavior.java 32 Result addActual(Invocation invocation);
Result.java 76 Invocation invocation = LastControl.getCurrentInvocation(); local
78 return invocation.getMethod().invoke(value,
79 invocation.getArguments());
84 + invocation.getMethod() + "]", e);
UnorderedBehavior.java 47 public Result addActual(Invocation actual) {
78 public List<ErrorMessage> getMessages(Invocation invocation) {
84 boolean match = invocation != null
85 && entry.getExpectedInvocation().matches(invocation);
IMocksControlState.java 22 Object invoke(Invocation invocation) throws Throwable;
LastControl.java 31 private static final ThreadLocal<Stack<Invocation>> threadToCurrentInvocation = new ThreadLocal<Stack<Invocation>>();
103 public static Invocation getCurrentInvocation() {
104 Stack<Invocation> stack = threadToCurrentInvocation.get();
111 public static void pushCurrentInvocation(Invocation invocation) {
112 Stack<Invocation> stack = threadToCurrentInvocation.get();
114 stack = new Stack<Invocation>();
117 stack.push(invocation);
121 Stack<Invocation> stack = threadToCurrentInvocation.get();
    [all...]
RecordState.java 73 public java.lang.Object invoke(Invocation invocation) {
76 lastInvocation = new ExpectedInvocation(invocation, lastMatchers);
78 return emptyReturnValueFor(invocation.getMethod().getReturnType());
  /external/webkit/JavaScriptCore/wtf/
MainThread.cpp 86 FunctionWithContext invocation; local
92 invocation = functionQueue().first();
96 invocation.function(invocation.context);
97 if (invocation.syncFlag)
98 invocation.syncFlag->signal();
ThreadingWin.cpp 203 ThreadFunctionInvocation invocation = *static_cast<ThreadFunctionInvocation*>(param); local
206 void* result = invocation.function(invocation.data);
220 ThreadFunctionInvocation* invocation = new ThreadFunctionInvocation(entryPoint, data); local
224 HANDLE threadHandle = CreateThread(0, 0, (LPTHREAD_START_ROUTINE)wtfThreadEntryPoint, invocation, 0, (LPDWORD)&threadIdentifier);
226 HANDLE threadHandle = reinterpret_cast<HANDLE>(_beginthreadex(0, 0, wtfThreadEntryPoint, invocation, 0, &threadIdentifier));
  /external/webkit/WebCore/bridge/objc/
objc_instance.mm 186 NSInvocation* invocation = [NSInvocation invocationWithMethodSignature:signature];
187 [invocation setSelector:method->selector()];
188 [invocation setTarget:_instance.get()];
199 [invocation setArgument:&jsName atIndex:2];
207 [invocation setArgument:&objcArgs atIndex:3];
223 [invocation setArgument:&value.objectValue atIndex:i];
227 [invocation setArgument:&value.charValue atIndex:i];
231 [invocation setArgument:&value.shortValue atIndex:i];
235 [invocation setArgument:&value.intValue atIndex:i];
239 [invocation setArgument:&value.longValue atIndex:i]
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
EventSendingController.mm 193 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(leapForward:)]];
194 [invocation setTarget:self];
195 [invocation setSelector:@selector(leapForward:)];
196 [invocation setArgument:&milliseconds atIndex:2];
198 [EventSendingController saveEvent:invocation];
359 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(mouseUp:withModifiers:)]];
360 [invocation setTarget:self];
361 [invocation setSelector:@selector(mouseUp:withModifiers:)];
362 [invocation setArgument:&buttonNumber atIndex:2];
363 [invocation setArgument:&modifiers atIndex:3]
    [all...]
  /external/webkit/WebCore/platform/network/cf/
SocketStreamHandleCFNet.cpp 133 void SocketStreamHandle::pacExecutionCallbackMainThread(void* invocation)
135 MainThreadPACCallbackInfo* info = static_cast<MainThreadPACCallbackInfo*>(invocation);
468 void SocketStreamHandle::readStreamCallbackMainThread(void* invocation)
470 MainThreadEventCallbackInfo* info = static_cast<MainThreadEventCallbackInfo*>(invocation);
474 void SocketStreamHandle::writeStreamCallbackMainThread(void* invocation)
476 MainThreadEventCallbackInfo* info = static_cast<MainThreadEventCallbackInfo*>(invocation);
  /external/e2fsprogs/lib/ss/
Makefile.in 53 invocation.o help.o \
58 SRCS= $(srcdir)/invocation.c $(srcdir)/help.c \
199 invocation.o: $(srcdir)/invocation.c $(srcdir)/ss_internal.h $(srcdir)/ss.h \
  /external/skia/src/opts/
SkBlitRow_opts_arm.cpp 844 static int invocation; local
    [all...]
  /build/core/
cleanbuild.mk 200 # Define the rules for commandline invocation.
  /external/webkit/WebKit/mac/WebView/
WebPDFView.mm     [all...]
WebView.mm     [all...]
  /external/v8/src/
messages.js 161 illegal_invocation: "Illegal invocation",
string.js 443 // and subject for the replace function invocation.
  /external/blktrace/doc/
blktrace.tex 371 \item The default behaviour for blktrace is to run forever until explicitly killed by the user (via a control-C, or \emph{kill} utility invocation). There are two ways to modify this:
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]
  /external/grub/docs/
texinfo.tex     [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 3311 milliseconds

1 2