/external/guice/extensions/grapher/test/com/google/inject/grapher/demo/ |
PrivateTestModule.java | 22 * Module to test private modules and exposed bindings. 27 interface Exposed {} 28 static class Hidden implements Exposed {} 31 bind(Exposed.class).to(Hidden.class); 32 expose(Exposed.class);
|
DeLorian.java | 27 @Inject PrivateTestModule.Exposed exposed; field in class:DeLorian
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/sub/ |
Exposed.java | 7 public class Exposed { 15 @Inject Exposed(Generic<PackagePrivate> gpp, Generic<PackagePrivateContainer.PublicEnclosed> gppc) {
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/ |
GenericComponent.java | 19 import test.sub.Exposed; 34 Exposed exposed(); method in interface:GenericComponent
|
/external/guice/core/src/com/google/inject/ |
Exposed.java | 28 * private module to indicate that the provided binding is exposed. 34 public @interface Exposed {}
|
/external/guice/core/test/com/google/inject/spi/ |
ModuleAnnotatedMethodScannerTest.java | 30 import com.google.inject.Exposed; 252 @Exposed @TestProvides @Named("foo") String foo() { 264 @Exposed @TestProvides @Named("foo") String foo() { 279 @Exposed @TestProvides @Named("foo") String foo() { 293 @Exposed @TestProvides @Named("foo") String foo() { 308 @Exposed @TestProvides @Named("foo") String foo() { 323 @Exposed @TestProvides @Named("foo") String foo() { 338 @Exposed @TestProvides @Named("foo") String foo() { 345 @Exposed @TestProvides @Named("foo") String foo() { 360 @Exposed @TestProvides @Named("foo") String foo() [all...] |
/external/guice/core/test/com/google/inject/ |
PrivateModuleTest.java | 101 @Provides @Exposed 109 "Exposed bindings are only applicable to private binders.", 124 "Exposed bindings are only applicable to private binders.", 153 @Provides @Exposed @Named("d") String providePublicD() { 218 fail("AB was exposed but not bound"); 293 bind(String.class).annotatedWith(named("bound outer, exposed outer")).toInstance("boeo"); 294 expose(String.class).annotatedWith(named("bound outer, exposed outer")); 295 bind(String.class).annotatedWith(named("bound outer, exposed none")).toInstance("boen"); 296 expose(String.class).annotatedWith(named("bound inner, exposed both")); 300 bind(String.class).annotatedWith(named("bound inner, exposed both")).toInstance("bieb") [all...] |
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/ |
CheckedProviderMethod.java | 21 import com.google.inject.Exposed; 50 private final boolean exposed; field in class:CheckedProviderMethod 71 this.exposed = method.isAnnotationPresent(Exposed.class); 96 if (exposed) { 98 // misplaced @Exposed, calling this will add an error to the binder's error queue
|
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/ |
GenericTest.java | 25 import test.sub.Exposed; 117 Exposed exposed = component.exposed(); local 118 assertThat(exposed.gpp.t).isNotNull(); 119 assertThat(exposed.gpp2).isNotNull();
|
/external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/ |
CheckedProviderMethodsModuleTest.java | 21 import com.google.inject.Exposed; 118 @CheckedProvides(RpcProvider.class) @Named("fruit") @Exposed
|
/external/guice/core/src/com/google/inject/internal/ |
ProviderMethod.java | 23 import com.google.inject.Exposed; 103 private final boolean exposed; field in class:ProviderMethod 118 this.exposed = method.isAnnotationPresent(Exposed.class); 132 // exposed for GIN 156 if (exposed) { 158 // misplaced @Exposed, calling this will add an error to the binder's error queue
|
/external/guice/core/test/com/google/inject/util/ |
OverrideModuleTest.java | 33 import com.google.inject.Exposed; 558 @Provides @Exposed @Named(RESULT)
|
/prebuilts/go/darwin-x86/src/syscall/ |
syscall_dragonfly.go | 120 * Exposed directly
|
syscall_openbsd.go | 119 * Exposed directly
|
syscall_darwin.go | 215 * Exposed directly
|
syscall_freebsd.go | 140 * Exposed directly
|
syscall_netbsd.go | 141 * Exposed directly
|
syscall_solaris.go | 433 * Exposed directly
|
/prebuilts/go/linux-x86/src/syscall/ |
syscall_dragonfly.go | 120 * Exposed directly
|
syscall_openbsd.go | 119 * Exposed directly
|
syscall_darwin.go | 215 * Exposed directly
|
syscall_freebsd.go | 140 * Exposed directly
|
syscall_netbsd.go | 141 * Exposed directly
|
syscall_solaris.go | 433 * Exposed directly
|
/external/chromium-trace/catapult/third_party/flot/ |
NEWS.md | 44 - Exposed the dateGenerator function on the plot object, as it used to be [all...] |