Home
last modified time | relevance | path

Searched refs:unscoped (Results 1 – 25 of 26) sorted by relevance

12

/external/dagger2/java/dagger/internal/codegen/writing/
DSwitchingProviderInstanceSupplier.java65 Binding binding, FrameworkInstanceCreationExpression unscoped) { in scope() argument
69 return unscoped; in scope()
77 unscoped.creationExpression()); in scope()
DBindingRepresentations.java29 Binding binding, FrameworkInstanceCreationExpression unscoped) { in scope() argument
34 unscoped.creationExpression()); in scope()
/external/catch2/docs/
Dlogging.md37 - Lifetime of an unscoped message is not tied to its own scope.
38 - An unscoped message can be reported by the first following assertion only, regardless of the resu…
59 UNSCOPED_INFO("First unscoped info");
63 UNSCOPED_INFO("Second unscoped info");
78 First unscoped info
81 "First unscoped info" message will be cleared after the first `CHECK`, while "First info" message w…
85 Second unscoped info
/external/guice/extensions/mini/src/com/google/inject/mini/
DMiniGuice.java156 final Provider<Object> unscoped = in addProviderMethodBinding() local
172 putBinding(key, unscoped, singleton); in addProviderMethodBinding()
248 final Provider<Object> unscoped = in addJitBinding() local
271 putBinding(new Key(type, null), unscoped, singleton); in addJitBinding()
277 final Provider<Object> unscoped = provider; in putBinding() local
285 onlyInstance = unscoped.get(); in putBinding()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/concepts/concepts.lang/concept.swappable/
Dswappable.pass.cpp129 enum unscoped { hello, world }; enum
130 void swap(unscoped&, unscoped&);
136 static_assert(std::swappable<swappable_namespace::unscoped>);
/external/guice/core/src/com/google/inject/
DScopes.java51 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) {
52 return unscoped;
DScope.java44 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped); in scope() argument
/external/cronet/buildtools/third_party/libc++/trunk/test/std/iterators/iterator.requirements/iterator.cust/iterator.cust.move/
Diter_move.pass.cpp159 auto unscoped = check_unqualified_lookup::unscoped_enum::a; in test() local
160 assert(std::ranges::iter_move(unscoped) == check_unqualified_lookup::unscoped_enum::a); in test()
161 assert(!noexcept(std::ranges::iter_move(unscoped))); in test()
/external/clang/test/SemaCXX/
Dswitch-implicit-fallthrough-per-method.cpp41 void unscoped(int n) { in unscoped() function
/external/guice/core/test/com/google/inject/util/
DOverrideModuleTest.java319 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { in testOverrideScopeAnnotation()
352 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { in testFailsIfOverridenScopeInstanceHasBeenUsed()
353 return unscoped; in testFailsIfOverridenScopeInstanceHasBeenUsed()
591 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { in scope() argument
594 return unscoped; in scope()
/external/guice/core/test/com/google/inject/
DScopesTest.java474 public <T> Provider<T> scope(Key<T> key, Provider<T> unscoped) { in scope() argument
475 providers.put(key, unscoped); in scope()
476 return unscoped; in scope()
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) { in scope() argument
608 return unscoped.get(); in scope()
DCircularDependencyTest.java725 public <T> Provider<T> scope(final Key<T> key, final Provider<T> unscoped) { in scope() argument
731 T t = unscoped.get(); in scope()
DBinderTestSuite.java812 public <T> Provider<T> scope(Key<T> key, final Provider<T> unscoped) { in scope() argument
819 instance = unscoped.get(); in scope()
/external/tensorflow/tensorflow/python/saved_model/
Dutils_test.py161 unscoped = array_ops.placeholder(dtypes.float32, 1, name="x")
162 tensor_info = utils.build_tensor_info(unscoped)
/external/catch2/projects/SelfTest/Baselines/
Dconsole.std.approved.txt1176 just failure after unscoped info
1183 previous unscoped info SHOULD not be seen
1258 mix info, unscoped info and warning
1283 not prints unscoped info from previous failures
1294 prints unscoped info on failure
1306 prints unscoped info only for the first assertion
1340 stacks unscoped info in loops
Dconsole.sw.approved.txt11851 just failure after unscoped info
11858 previous unscoped info SHOULD not be seen
11870 just unscoped info
11876 No assertions in test case 'just unscoped info'
12074 mix info, unscoped info and warning
12081 unscoped info
12086 unscoped info
12090 No assertions in test case 'mix info, unscoped info and warning'
12192 not prints unscoped info from previous failures
12322 print unscoped info if passing unscoped info is printed
[all …]
Dcompact.sw.approved.txt1613 Message.tests.cpp:<line number>: failed: explicitly with 1 message: 'previous unscoped info SHOULD …
1635 Message.tests.cpp:<line number>: warning: 'info' with 2 messages: 'unscoped info' and 'and warn may…
1636 Message.tests.cpp:<line number>: warning: 'info' with 2 messages: 'unscoped info' and 'they are not…
/external/guice/core/test/com/googlecode/guice/
DJsr330Test.java469 Key<T> key, final com.google.inject.Provider<T> unscoped) { in scope() argument
477 value = unscoped.get(); in scope()
/external/clang/docs/
DReleaseNotes.rst113 - Clang now enforces the rule that an enumerator of an unscoped enumeration declared at
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/
Dscoping-shim.min.js.map1unscoped-style-handler.js","src/style-util.js","src/style-transformer.js","src/scoping-shim.js","s…
Dapply-shim.min.js.map1unscoped-style-handler.js","src/style-util.js","src/apply-shim.js","src/common-utils.js","src/temp…
/external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
DCheckedProviderTest.java1630 public <T> Provider<T> scope(final Key<T> key, Provider<T> unscoped) { in testProvisionExceptionOnDependenciesOfCxtor()
/external/libchrome/mojo/public/cpp/system/
DREADME.md36 at the underlying unscoped handle type as well as the `->` operator to
/external/swiftshader/
DCMakeLists.txt422 …"/we4471" # 'enumeration': a forward declaration of an unscoped enumeration must have an underlyin…
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
Dwebcomponents.js4596 var unscoped = this.extractUnscopedRulesFromCssText(cssText);
4607 cssText = cssText + "\n" + unscoped;

12