HomeSort by relevance Sort by last modified time
    Searched refs:FooImpl (Results 1 - 9 of 9) sorted by null

  /external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
ForwardsInvocationsTest.java 18 private static final class FooImpl implements Foo {
27 ForwardsInvocations forwardsInvocations = new ForwardsInvocations(new FooImpl());
33 ForwardsInvocations forwardsInvocations = new ForwardsInvocations(new FooImpl());
  /external/mockito/src/test/java/org/mockitousage/stubbing/
StubbingWithDelegateVarArgsTest.java 20 private static final class FooImpl implements Foo {
32 .defaultAnswer(delegatesTo(new FooImpl())));
39 .defaultAnswer(delegatesTo(new FooImpl())));
47 .defaultAnswer(delegatesTo(new FooImpl())));
  /external/guice/core/test/com/google/inject/
JitBindingsTest.java 62 bind(Foo.class).to(FooImpl.class);
67 // FooImpl was implicitly bound, it is an error to call getInstance or getProvider,
70 ensureFails(injector, ALLOW_BINDING, FooImpl.class);
78 bind(Foo.class).to(FooImpl.class);
85 // FooImpl was implicitly bound, it is an error to call getInstance or getProvider,
88 ensureFails(injector, ALLOW_BINDING, FooImpl.class);
96 bind(Foo.class).to(FooImpl.class).asEagerSingleton();
101 // FooImpl was implicitly bound, it is an error to call getInstance or getProvider,
104 ensureFails(injector, ALLOW_BINDING, FooImpl.class);
112 bind(Foo.class).to(FooImpl.class).asEagerSingleton()
    [all...]
DuplicateBindingsTest.java 46 private FooImpl foo = new FooImpl();
47 private Provider<Foo> pFoo = Providers.<Foo>of(new FooImpl());
49 private Class<? extends Foo> clFoo = FooImpl.class;
50 private Constructor<FooImpl> cFoo = FooImpl.cxtor();
65 assertTrue(bindings.remove(Key.get(FooImpl.class)));
142 String segment4 = "A binding to " + FooImpl.class.getName() + " was already configured at "
160 new SimpleModule(new FooImpl(), Providers.<Foo>of(new FooImpl()),
    [all...]
  /external/guice/extensions/jmx/test/com/google/inject/tools/jmx/
JmxTest.java 36 static class FooImpl implements Foo {}
53 bind(Foo.class).to(FooImpl.class);
57 .to(FooImpl.class);
  /external/mockito/src/test/java/org/mockitousage/debugging/
VerboseLoggingOfInvocationsOnMockTest.java 126 FooImpl fooSpy = mock(FooImpl.class,
127 withSettings().spiedInstance(new FooImpl()).verboseLogging());
175 static class FooImpl implements Foo {
  /external/libmojo/mojo/public/tools/bindings/
generate_type_mappings.py 13 type_mappings=mojom.Foo=FooImpl
19 "typename": "FooImpl",
48 "typename": "FooImpl",
  /external/llvm/unittests/ExecutionEngine/Orc/
ObjectLinkingLayerTest.cpp 155 Function *FooImpl = MB2.createFunctionDecl<int32_t(void)>("foo");
156 BasicBlock *FooEntry = BasicBlock::Create(Context, "entry", FooImpl);
  /external/clang/test/SemaCXX/
uninitialized.cpp     [all...]

Completed in 253 milliseconds