/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()
|
/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/opencv3/modules/flann/include/opencv2/flann/ |
D | any.h | 129 struct any; 134 struct choose_policy<any> 181 struct any 191 any(const T& x) 198 any() 203 any(const char* x) 210 any(const any& x) 217 ~any() 223 any& assign(const any& x) 233 any& assign(const T& x) [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/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/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/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/eigen/ |
D | COPYING.MPL2 | 12 means the combination of the Contributions of others (if any) used 35 means any form of the work other than Source Code Form. 46 whether at the time of the initial grant or subsequently, any and 50 means any of the following: 52 (a) any file in Source Code Form that results from an addition to, 56 (b) any new file in Source Code Form that contains any Covered 60 means any patent claim(s), including without limitation, method, 61 process, and apparatus claims, in any patent Licensable by such 70 Public License, Version 3.0, or any later versions of those 78 License. For legal entities, "You" includes any entity that [all …]
|
D | NOTICE | 12 means the combination of the Contributions of others (if any) used 35 means any form of the work other than Source Code Form. 46 whether at the time of the initial grant or subsequently, any and 50 means any of the following: 52 (a) any file in Source Code Form that results from an addition to, 56 (b) any new file in Source Code Form that contains any Covered 60 means any patent claim(s), including without limitation, method, 61 process, and apparatus claims, in any patent Licensable by such 70 Public License, Version 3.0, or any later versions of those 78 License. For legal entities, "You" includes any entity that [all …]
|
/external/slf4j/jcl-over-slf4j/ |
D | LICENSE.txt | 30 "Object" form shall mean any form resulting from mechanical 40 "Derivative Works" shall mean any work, whether in Source or Object 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 54 means any form of electronic, verbal, or written communication sent 62 "Contributor" shall mean Licensor and any individual or Legal Entity 82 institute patent litigation against any entity (including a 85 or contributory patent infringement, then any patent licenses 90 Work or Derivative Works thereof in any medium, with or without 94 (a) You must give any other recipients of the Work or [all …]
|
/external/snakeyaml/ |
D | NOTICE | 30 "Object" form shall mean any form resulting from mechanical 40 "Derivative Works" shall mean any work, whether in Source or Object 48 "Contribution" shall mean any work of authorship, including 49 the original version of the Work and any modifications or additions 54 means any form of electronic, verbal, or written communication sent 62 "Contributor" shall mean Licensor and any individual or Legal Entity 82 institute patent litigation against any entity (including a 85 or contributory patent infringement, then any patent licenses 90 Work or Derivative Works thereof in any medium, with or without 94 (a) You must give any other recipients of the Work or [all …]
|