/external/cronet/tot/third_party/libc++/src/test/libcxx/algorithms/alg.sorting/alg.heap.operations/make.heap/ |
D | complexity.pass.cpp | 29 struct MyInt { struct 31 explicit MyInt(int xval) : value(xval) {} in MyInt() argument 32 MyInt(const MyInt& other) : value(other.value) { ++stats.copied; } in MyInt() argument 33 MyInt(MyInt&& other) : value(other.value) { ++stats.moved; } in MyInt() argument 34 MyInt& operator=(const MyInt& other) { in operator =() argument 39 MyInt& operator=(MyInt&& other) { in operator =() argument
|
/external/cronet/stable/third_party/libc++/src/test/libcxx/algorithms/alg.sorting/alg.heap.operations/make.heap/ |
D | complexity.pass.cpp | 29 struct MyInt { struct 31 explicit MyInt(int xval) : value(xval) {} in MyInt() argument 32 MyInt(const MyInt& other) : value(other.value) { ++stats.copied; } in MyInt() argument 33 MyInt(MyInt&& other) : value(other.value) { ++stats.moved; } in MyInt() argument 34 MyInt& operator=(const MyInt& other) { in operator =() argument 39 MyInt& operator=(MyInt&& other) { in operator =() argument
|
/external/cronet/stable/third_party/libc++/src/test/std/algorithms/alg.sorting/alg.heap.operations/sort.heap/ |
D | complexity.pass.cpp | 29 struct MyInt { struct 31 explicit MyInt(int xval) : value(xval) {} in MyInt() function 32 MyInt(const MyInt& other) : value(other.value) { ++stats.copied; } in MyInt() function 33 MyInt(MyInt&& other) : value(other.value) { ++stats.moved; } in MyInt() function 34 MyInt& operator=(const MyInt& other) { in operator =() argument 39 MyInt& operator=(MyInt&& other) { in operator =() argument
|
D | ranges_sort_heap.pass.cpp | 207 struct MyInt { struct 209 explicit MyInt(int xval) : value(xval) {} in MyInt() argument 210 MyInt(const MyInt& other) : value(other.value) { ++stats.copied; } in MyInt() function 211 MyInt(MyInt&& other) : value(other.value) { ++stats.moved; } in MyInt() function 212 MyInt& operator=(const MyInt& other) { in operator =() argument 217 MyInt& operator=(MyInt&& other) { in operator =() argument 222 static bool Comp(const MyInt& a, const MyInt& b) { in Comp() argument
|
/external/cronet/tot/third_party/libc++/src/test/std/algorithms/alg.sorting/alg.heap.operations/sort.heap/ |
D | complexity.pass.cpp | 29 struct MyInt { struct 31 explicit MyInt(int xval) : value(xval) {} in MyInt() function 32 MyInt(const MyInt& other) : value(other.value) { ++stats.copied; } in MyInt() argument 33 MyInt(MyInt&& other) : value(other.value) { ++stats.moved; } in MyInt() function 34 MyInt& operator=(const MyInt& other) { in operator =() argument 39 MyInt& operator=(MyInt&& other) { in operator =() argument
|
D | ranges_sort_heap.pass.cpp | 207 struct MyInt { struct 209 explicit MyInt(int xval) : value(xval) {} in MyInt() argument 210 MyInt(const MyInt& other) : value(other.value) { ++stats.copied; } in MyInt() argument 211 MyInt(MyInt&& other) : value(other.value) { ++stats.moved; } in MyInt() function 212 MyInt& operator=(const MyInt& other) { in operator =() argument 217 MyInt& operator=(MyInt&& other) { in operator =() argument 222 static bool Comp(const MyInt& a, const MyInt& b) { in Comp() argument
|
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/bitflags-1.3.2/tests/compile-fail/non_integer_base/ |
D | all_defined.rs | 27 struct MyInt(u8); struct 29 impl BitAnd for MyInt { implementation 37 impl BitOr for MyInt { implementation 45 impl BitXor for MyInt { implementation 53 impl BitAndAssign for MyInt { implementation 59 impl BitOrAssign for MyInt { implementation 65 impl BitXorAssign for MyInt { implementation 71 impl Debug for MyInt { implementation 77 impl Display for MyInt { implementation 83 impl LowerHex for MyInt { implementation [all …]
|
/external/rust/android-crates-io/extra_versions/crates/bitflags/tests/compile-fail/non_integer_base/ |
D | all_defined.rs | 27 struct MyInt(u8); struct 29 impl BitAnd for MyInt { implementation 37 impl BitOr for MyInt { implementation 45 impl BitXor for MyInt { implementation 53 impl BitAndAssign for MyInt { implementation 59 impl BitOrAssign for MyInt { implementation 65 impl BitXorAssign for MyInt { implementation 71 impl Debug for MyInt { implementation 77 impl Display for MyInt { implementation 83 impl LowerHex for MyInt { implementation [all …]
|
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/bitflags-1.3.2/tests/compile-fail/non_integer_base/ |
D | all_defined.rs | 27 struct MyInt(u8); struct 29 impl BitAnd for MyInt { implementation 37 impl BitOr for MyInt { implementation 45 impl BitXor for MyInt { implementation 53 impl BitAndAssign for MyInt { implementation 59 impl BitOrAssign for MyInt { implementation 65 impl BitXorAssign for MyInt { implementation 71 impl Debug for MyInt { implementation 77 impl Display for MyInt { implementation 83 impl LowerHex for MyInt { implementation [all …]
|
/external/cronet/stable/third_party/libc++/src/test/std/utilities/expected/expected.expected/ctor/ |
D | ctor.unexpected.copy.pass.cpp | 48 struct MyInt { struct 50 constexpr MyInt(int ii) : i(ii) {} in MyInt() function
|
D | ctor.unexpected.move.pass.cpp | 48 struct MyInt { struct 50 constexpr MyInt(int ii) : i(ii) {} in MyInt() argument
|
D | ctor.default.pass.cpp | 36 struct MyInt { struct 38 friend constexpr bool operator==(const MyInt&, const MyInt&) = default; argument
|
/external/cronet/tot/third_party/libc++/src/test/std/utilities/expected/expected.void/ctor/ |
D | ctor.unexpected.copy.pass.cpp | 48 struct MyInt { struct 50 constexpr MyInt(int ii) : i(ii) {} in MyInt() argument
|
D | ctor.unexpected.move.pass.cpp | 48 struct MyInt { struct 50 constexpr MyInt(int ii) : i(ii) {} in MyInt() function
|
D | ctor.default.pass.cpp | 28 struct MyInt { struct 30 friend constexpr bool operator==(const MyInt&, const MyInt&) = default; argument
|
/external/cronet/tot/third_party/libc++/src/test/std/utilities/expected/expected.expected/ctor/ |
D | ctor.unexpected.copy.pass.cpp | 48 struct MyInt { struct 50 constexpr MyInt(int ii) : i(ii) {} in MyInt() argument
|
D | ctor.unexpected.move.pass.cpp | 48 struct MyInt { struct 50 constexpr MyInt(int ii) : i(ii) {} in MyInt() argument
|
D | ctor.default.pass.cpp | 36 struct MyInt { struct 38 friend constexpr bool operator==(const MyInt&, const MyInt&) = default; argument
|
/external/cronet/stable/third_party/libc++/src/test/std/utilities/expected/expected.void/ctor/ |
D | ctor.unexpected.copy.pass.cpp | 48 struct MyInt { struct 50 constexpr MyInt(int ii) : i(ii) {} in MyInt() argument
|
D | ctor.unexpected.move.pass.cpp | 48 struct MyInt { struct 50 constexpr MyInt(int ii) : i(ii) {} in MyInt() argument
|
D | ctor.default.pass.cpp | 28 struct MyInt { struct 30 friend constexpr bool operator==(const MyInt&, const MyInt&) = default; argument
|
/external/sdv/vsomeip/third_party/boost/spirit/test/qi/ |
D | regression_stream_eof.cpp | 15 struct MyInt struct 20 friend Istream operator>>(Istream& is, MyInt& self) in operator >>() argument
|
/external/sdv/vsomeip/third_party/boost/container/bench/ |
D | bench_alloc_expand_fwd.cpp | 62 class MyInt class 67 explicit MyInt(int i = 0) in MyInt() function in MyInt 71 MyInt(const MyInt &other) in MyInt() function in MyInt
|
D | bench_alloc_shrink_to_fit.cpp | 49 class MyInt class 54 MyInt(int i = 0) : int_(i){} in MyInt() function in MyInt 56 MyInt(const MyInt &other) in MyInt() function in MyInt
|
D | bench_alloc_expand_bwd.cpp | 53 class MyInt class 58 MyInt(int i = 0) in MyInt() function in MyInt 62 MyInt(const MyInt &other) in MyInt() function in MyInt
|