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

1 2 3 4 5 6 7 8 91011>>

  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryModuleBuilder.java 95 * .implement(Payment.class, RealPayment.class)
103 * method can be configured using <code>.implement</code>.
114 * .implement(Payment.class, RealPayment.class)
115 * // excluding .implement for Shipment means the implementation class
117 * .implement(Receipt.class, RealReceipt.class)
192 * .implement(Car.class, Names.named("fast"), Porsche.class)
193 * .implement(Car.class, Names.named("clean"), Prius.class)
211 public <T> FactoryModuleBuilder implement(Class<T> source, Class<? extends T> target) { method in class:FactoryModuleBuilder
212 return implement(source, TypeLiteral.get(target));
218 public <T> FactoryModuleBuilder implement(Class<T> source, TypeLiteral<? extends T> target) method in class:FactoryModuleBuilder
225 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, Class<? extends T> target) { method in class:FactoryModuleBuilder
232 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, method in class:FactoryModuleBuilder
240 public <T> FactoryModuleBuilder implement(Class<T> source, Annotation annotation, method in class:FactoryModuleBuilder
248 public <T> FactoryModuleBuilder implement(Class<T> source, Annotation annotation, method in class:FactoryModuleBuilder
256 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, Annotation annotation, method in class:FactoryModuleBuilder
264 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, Annotation annotation, method in class:FactoryModuleBuilder
272 public <T> FactoryModuleBuilder implement(Class<T> source, method in class:FactoryModuleBuilder
280 public <T> FactoryModuleBuilder implement(Class<T> source, method in class:FactoryModuleBuilder
288 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, method in class:FactoryModuleBuilder
296 public <T> FactoryModuleBuilder implement(TypeLiteral<T> source, method in class:FactoryModuleBuilder
304 public <T> FactoryModuleBuilder implement(Key<T> source, Class<? extends T> target) { method in class:FactoryModuleBuilder
311 public <T> FactoryModuleBuilder implement(Key<T> source, TypeLiteral<? extends T> target) { method in class:FactoryModuleBuilder
    [all...]
  /external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
AssistedInjectModule.java 32 .implement(DanceParty.class, DancePartyImpl.class)
  /build/kati/testcase/
find_command_sorted.mk 2 # go: implement generic builtin find
  /prebuilts/go/darwin-x86/test/interface/
receiver1.go 40 p = t // ERROR "does not implement|requires a pointer"
47 p = s // ERROR "does not implement|requires a pointer"
  /prebuilts/go/linux-x86/test/interface/
receiver1.go 40 p = t // ERROR "does not implement|requires a pointer"
47 p = s // ERROR "does not implement|requires a pointer"
  /external/mesa3d/src/gallium/auxiliary/util/
u_init.h 48 #error Unsupported compiler: please find out how to implement global initializers in C on it
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug173.go 8 // functions that get called to implement them
bug231.go 20 i = t // ERROR "not a method|has no methods" "does not implement I"
bug324.go 7 // Test case for issue 1550: a type cannot implement an interface
  /prebuilts/go/darwin-x86/test/fixedbugs/bug248.dir/
bug3.go 41 var i2 I0 = t1(0) // ERROR "does not implement|incompatible"
42 var i3 I1 = t0(0) // ERROR "does not implement|incompatible"
47 var p0i1 p0.I = t1(0) // ERROR "does not implement|incompatible"
48 var p0i2 p1.I = t0(0) // ERROR "does not implement|incompatible"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug173.go 8 // functions that get called to implement them
bug231.go 20 i = t // ERROR "not a method|has no methods" "does not implement I"
bug324.go 7 // Test case for issue 1550: a type cannot implement an interface
  /prebuilts/go/linux-x86/test/fixedbugs/bug248.dir/
bug3.go 41 var i2 I0 = t1(0) // ERROR "does not implement|incompatible"
42 var i3 I1 = t0(0) // ERROR "does not implement|incompatible"
47 var p0i1 p0.I = t1(0) // ERROR "does not implement|incompatible"
48 var p0i2 p1.I = t0(0) // ERROR "does not implement|incompatible"
  /prebuilts/go/darwin-x86/test/fixedbugs/bug324.dir/
prog.go 35 // *Implementation does not implement p.Exported (missing p.private method)
39 // p.Exported does not implement Exported (missing private method)
  /prebuilts/go/linux-x86/test/fixedbugs/bug324.dir/
prog.go 35 // *Implementation does not implement p.Exported (missing p.private method)
39 // p.Exported does not implement Exported (missing private method)
  /external/valgrind/none/tests/solaris/
reserve_sysstat_addr.stderr.exp 5 This may be because the functionality is hard to implement,
reserve_sysstat_zone_addr.stderr.exp 5 This may be because the functionality is hard to implement,
  /prebuilts/go/darwin-x86/src/context/
net_test.go 16 t.Fatal("DeadlineExceeded does not implement net.Error")
  /prebuilts/go/linux-x86/src/context/
net_test.go 16 t.Fatal("DeadlineExceeded does not implement net.Error")
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
FactoryModuleBuilderTest.java 118 .implement(Car.class, Volkswagen.class)
141 .implement(Car.class, AbstractCar.class)
161 install(new FactoryModuleBuilder().implement(Car.class, Mustang.class).build(
182 .implement(Car.class, Names.named("german"), Beetle.class)
183 .implement(Car.class, Names.named("american"), Mustang.class)
199 .implement(Car.class, Mustang.class)
213 .implement(Car.class, Names.named("german"), Beetle.class)
214 .implement(Car.class, Names.named("american"), Mustang.class)
243 .implement(Car.class, Mustang.class)
259 .implement(Car.class, Mustang.class
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue6997_linux.go 8 // (NPTL uses SIGRTMIN to implement thread cancelation)
issue7560.go 29 // some mingw don't implement __packed__ correctly.
  /prebuilts/go/darwin-x86/src/crypto/aes/
cipher_generic.go 15 // implementations of AES should implement their
modes_test.go 54 t.Fatalf("testBlock does not implement the gcmAble interface")
76 t.Fatalf("testBlock does not implement the cbcEncAble interface")
88 t.Fatalf("testBlock does not implement the cbcDecAble interface")
106 t.Fatalf("testBlock does not implement the ctrAble interface")

Completed in 630 milliseconds

1 2 3 4 5 6 7 8 91011>>