Home
last modified time | relevance | path

Searched refs:IFoo (Results 1 – 2 of 2) sorted by relevance

/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tools.Tests.pas110 IFoo = interface(IANTLRInterface) interface
117 TFoo = class(TANTLRObject, ICloneable, IFoo)
136 Foo: IFoo;
191 Foo: IFoo;
208 Check(Supports(ReturnValue, IFoo));
209 CheckEquals((ReturnValue as IFoo).Value,(FICloneable as IFoo).Value);
/external/guice/core/test/com/google/inject/
DBindingTest.java380 bind(IFoo.class).toConstructor(constructor); in testInterfaceToImplementationConstructor()
384 injector.getInstance(IFoo.class); in testInterfaceToImplementationConstructor()
387 public static interface IFoo {} interface in BindingTest
388 public static class CFoo implements IFoo {}