/external/guice/core/src/com/google/inject/ |
Scope.java | 34 * exist in this scope, the provider can use the given unscoped provider to retrieve one. 40 * @param unscoped locates an instance when one doesn't already exist in this scope. 41 * @return a new provider which only delegates to the given unscoped provider when an instance of 44 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped);
|
Scopes.java | 51 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { 52 return unscoped;
|
/external/clang/test/SemaCXX/ |
switch-implicit-fallthrough-per-method.cpp | 41 void unscoped(int n) { function
|
/external/guice/extensions/mini/src/com/google/inject/mini/ |
MiniGuice.java | 156 final Provider<Object> unscoped = local 172 putBinding(key, unscoped, singleton); 248 final Provider<Object> unscoped = local 271 putBinding(new Key(type, null), unscoped, singleton); 277 final Provider<Object> unscoped = provider; local 285 onlyInstance = unscoped.get();
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
Scope.java | 39 * An internal representation for an unscoped binding. 41 private static final Scope UNSCOPED = new Scope(); 58 * Returns representation for an unscoped binding. 60 static Scope unscoped() { method in class:Scope 61 return UNSCOPED; 66 * of that scope, otherwise returns a representation for an unscoped binding. 70 return scopeAnnotation.isPresent() ? new Scope(scopeAnnotation.get()) : UNSCOPED; 74 * Returns true if the scope is present, i.e. it's not unscoped binding. 143 return annotationMirror == null ? "UNSCOPED" : annotationMirror.toString();
|
ProvisionBinding.java | 226 Scope.unscoped()); 265 Scope.unscoped());
|
Binding.java | 232 return Scope.unscoped();
|
/external/tensorflow/tensorflow/python/saved_model/ |
utils_test.py | 125 unscoped = array_ops.placeholder(dtypes.float32, 1, name="x") 126 tensor_info = utils.build_tensor_info(unscoped)
|
/external/guice/core/test/com/google/inject/ |
ScopesTest.java | 474 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { 475 providers.put(key, unscoped); 476 return unscoped; 504 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { 505 return Scopes.SINGLETON.scope(key, unscoped); 603 public <T> Provider<T> scope(Key<T> key, final Provider<T> unscoped) { 608 return unscoped.get(); [all...] |
CircularDependencyTest.java | 644 * When Scope Providers call their unscoped Provider's get() methods are called, it's possible 725 public <T> Provider<T> scope(final Key<T> key, final Provider<T> unscoped) { 731 T t = unscoped.get();
|
BinderTestSuite.java | 271 UNSCOPED { 812 public <T> Provider<T> scope(Key<T> key, final Provider<T> unscoped) { 819 instance = unscoped.get();
|
/external/guice/core/test/com/google/inject/util/ |
OverrideModuleTest.java | 319 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { 352 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { 353 return unscoped; 591 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { 594 return unscoped;
|
/external/guice/core/test/com/googlecode/guice/ |
Jsr330Test.java | 469 Key<T> key, final com.google.inject.Provider<T> unscoped) { 477 value = unscoped.get();
|
/external/syzkaller/vendor/github.com/ianlancetaylor/demangle/ |
demangle.go | 379 // ::= <unscoped-name> 380 // ::= <unscoped-template-name> <template-args> 383 // <unscoped-name> ::= <unqualified-name> 386 // <unscoped-template-name> ::= <unscoped-name> 421 // <unscoped-template-name> and are about to see 422 // <template-args>. <unscoped-template-name> is a [all...] |
/external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/ |
CheckedProviderTest.java | [all...] |
/external/testng/lib-supplied/ |
guice-2.0.jar | |