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

1 2

  /external/easymock/src/org/easymock/internal/
IMocksBehavior.java 32 Result addActual(Invocation 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...]
IMocksControlState.java 22 Object invoke(Invocation invocation) throws Throwable;
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...]
MockInvocationHandler.java 39 new Invocation(proxy, method, args));
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);
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);
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) {
Result.java 76 Invocation invocation = LastControl.getCurrentInvocation(); local
78 return invocation.getMethod().invoke(value,
79 invocation.getArguments());
84 + invocation.getMethod() + "]", e);
ObjectMethodsFilter.java 40 if (name != null && !Invocation.isJavaIdentifier(name)) {
MocksBehavior.java 70 private final Result getStubResult(Invocation actual) {
92 public final Result addActual(Invocation actual) {
RecordState.java 73 public java.lang.Object invoke(Invocation invocation) {
76 lastInvocation = new ExpectedInvocation(invocation, lastMatchers);
78 return emptyReturnValueFor(invocation.getMethod().getReturnType());
  /external/easymock/src/org/easymock/
EasyMock.java 170 * Returns the expectation setter for the last expected invocation in the
187 * Returns the expectation setter for the last expected invocation in the
    [all...]
  /external/libvpx/examples/includes/geshi/geshi/
rails.php 187 'ActionWebService::Invocation::ClassMethods',
  /external/elfutils/
config.status 263 generated by GNU Autoconf 2.59. Invocation command line was
    [all...]
configure     [all...]
  /external/grub/
config.status 263 generated by GNU Autoconf 2.59. Invocation command line was
    [all...]
configure     [all...]
  /external/icu4c/
config.status 263 generated by GNU Autoconf 2.59. Invocation command line was
    [all...]
  /external/bison/
config.status 263 generated by GNU Autoconf 2.59. Invocation command line was
    [all...]
  /external/strace/
config.status 263 generated by GNU Autoconf 2.59. Invocation command line was
    [all...]
  /external/fdlibm/
configure 925 generated by GNU Autoconf 2.59. Invocation command line was
    [all...]
  /external/clearsilver/
configure 988 generated by GNU Autoconf 2.59. Invocation command line was
    [all...]
  /external/dropbear/
configure 989 generated by GNU Autoconf 2.59. Invocation command line was
    [all...]
  /external/libpng/
configure     [all...]

Completed in 579 milliseconds

1 2