/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/sequences/array/ |
H A D | iterators.pass.cpp | 57 typedef std::array<int, 5> C; in tests() typedef 58 C array = {}; in tests() local 65 typedef std::array<int, 0> C; in tests() typedef 66 C array = {}; in tests() local 74 typedef std::array<int, 0> C; in tests() typedef 75 C array = {}; in tests() local 83 typedef std::array<int, 1> C; in tests() typedef 84 C array = {1}; in tests() local 93 typedef std::array<int, 2> C; in tests() typedef 94 C array = {1, 2}; in tests() local [all …]
|
H A D | empty.pass.cpp | 23 typedef std::array<int, 2> C; in tests() typedef 29 typedef std::array<int, 0> C; in tests() typedef 48 constexpr std::array<int, 3> array = {}; in main() local
|
H A D | max_size.pass.cpp | 23 typedef std::array<int, 2> C; in tests() typedef 29 typedef std::array<int, 0> C; in tests() typedef 48 constexpr std::array<int, 3> array = {}; in main() local
|
H A D | at.pass.cpp | 26 typedef std::array<T, 3> C; in tests() typedef 45 std::array<int, 4> array = {1, 2, 3, 4}; in test_exceptions() local 86 std::array<int, 0> array = {}; in test_exceptions() local
|
H A D | at_const.pass.cpp | 26 typedef std::array<T, 3> C; in tests() typedef 41 std::array<int, 4> const array = {1, 2, 3, 4}; in test_exceptions() local 82 std::array<int, 0> array = {}; in test_exceptions() local
|
/aosp_15_r20/external/compiler-rt/test/asan/TestCases/ |
H A D | global-location.cc | 11 struct C { struct 12 static int array[10]; member 17 int C::array[10]; argument 26 static int array[10]; in main() local
|
/aosp_15_r20/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
H A D | p4.cpp | 64 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; in test3() local 107 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; in test3() local 152 char array[sizeof(union_member) == sizeof(double) ? 1 : -1]; in test3() local 168 template <class T> struct C : A<T> { struct 175 void test6() { in test6() 179 void test7() { in test7() 184 template struct C<int>; // expected-note {{in instantiation}} variable 204 template <class T> struct C : Base { struct
|
/aosp_15_r20/external/libcxx/test/std/containers/sequences/vector/vector.cons/ |
H A D | construct_iter_iter.pass.cpp | 123 using C = TCT::vector<>; in test_ctor_under_alloc() typedef 135 using C = TCT::vector<>; in test_ctor_under_alloc() typedef 154 float array[3] = {0.0f, 1.0f, 2.0f}; in test_ctor_with_different_value_type() local 165 Z *array[1] = { &z }; in test_ctor_with_different_value_type() local 173 int32_t array[1] = { -1 }; in test_ctor_with_different_value_type() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/containers/sequences/vector/vector.cons/ |
H A D | construct_iter_iter.pass.cpp | 144 using C = TCT::vector<>; in test_ctor_under_alloc() typedef 156 using C = TCT::vector<>; in test_ctor_under_alloc() typedef 180 float array[3] = {0.0f, 1.0f, 2.0f}; in test_ctor_with_different_value_type() local 191 Der *array[1] = { &z }; in test_ctor_with_different_value_type() local 199 std::int32_t array[1] = { -1 }; in test_ctor_with_different_value_type() local
|
/aosp_15_r20/external/cronet/base/trace_event/ |
H A D | memory_usage_estimator.h | 295 size_t EstimateMemoryUsage(const std::basic_string<C, T, A>& string) { in EstimateMemoryUsage() 317 size_t EstimateMemoryUsage(const std::array<T, N>& array) { in EstimateMemoryUsage() 327 size_t EstimateMemoryUsage(const T* array, size_t array_length) { in EstimateMemoryUsage() 343 size_t EstimateMemoryUsage(const std::unique_ptr<T[], D>& array, in EstimateMemoryUsage() 428 size_t EstimateMemoryUsage(const std::set<T, C, A>& set) { in EstimateMemoryUsage() argument 435 size_t EstimateMemoryUsage(const std::multiset<T, C, A>& set) { in EstimateMemoryUsage() argument 442 size_t EstimateMemoryUsage(const std::map<K, V, C, A>& map) { in EstimateMemoryUsage() argument 449 size_t EstimateMemoryUsage(const std::multimap<K, V, C, A>& map) { in EstimateMemoryUsage() argument
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | constant-expression-cxx1y.cpp | 220 struct C : B {}; struct 520 template<typename T, unsigned N> struct array { struct 521 constexpr array() : arr{} {} in array() argument 523 constexpr array(X ...x) : arr{} { in array() argument 526 template<int ...I, typename ...X> constexpr void init(ints<I...>, X ...x) { in init() 529 T arr[N]; 530 struct iterator { 537 constexpr iterator begin() { return iterator(arr); } in begin() 538 constexpr iterator end() { return iterator(arr + N); } in end() 582 struct C : B { struct [all …]
|
H A D | access.cpp | 3 class C { class 14 class C { }; // expected-error {{'C' redeclared with 'private' access}} class 86 template<A::I> struct A::C { }; struct in PR15209::templates::A 159 int array[sizeof(test::private_struct)]; // expected-error {{private}} variable
|
/aosp_15_r20/frameworks/base/core/tests/utiltests/src/com/android/internal/util/ |
H A D | ArrayUtilsTest.java | 45 final Object C = new Object(); in testContains() local 62 final Object C = new Object(); in testIndexOf() local 83 final Object C = new Object(); in testContainsAll() local 529 char[] array = ArrayUtils.newNonMovableCharArray(length); in testZeroizeNonMovableCharArray() local 540 char[] array = new char[length]; in testZeroizeRegularCharArray() local
|
/aosp_15_r20/libcore/json/src/test/java/libcore/org/json/ |
H A D | JSONArrayTest.java | 36 JSONArray array = new JSONArray(); in testEmptyArray() local 82 JSONArray array = new JSONArray(); in testBooleans() local 132 JSONArray array = new JSONArray(); in testCoerceStringToBoolean() local 144 JSONArray array = new JSONArray(); in testNulls() local 186 JSONArray array = new JSONArray("[\"null\",null]"); in testParseNullYieldsJSONObjectNull() local 205 JSONArray array = new JSONArray(); in testNumbers() local 251 JSONArray array = new JSONArray(); in testStrings() local 304 JSONArray array = new JSONArray(); in testJoin() local 320 JSONArray array = new JSONArray(Arrays.asList(5, 6)); in testJoinWithNull() local 325 JSONArray array = new JSONArray(Arrays.asList(5, 6)); in testJoinWithSpecialCharacters() local [all …]
|
/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | empty-classes.cpp | 17 struct C : A, Empty { struct 18 C() : A(), Empty() { } in C() function 19 C(const C& other) : A(0x12345678), Empty(other) { } in C() function 88 float array[0]; member
|
H A D | implicit-copy-constructor.cpp | 15 struct C { struct 16 C() {} in C() function 22 int array[3][4]; member 25 struct D : A, B, virtual C { argument
|
H A D | rvalue-references.cpp | 5 struct A { double array[2]; }; member 40 class C class 47 C(int state) : state_(new int(state)) { } in C() function in C 49 C(C&& a) { in C() function in C
|
H A D | exceptions.cpp | 451 struct C { ~C(); }; struct 473 struct C { struct 474 A single; 475 A array[2][3]; member 480 C::C() { in C() function in test11::C
|
H A D | arm.cpp | 90 struct C : A, virtual B { struct 91 int q; 93 C(int i) : A(i), B(i) { foo(); } in C() function 94 ~C() { foo(); } in ~C() 395 void testDelete(A *array) { in testDelete()
|
H A D | thunks.cpp | 20 struct C : A, B { struct 83 struct __attribute__((visibility("protected"))) C : A, B { struct 105 struct C : A, B { struct 190 char array[1024]; member 203 class C : public A { class 228 struct C : A, B { virtual void bar(NonPOD); static void helper(NonPOD); }; struct 245 struct C : B { C(); ~C(); }; struct 255 struct C : A, B { void foo() {} }; in foo() argument 267 struct C : B { virtual C* f(); }; struct 290 struct C : A, B { struct [all …]
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
H A D | test_global_func9.c | 10 struct C { struct 20 } map SEC(".maps"); argument 120 int array[10] = {0}; in test_cls() local
|
/aosp_15_r20/external/guava/guava/src/com/google/common/collect/ |
H A D | ArrayTable.java | 136 public static <R, C, V> ArrayTable<R, C, V> create(Table<R, C, ? extends @Nullable V> table) { in create() argument 148 private final @Nullable V[][] array; field in ArrayTable 172 private ArrayTable(Table<R, C, ? extends @Nullable V> table) { in ArrayTable() argument 177 private ArrayTable(ArrayTable<R, C, V> table) { in ArrayTable() argument
|
/aosp_15_r20/external/guava/android/guava/src/com/google/common/collect/ |
H A D | ArrayTable.java | 135 public static <R, C, V> ArrayTable<R, C, V> create(Table<R, C, ? extends @Nullable V> table) { in create() argument 147 private final @Nullable V[][] array; field in ArrayTable 171 private ArrayTable(Table<R, C, ? extends @Nullable V> table) { in ArrayTable() argument 176 private ArrayTable(ArrayTable<R, C, V> table) { in ArrayTable() argument
|
/aosp_15_r20/external/clang/test/SemaTemplate/ |
H A D | dependent-names.cpp | 121 static const char* array [N]; member in PR8966::MyClass 130 const char* MyClass<T>::array [MyClass<T>::N] = { "A", "B", "C" }; member in PR8966::MyClass<T> 178 template<typename T> struct C { struct 179 static const int n = f(T()); // expected-error {{no matching function}} 350 …struct C : public C { }; // expected-error{{circular inheritance between 'rdar12629723::X::C' and … struct
|
/aosp_15_r20/art/test/201-built-in-except-detail-messages/src/ |
H A D | Main.java | 105 Object[] array = new String[10]; in arrayStore() local 115 Object[] array = new C[10][]; in arrayStore() local 125 Object[] array = new Float[10][]; in arrayStore() local 236 static class C { } class in Main
|