/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);
|
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...] |
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);
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/info/ |
dir | 46 * autopoint: (gettext)autopoint Invocation. 48 * envsubst: (gettext)envsubst Invocation. 50 * gettextize: (gettext)gettextize Invocation. 54 * msgattrib: (gettext)msgattrib Invocation. 56 * msgcat: (gettext)msgcat Invocation. Combine several PO files. 57 * msgcmp: (gettext)msgcmp Invocation. Compare a PO file and template. 58 * msgcomm: (gettext)msgcomm Invocation. Match two PO files. 59 * msgconv: (gettext)msgconv Invocation. Convert PO file to encoding. 60 * msgen: (gettext)msgen Invocation. Create an English PO file. 61 * msgexec: (gettext)msgexec Invocation. Process a PO file [all...] |
dir.old | 46 * autopoint: (gettext)autopoint Invocation. 48 * envsubst: (gettext)envsubst Invocation. 50 * gettextize: (gettext)gettextize Invocation. 54 * msgattrib: (gettext)msgattrib Invocation. 56 * msgcat: (gettext)msgcat Invocation. Combine several PO files. 57 * msgcmp: (gettext)msgcmp Invocation. Compare a PO file and template. 58 * msgcomm: (gettext)msgcomm Invocation. Match two PO files. 59 * msgconv: (gettext)msgconv Invocation. Convert PO file to encoding. 60 * msgen: (gettext)msgen Invocation. Create an English PO file. 61 * msgexec: (gettext)msgexec Invocation. Process a PO file [all...] |
/dalvik/dx/tests/056-dex-call-interface/ |
info.txt | 2 a couple cases of interface method invocation work properly.
|
/dalvik/dx/tests/057-dex-call-virtual/ |
info.txt | 2 a couple cases of regular virtual method invocation work properly.
|
/dalvik/dx/tests/058-dex-call-direct/ |
info.txt | 2 a couple cases of direct instance method invocation work properly.
|
/dalvik/dx/tests/059-dex-call-super/ |
info.txt | 2 a couple cases of superclass virtual method invocation work properly.
|
/dalvik/dx/tests/060-dex-call-static/ |
info.txt | 2 a couple cases of static method invocation work properly.
|
/external/chromium/third_party/icu/source/common/ |
mutex.cpp | 12 /* If UCONFIG_NO_SERVICE, then there is no invocation of Mutex elsewhere in
|
/external/easymock/src/org/easymock/ |
IExpectationSetters.java | 19 * Allows setting expectations for an associated expected invocation.
28 * Sets a return value that will be returned for the expected invocation.
37 * Sets a throwable that will be thrown for the expected invocation.
47 * invocation (either return a value, or throw an exception).
50 * the object used to answer the invocation.
69 * invocation.
77 * Sets a stub throwable that will be thrown for the expected invocation.
86 * expected invocation (either return a value, or throw an exception).
89 * the object used to answer the invocation.
105 * Sets stub behavior for the expected invocation (this is needed for void [all...] |
/dalvik/docs/opcodes/ |
opcode-11-return-object.html | 61 The stack frame of the current method invocation is removed from the stack. 72 The stack frame that caused this method invocation becomes valid. This 77 the invoke instruction that caused this method invocation. 82 this method invocation, and this instructions needs to be a
|
opcode-0e-return-void.html | 55 The stack frame of the current method invocation is removed from the stack. 65 The stack frame that caused this method invocation becomes valid. This 71 invocation.
|
opcode-0f-return.html | 65 The stack frame of the current method invocation is removed from the stack. 75 The stack frame that caused this method invocation becomes valid. This 81 method invocation. 86 this method invocation, and this instructions needs to be a move-result
|
opcode-10-return-wide.html | 65 The stack frame of the current method invocation is removed from the stack. 75 The stack frame that caused this method invocation becomes valid. This 80 the invoke instruction that caused this method invocation. 85 this method invocation, and this instructions needs to be a
|
/external/e2fsprogs/lib/ss/ |
ss_err.et | 10 "No current invocation"
|
/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/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();
|
/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/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...] |