/aosp_15_r20/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
H A D | pointer_deleter.pass.cpp | 60 using D = CopyOnlyDeleter; in test_sfinae() typedef 71 using D = MoveOnlyDeleter; in test_sfinae() typedef 80 using D = NoCopyMoveDeleter; in test_sfinae() typedef 87 using D = NoCopyMoveDeleter; in test_sfinae() typedef 95 using D = NoCopyMoveDeleter; in test_sfinae() typedef 110 using D = CopyOnlyDeleter; in test_noexcept() typedef 117 using D = MoveOnlyDeleter; in test_noexcept() typedef 124 using D = NoCopyMoveDeleter; in test_noexcept() typedef 129 using D = NoCopyMoveDeleter; in test_noexcept() typedef 140 using D = CopyOnlyDeleter; in test_sfinae_runtime() typedef [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
H A D | pointer_deleter.pass.cpp | 59 using D = CopyOnlyDeleter; in test_sfinae() typedef 70 using D = MoveOnlyDeleter; in test_sfinae() typedef 79 using D = NoCopyMoveDeleter; in test_sfinae() typedef 86 using D = NoCopyMoveDeleter; in test_sfinae() typedef 94 using D = NoCopyMoveDeleter; in test_sfinae() typedef 109 using D = CopyOnlyDeleter; in test_noexcept() typedef 116 using D = MoveOnlyDeleter; in test_noexcept() typedef 123 using D = NoCopyMoveDeleter; in test_noexcept() typedef 128 using D = NoCopyMoveDeleter; in test_noexcept() typedef 139 using D = CopyOnlyDeleter; in test_sfinae_runtime() typedef [all …]
|
/aosp_15_r20/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/ |
H A D | construct.pass.cpp | 57 struct D struct 61 typedef std::scoped_allocator_adaptor<A2<D>> allocator_type; argument 63 explicit D(int i, int j, const allocator_type& a) in D() argument 122 S* s = (S*)buf; in main() local 133 S* s = (S*)buf; in main() local 144 S* s = (S*)buf; in main() local 155 S* s = (S*)buf; in main() local 167 S* s = (S*)buf; in main() local 181 S* s = (S*)buf; in main() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/numerics/rand/rand.dist/rand.dist.samp/rand.dist.samp.pconst/ |
H A D | eval.pass.cpp | 38 typedef std::piecewise_constant_distribution<> D; in test1() typedef 54 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test1() local 101 typedef std::piecewise_constant_distribution<> D; in test2() typedef 117 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test2() local 164 typedef std::piecewise_constant_distribution<> D; in test3() typedef 180 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test3() local 227 typedef std::piecewise_constant_distribution<> D; in test4() typedef 243 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test4() local 290 typedef std::piecewise_constant_distribution<> D; in test5() typedef 306 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test5() local [all …]
|
/aosp_15_r20/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ |
H A D | eval.pass.cpp | 37 typedef std::piecewise_constant_distribution<> D; in test1() typedef 53 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test1() local 100 typedef std::piecewise_constant_distribution<> D; in test2() typedef 116 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test2() local 163 typedef std::piecewise_constant_distribution<> D; in test3() typedef 179 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test3() local 226 typedef std::piecewise_constant_distribution<> D; in test4() typedef 242 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test4() local 289 typedef std::piecewise_constant_distribution<> D; in test5() typedef 305 double s = std::accumulate(prob.begin(), prob.end(), 0.0); in test5() local [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/allocator.adaptor/allocator.adaptor.members/ |
H A D | construct.pass.cpp | 53 struct D { struct 56 typedef std::scoped_allocator_adaptor<A2<D>> allocator_type; argument 58 explicit D(int i, int j, const allocator_type& a) { in D() argument 120 S* s = (S*)buf; in main() local 131 S* s = (S*)buf; in main() local 142 S* s = (S*)buf; in main() local 153 S* s = (S*)buf; in main() local 165 S* s = (S*)buf; in main() local 179 S* s = (S*)buf; in main() local
|
/aosp_15_r20/external/lua/src/ |
H A D | ldump.c | 35 #define dumpVector(D,v,n) dumpBlock(D,v,(n)*sizeof((v)[0])) argument 37 #define dumpLiteral(D, s) dumpBlock(D,s,sizeof(s) - sizeof(char)) argument 40 static void dumpBlock (DumpState *D, const void *b, size_t size) { in dumpBlock() 49 #define dumpVar(D,x) dumpVector(D,&x,1) argument 52 static void dumpByte (DumpState *D, int y) { in dumpByte() 61 static void dumpSize (DumpState *D, size_t x) { in dumpSize() 73 static void dumpInt (DumpState *D, int x) { in dumpInt() 78 static void dumpNumber (DumpState *D, lua_Number x) { in dumpNumber() 83 static void dumpInteger (DumpState *D, lua_Integer x) { in dumpInteger() 88 static void dumpString (DumpState *D, const TString *s) { in dumpString() [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/collections/hash/set/ |
H A D | tests.rs | 12 let s = HS::new(); in test_zero_capacities() localVariable 15 let s = HS::default(); in test_zero_capacities() localVariable 18 let s = HS::with_hasher(RandomState::new()); in test_zero_capacities() localVariable 21 let s = HS::with_capacity(0); in test_zero_capacities() localVariable 24 let s = HS::with_capacity_and_hasher(0, RandomState::new()); in test_zero_capacities() localVariable 27 let mut s = HS::new(); in test_zero_capacities() localVariable 35 let mut s = HS::new(); in test_zero_capacities() localVariable 313 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 318 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 325 let mut s: HashSet<_> = (1..100).collect(); in test_drain() localVariable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/collections/hash/set/ |
H A D | tests.rs | 12 let s = HS::new(); in test_zero_capacities() localVariable 15 let s = HS::default(); in test_zero_capacities() localVariable 18 let s = HS::with_hasher(RandomState::new()); in test_zero_capacities() localVariable 21 let s = HS::with_capacity(0); in test_zero_capacities() localVariable 24 let s = HS::with_capacity_and_hasher(0, RandomState::new()); in test_zero_capacities() localVariable 27 let mut s = HS::new(); in test_zero_capacities() localVariable 35 let mut s = HS::new(); in test_zero_capacities() localVariable 313 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 318 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 325 let mut s: HashSet<_> = (1..100).collect(); in test_drain() localVariable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/collections/hash/set/ |
H A D | tests.rs | 12 let s = HS::new(); in test_zero_capacities() localVariable 15 let s = HS::default(); in test_zero_capacities() localVariable 18 let s = HS::with_hasher(RandomState::new()); in test_zero_capacities() localVariable 21 let s = HS::with_capacity(0); in test_zero_capacities() localVariable 24 let s = HS::with_capacity_and_hasher(0, RandomState::new()); in test_zero_capacities() localVariable 27 let mut s = HS::new(); in test_zero_capacities() localVariable 35 let mut s = HS::new(); in test_zero_capacities() localVariable 313 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 318 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 325 let mut s: HashSet<_> = (1..100).collect(); in test_drain() localVariable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/collections/hash/set/ |
H A D | tests.rs | 12 let s = HS::new(); in test_zero_capacities() localVariable 15 let s = HS::default(); in test_zero_capacities() localVariable 18 let s = HS::with_hasher(RandomState::new()); in test_zero_capacities() localVariable 21 let s = HS::with_capacity(0); in test_zero_capacities() localVariable 24 let s = HS::with_capacity_and_hasher(0, RandomState::new()); in test_zero_capacities() localVariable 27 let mut s = HS::new(); in test_zero_capacities() localVariable 35 let mut s = HS::new(); in test_zero_capacities() localVariable 313 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 318 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 325 let mut s: HashSet<_> = (1..100).collect(); in test_drain() localVariable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/collections/hash/set/ |
H A D | tests.rs | 12 let s = HS::new(); in test_zero_capacities() localVariable 15 let s = HS::default(); in test_zero_capacities() localVariable 18 let s = HS::with_hasher(RandomState::new()); in test_zero_capacities() localVariable 21 let s = HS::with_capacity(0); in test_zero_capacities() localVariable 24 let s = HS::with_capacity_and_hasher(0, RandomState::new()); in test_zero_capacities() localVariable 27 let mut s = HS::new(); in test_zero_capacities() localVariable 35 let mut s = HS::new(); in test_zero_capacities() localVariable 313 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 318 let mut s = HashSet::<i32>::new(); in test_trivial_drain() localVariable 325 let mut s: HashSet<_> = (1..100).collect(); in test_drain() localVariable [all …]
|
/aosp_15_r20/external/clang/test/CXX/drs/ |
H A D | dr6xx.cpp | 72 void test(S<int> s) { in test() 87 struct D : B, C {}; struct 94 struct S { int &r; } s = { k ? k : k }; variable 147 struct S { int n; } s; variable 270 struct S { int n; } s = {{5}}; // expected-warning {{braces}} variable 301 template<typename T> struct D { template<typename U> D(); D(); }; struct 302 template<typename T> D<T>::D() {} // expected-note {{previous}} in D() function in dr635::D 303 template<typename T> template<typename U> D<T>::D() {} in D() function in dr635::D 304 …template<typename T> D<T>::D<T>() {} // expected-error {{redefinition}} expected-error {{cannot ha… in D() function in dr635::D 339 struct D { struct [all …]
|
H A D | dr4xx.cpp | 15 struct D : A, B { using A::a; using B::a; struct a b; }; // expected-error 2{{conflicts}} argument 32 class D { class 108 struct S s; // expected-error {{ambiguous}} variable 110 namespace D { namespace 113 struct S s; variable 121 struct S s; variable 130 struct S s; variable 135 struct S s; variable 212 S s = { 1, 2, 3 }; // expected-error {{excess elements}} variable 263 struct dr417::D {}; // expected-warning {{extra qualification}} struct in dr417::dr417 [all …]
|
/aosp_15_r20/external/compiler-rt/test/esan/TestCases/ |
H A D | struct-simple.cpp | 43 struct D { struct 58 struct S s; in part1() local 59 struct D d; in part1() argument 107 struct D { struct 122 // CHECK-NEXT: Register struct.D#3#14#11#11: 3 fields in main() argument 134 struct S s; in main() local
|
/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | const-init-cxx11.cpp | 45 struct D { struct 46 constexpr D() : d(5) {} in D() function 47 int d; 70 struct D { double d = 4.0; }; argument 115 struct D { int n[2]; int m[3]; } extern constexpr d = { 1, 2, 3, 4, 5 }; argument 149 struct D : C, B2 { struct 150 int z; 338 struct D : C, A, B { struct 339 constexpr D() : A(1.0), B(), s(5) {} in D() argument 340 short s; member [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
H A D | deduction.pass.cpp | 25 struct D { struct 26 void operator()(A const* ptr) const in operator ()() 37 auto s = std::shared_ptr(w); in main() local 46 auto s = std::shared_ptr(w); in main() local 56 std::shared_ptr s = std::move(u); in main() local 64 std::shared_ptr s = std::move(u); in main() local 73 std::shared_ptr s(std::move(u)); in main() local 81 std::shared_ptr s(std::move(u)); in main() local
|
/aosp_15_r20/external/libchrome/mojo/core/ports/ |
H A D | ports_unittest.cc | 64 bool MessageEquals(const ScopedMessage& message, const base::StringPiece& s) { in MessageEquals() 138 int SendStringMessage(const PortRef& port, const std::string& s) { in SendStringMessage() 143 const std::string& s, in SendStringMessageWithPort() 151 const std::string& s, in SendStringMessageWithPort() 587 PortRef A, B, C, D; in TEST_F() local 654 PortRef C, D; in TEST_F() local 827 PortRef C, D; in TEST_F() local 921 PortRef A, B, C, D; in TEST_F() local 940 PortRef A, B, C, D; in TEST_F() local 995 PortRef D; in TEST_F() local [all …]
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | cxx0x-initializer-constructor.cpp | 57 struct D { struct 58 D(std::initializer_list<int>) { static_assert(N == 0, ""); } // expected-note 1 {{candidate}} in D() function 59 D(std::initializer_list<double>) { static_assert(N == 1, ""); } // expected-note 1 {{candidate}} in D() function 233 template<int N, class Comparator> bool g(const string<N>& s, Comparator cmp) { in g() 236 template<int N> bool f(const string<N> &s) { in f() 240 bool s = f(string<1>()); variable
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/views/mdspan/mdspan/ |
H A D | index_operator.pass.cpp | 117 constexpr size_t D = std::dynamic_extent; in test_layout() local 190 std::span s(idx); in test_layout() local 195 std::span s(idx); in test_layout() local 200 std::span s(idx); in test_layout() local 205 std::span s(idx); in test_layout() local 210 std::span s(idx); in test_layout() local 215 std::span s(idx); in test_layout() local 224 constexpr size_t D = std::dynamic_extent; in test_layout_large() local
|
/aosp_15_r20/external/python/cpython2/Parser/ |
D | parser.c | 19 #define D(x) if (!Py_DebugFlag); else x macro 21 #define D(x) macro 30 s_reset(stack *s) in s_reset() 35 #define s_empty(s) ((s)->s_top == &(s)->s_base[MAXSTACK]) argument 38 s_push(register stack *s, dfa *d, node *parent) in s_push() 55 s_pop(register stack *s) in s_pop() 64 #define s_pop(s) (s)->s_top++ argument 108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) in shift() 120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) in push() 143 register char *s = str; in classify() local [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/alloc/tests/ |
H A D | fmt.rs | 9 let s = fmt::format(format_args!("Hello, {}!", "world")); in test_format() localVariable 16 struct D; struct 33 impl fmt::Binary for D { implementation 276 let s = buf; localVariable 279 let s = fmt::format(format_args!("hello {}", "world")); localVariable 281 let s = format!("{}: {}", "args were", format_args!("hello {}", "world")); localVariable
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/alloc/tests/ |
H A D | fmt.rs | 9 let s = fmt::format(format_args!("Hello, {}!", "world")); in test_format() localVariable 16 struct D; struct 33 impl fmt::Binary for D { implementation 276 let s = buf; localVariable 279 let s = fmt::format(format_args!("hello {}", "world")); localVariable 281 let s = format!("{}: {}", "args were", format_args!("hello {}", "world")); localVariable
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/alloc/tests/ |
H A D | fmt.rs | 9 let s = fmt::format(format_args!("Hello, {}!", "world")); in test_format() localVariable 16 struct D; struct 33 impl fmt::Binary for D { implementation 276 let s = buf; localVariable 279 let s = fmt::format(format_args!("hello {}", "world")); localVariable 281 let s = format!("{}: {}", "args were", format_args!("hello {}", "world")); localVariable
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/alloc/tests/ |
H A D | fmt.rs | 9 let s = fmt::format(format_args!("Hello, {}!", "world")); in test_format() localVariable 16 struct D; struct 33 impl fmt::Binary for D { implementation 276 let s = buf; localVariable 279 let s = fmt::format(format_args!("hello {}", "world")); localVariable 281 let s = format!("{}: {}", "args were", format_args!("hello {}", "world")); localVariable
|