/external/libcxx/include/experimental/ |
D | any | 2 //===------------------------------ any -----------------------------------===// 15 experimental/any synopsis 27 class any 31 // 6.3.1 any construct/destruct 32 any() noexcept; 34 any(const any& other); 35 any(any&& other) noexcept; 38 any(ValueType&& value); 40 ~any(); 42 // 6.3.2 any assignments [all …]
|
/external/llvm/bindings/ocaml/transforms/scalar_opts/ |
D | llvm_scalar_opts.ml | 11 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 14 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 17 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 20 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 23 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 26 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 29 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 32 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 35 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 38 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit [all …]
|
D | llvm_scalar_opts.mli | 17 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 22 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 27 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 32 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 37 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 42 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 47 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 52 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 57 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit 62 : [< Llvm.PassManager.any ] Llvm.PassManager.t -> unit [all …]
|
/external/guice/core/test/com/google/inject/matcher/ |
D | MatcherTest.java | 22 import static com.google.inject.matcher.Matchers.any; 49 assertTrue(any().matches(null)); in testAny() 50 assertEquals("any()", any().toString()); in testAny() 51 assertEqualsBothWays(any(), any()); in testAny() 52 assertFalse(any().equals(not(any()))); in testAny() 56 assertFalse(not(any()).matches(null)); in testNot() 57 assertEquals("not(any())", not(any()).toString()); in testNot() 58 assertEqualsBothWays(not(any()), not(any())); in testNot() 59 assertFalse(not(any()).equals(any())); in testNot() 63 assertTrue(any().and(any()).matches(null)); in testAnd() [all …]
|
/external/llvm/test/MC/Mips/ |
D | module-directive-bad.s | 6 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 10 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 14 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 18 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 22 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 26 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 30 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 34 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code 38 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code 42 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code [all …]
|
/external/libcxx/test/std/experimental/any/any.class/any.assign/ |
D | copy.pass.cpp | 25 using std::experimental::any; 35 any lhs(LHS(1)); in test_copy_assign() 36 any const rhs(RHS(2)); in test_copy_assign() 60 any lhs; in test_copy_assign_empty() 61 any const rhs(LHS(42)); in test_copy_assign_empty() 77 any lhs(LHS(1)); in test_copy_assign_empty() 78 any const rhs; in test_copy_assign_empty() 97 any a; in test_copy_assign_self() 105 any a((small(1))); in test_copy_assign_self() 118 any a(large(1)); in test_copy_assign_self() [all …]
|
D | move.pass.cpp | 24 using std::experimental::any; 33 any a(s1); in test_move_assign() 35 any a2(s2); in test_move_assign() 56 any a; in test_move_assign_empty() 57 any a2((LHS(1))); in test_move_assign_empty() 70 any a((LHS(1))); in test_move_assign_empty() 71 any a2; in test_move_assign_empty() 86 any a1; in test_move_assign_noexcept() 87 any a2; in test_move_assign_noexcept()
|
D | value.pass.cpp | 25 using std::experimental::any; 35 any lhs(LHS(1)); in test_assign_value() 36 any const rhs(RHS(2)); in test_assign_value() 56 any lhs(LHS(1)); in test_assign_value() 57 any rhs(RHS(2)); in test_assign_value() 82 any lhs; in test_assign_value_empty() 97 any lhs; in test_assign_value_empty() 118 [](any& lhs, auto&& rhs) { in test_assign_throws() 131 any lhs; in test_assign_throws() 141 any lhs((small(2))); in test_assign_throws() [all …]
|
/external/valgrind/drd/ |
D | drd_clientobj.c | 97 if (p && p->any.type == t) in DRD_() 113 if (a1 <= p->any.a1 && p->any.a1 < a2) in DRD_() 139 p->any.a1 = a1; in DRD_() 140 p->any.type = t; in DRD_() 141 p->any.first_observed_at = VG_(record_ExeContext)(VG_(get_running_tid)(), 0); in DRD_() 163 tl_assert(p->any.type == t); in DRD_() 181 DRD_(trace_msg)("Removing client object 0x%lx of type %d", p->any.a1, in clientobj_remove_obj() 182 (Int)p->any.type); in clientobj_remove_obj() 189 tl_assert(p->any.cleanup); in clientobj_remove_obj() 190 (*p->any.cleanup)(p); in clientobj_remove_obj() [all …]
|
/external/libcxx/test/std/experimental/any/any.nonmembers/any.cast/ |
D | any_cast_pointer.pass.cpp | 26 using std::experimental::any; 31 any a; in test_cast_is_noexcept() 34 any const& ca = a; in test_cast_is_noexcept() 40 any a; in test_cast_return_type() 44 any const& ca = a; in test_cast_return_type() 51 any* a = nullptr; in test_cast_nullptr() 55 any const* ca = nullptr; in test_cast_nullptr() 63 any a; in test_cast_empty() 67 any const& ca = a; in test_cast_empty() 73 any a(42); in test_cast_empty() [all …]
|
D | any_cast_reference.pass.cpp | 31 using std::experimental::any; 38 any a; in test_cast_is_not_noexcept() 39 static_assert(!noexcept(any_cast<int>(static_cast<any&>(a))), ""); in test_cast_is_not_noexcept() 40 static_assert(!noexcept(any_cast<int>(static_cast<any const&>(a))), ""); in test_cast_is_not_noexcept() 41 static_assert(!noexcept(any_cast<int>(static_cast<any &&>(a))), ""); in test_cast_is_not_noexcept() 46 any a; in test_cast_return_type() 63 any const& ca = a; in test_cast_return_type() 72 void checkThrows(any& a) in checkThrows() 85 any_cast<ConstT>(static_cast<any const&>(a)); in checkThrows() 94 any_cast<Type>(static_cast<any&&>(a)); in checkThrows() [all …]
|
D | const_correctness.fail.cpp | 26 using std::experimental::any; in main() 29 any a; in main() 32 any_cast<TestType &>(static_cast<any const&>(a)); // expected-note {{requested here}} in main() 33 any_cast<TestType &&>(static_cast<any const&>(a)); // expected-note {{requested here}} in main() 36 any_cast<TestType2 &>(static_cast<any const&&>(a)); // expected-note {{requested here}} in main() 37 any_cast<TestType2 &&>(static_cast<any const&&>(a)); // expected-note {{requested here}} in main()
|
D | not_copy_constructible.fail.cpp | 27 using std::experimental::any; 39 any a; in main() 40 any_cast<no_copy>(static_cast<any&>(a)); in main() 41 any_cast<no_copy>(static_cast<any const&>(a)); in main() 42 any_cast<no_copy>(static_cast<any &&>(a)); in main()
|
/external/dagger2/producers/src/test/java/dagger/producers/monitoring/internal/ |
D | MonitorsTest.java | 31 import static org.mockito.Matchers.any; 67 when(mockProductionComponentMonitorFactory.create(any(Object.class))).thenReturn(null); in singleMonitor_nullProductionComponentMonitor() 78 .create(any(Object.class)); in singleMonitor_throwingProductionComponentMonitorFactory() 87 when(mockProductionComponentMonitorFactory.create(any(Object.class))) in singleMonitor_nullProducerMonitor() 89 when(mockProductionComponentMonitor.producerMonitorFor(any(ProducerToken.class))) in singleMonitor_nullProducerMonitor() 101 when(mockProductionComponentMonitorFactory.create(any(Object.class))) in singleMonitor_throwingProductionComponentMonitor() 105 .producerMonitorFor(any(ProducerToken.class)); in singleMonitor_throwingProductionComponentMonitor() 161 doThrow(new RuntimeException("monkey")).when(mockProducerMonitor).succeeded(any(Object.class)); in singleMonitor_throwingProducerMonitorSuccess() 185 doThrow(new RuntimeException("monkey")).when(mockProducerMonitor).failed(any(Throwable.class)); in singleMonitor_throwingProducerMonitorFailure() 206 when(mockProductionComponentMonitorFactoryA.create(any(Object.class))).thenReturn(null); in multipleMonitors_nullProductionComponentMonitors() [all …]
|
/external/libcxx/test/std/experimental/any/any.class/any.modifiers/ |
D | swap.pass.cpp | 23 using std::experimental::any; 31 any a1((LHS(1))); in test_swap() 32 any a2(RHS{2}); in test_swap() 54 any a1((Tp(1))); in test_swap_empty() 55 any a2; in test_swap_empty() 67 any a1((Tp(1))); in test_swap_empty() 68 any a2; in test_swap_empty() 84 any a1; in test_noexcept() 85 any a2; in test_noexcept()
|
/external/openssh/openbsd-compat/ |
D | strtoll.c | 55 int neg, any, cutlim; in strtoll() local 111 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoll() 120 if (any < 0) in strtoll() 124 any = -1; in strtoll() 128 any = 1; in strtoll() 134 any = -1; in strtoll() 138 any = 1; in strtoll() 145 *endptr = (char *) (any ? s - 1 : nptr); in strtoll()
|
D | strtoul.c | 53 int neg, any, cutlim; in strtoul() local 81 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoul() 90 if (any < 0) in strtoul() 93 any = -1; in strtoul() 97 any = 1; in strtoul() 102 if (neg && any > 0) in strtoul() 105 *endptr = (char *) (any ? s - 1 : nptr); in strtoul()
|
D | strtoull.c | 55 int neg, any, cutlim; in strtoull() local 83 for (acc = 0, any = 0;; c = (unsigned char) *s++) { in strtoull() 92 if (any < 0) in strtoull() 95 any = -1; in strtoull() 99 any = 1; in strtoull() 104 if (neg && any > 0) in strtoull() 107 *endptr = (char *) (any ? s - 1 : nptr); in strtoull()
|
/external/libcxx/test/std/experimental/any/any.class/any.cons/ |
D | move.pass.cpp | 25 using std::experimental::any; 37 any a(v); in test_move_does_not_throw() 42 any const a2(std::move(a)); in test_move_does_not_throw() 58 any a1; in test_move_empty() 59 any a2(std::move(a1)); in test_move_empty() 70 any a((Type(42))); in test_move() 78 any a2(std::move(a)); in test_move() 94 std::is_nothrow_move_constructible<any>::value in main()
|
D | copy.pass.cpp | 23 using std::experimental::any; 31 any const a((Type(42))); in test_copy_throws() 34 any const a2(a); in test_copy_throws() 50 any a1; in test_copy_empty() 51 any a2(a1); in test_copy_empty() 65 any a((Type(42))); in test_copy() 69 any a2(a); in test_copy()
|
/external/guice/core/test/com/google/inject/ |
D | MethodInterceptionTest.java | 70 bindInterceptor(Matchers.any(), Matchers.returns(only(Foo.class)), in testSharedProxyClasses() 99 bindInterceptor(Matchers.any(), Matchers.returns(only(Foo.class)), in testSharedProxyClasses() 114 bindInterceptor(Matchers.any(), Matchers.any(), new MethodInterceptor() { in testGetThis() 131 bindInterceptor(Matchers.any(), Matchers.any(), new MethodInterceptor() { in testInterceptingFinalClass() 154 bindInterceptor(Matchers.any(),Matchers.returns(only(Foo.class)), in testSpiAccessToInterceptors() 156 bindInterceptor(Matchers.any(), Matchers.returns(only(Foo.class).or(only(Bar.class))), in testSpiAccessToInterceptors() 182 bindInterceptor(Matchers.any(), Matchers.any(), new CountingInterceptor()); in testInterceptedMethodThrows() 183 bindInterceptor(Matchers.any(), Matchers.any(), new CountingInterceptor()); in testInterceptedMethodThrows() 206 bindInterceptor(Matchers.any(), Matchers.returns(only(Foo.class)), in testNotInterceptedMethodsInInterceptedClassDontAddFrames() 261 bindInterceptor(Matchers.any(), new AbstractMatcher<Method>() { in testInterceptingNonBridgeWorks() [all …]
|
/external/dbus/tools/ |
D | strtoull.c | 72 int neg, any, cutlim; in strtoull() local 100 acc = any = 0; in strtoull() 117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull() 118 any = -1; in strtoull() 120 any = 1; in strtoull() 125 if (any < 0) { in strtoull() 132 } else if (!any) { in strtoull() 142 *endptr = (char *)(any ? s - 1 : nptr); in strtoull()
|
D | strtoll.c | 71 int neg, any, cutlim; in strtoll() local 101 acc = any = 0; in strtoll() 138 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoll() 139 any = -1; in strtoll() 141 any = 1; in strtoll() 146 if (any < 0) { in strtoll() 153 } else if (!any) { in strtoll() 163 *endptr = (char *)(any ? s - 1 : nptr); in strtoll()
|
/external/llvm/test/Linker/ |
D | comdat.ll | 19 $any = comdat any 20 @any = global i64 6, comdat($any) 24 ; CHECK: $any = comdat any 27 ; CHECK: @any = global i64 6, comdat{{$}}
|
/external/libgdx/backends/gdx-backend-android/libs/ |
D | LICENSE.txt | 34 …any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any… 36 …any purpose not expressly permitted by this License Agreement. Except to the extent required by a… 38 …any actions that may cause or result in the fragmentation of Android, including but not limited to… 42 …ee that Google may stop (permanently or temporarily) providing the SDK (or any features within the… 44 3.7 Nothing in this License Agreement gives you a right to use any of Google's trade names, tradema… 46 3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including… 52 …s) under this License Agreement in or to any software applications that you develop using the SDK,… 54 …reement and (b) any applicable law, regulation or generally accepted practices or guidelines in th… 58 …any activity with the SDK, including the development or distribution of an application, that inter… 60 …any third party for) any data, content, or resources that you create, transmit or display through … [all …]
|