/llvm-project/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
H A D | allocate_shared.array.unbounded.pass.cpp | 47 using Array = int[]; in main() typedef 54 using Array = int[]; in main() typedef 64 using Array = int[]; in main() typedef 72 using Array = int[]; in main() typedef 83 using Array = int[]; in main() typedef 90 using Array = int[][3]; in main() typedef 99 using Array = int[][3][2]; in main() typedef 113 using Array = int[]; in main() typedef 121 using Array = int[][3]; in main() typedef 131 using Array = int[][3][2]; in main() typedef [all …]
|
H A D | make_shared.array.unbounded.pass.cpp | 45 using Array = int[]; in main() typedef 52 using Array = int[]; in main() typedef 62 using Array = int[]; in main() typedef 70 using Array = int[]; in main() typedef 81 using Array = int[]; in main() typedef 88 using Array = int[][3]; in main() typedef 97 using Array = int[][3][2]; in main() typedef 111 using Array = int[]; in main() typedef 119 using Array = int[][3]; in main() typedef 129 using Array = int[][3][2]; in main() typedef [all …]
|
H A D | allocate_shared.array.bounded.pass.cpp | 41 using Array = int[8]; in main() typedef 48 using Array = int[8][3]; in main() typedef 57 using Array = int[8][3][2]; in main() typedef 71 using Array = int[8]; in main() typedef 79 using Array = int[8][3]; in main() typedef 89 using Array = int[8][3][2]; in main() typedef 107 using Array = DestroyInReverseOrder[8]; in main() typedef 116 using Array = DestroyInReverseOrder[8][3]; in main() typedef 125 using Array = DestroyInReverseOrder[8][3][2]; in main() typedef 136 using Array = DestroyInReverseOrder[8]; in main() typedef [all …]
|
H A D | make_shared.array.bounded.pass.cpp | 40 using Array = int[8]; in main() typedef 47 using Array = int[8][3]; in main() typedef 56 using Array = int[8][3][2]; in main() typedef 70 using Array = int[8]; in main() typedef 78 using Array = int[8][3]; in main() typedef 88 using Array = int[8][3][2]; in main() typedef 106 using Array = DestroyInReverseOrder[8]; in main() typedef 115 using Array = DestroyInReverseOrder[8][3]; in main() typedef 124 using Array = DestroyInReverseOrder[8][3][2]; in main() typedef 135 using Array = DestroyInReverseOrder[8]; in main() typedef [all …]
|
/llvm-project/libcxx/test/std/containers/sequences/array/array.cons/ |
H A D | implicit_copy.pass.cpp | 40 typedef std::array<double, 3> Array; in tests() typedef 48 typedef std::array<double const, 3> Array; in tests() typedef 55 typedef std::array<double, 0> Array; in tests() typedef 64 typedef std::array<double const, 0> Array; in tests() typedef 71 typedef std::array<NoDefault, 0> Array; in tests() typedef 79 typedef std::array<NoDefault const, 0> Array; in tests() typedef 88 typedef std::array<NonTrivialCopy, 0> Array; in tests() typedef 95 typedef std::array<NonTrivialCopy, 1> Array; in tests() typedef 102 typedef std::array<NonTrivialCopy, 2> Array; in tests() typedef
|
/llvm-project/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.assign/ |
H A D | array.extension.pass.cpp | 51 typedef std::array<int, 1> Array; in main() typedef 56 typedef std::array<int, 1> Array; in main() typedef 72 typedef std::array<int, 1> Array; in main() typedef 77 typedef std::array<int, 1> Array; in main() typedef 85 typedef std::array<int, 1> Array; in main() typedef
|
/llvm-project/libcxx/test/std/containers/sequences/array/ |
H A D | size_and_alignment.compile.pass.cpp | 40 using Array = std::array<T, 0>; test_type() typedef 53 using Array = std::array<T, 1>; test_type() typedef 63 using Array = std::array<T, 2>; test_type() typedef 73 using Array = std::array<T, 3>; test_type() typedef 83 using Array = std::array<T, 444>; test_type() typedef [all...] |
/llvm-project/clang/test/SemaTemplate/ |
H A D | instantiate-member-initializers.cpp | 39 template<typename T> struct Array { struct 41 Array() : a() {} in Array() argument
|
H A D | temp_arg_type.cpp | 48 struct Array { struct 53 A1<Array<int, 17>::type> ax; argument
|
H A D | ms-unqualified-base-class.cpp | 96 template <typename T> class Array : public Vec<T, 4> { class 98 …Array() : Vec() {} // before-warning {{unqualified base initializer of class templates is a Micros… in Array() function in Array 101 template class Array<double>; variable
|
/llvm-project/libcxx/test/libcxx/utilities/function.objects/func.require/ |
H A D | invoke.pass.cpp | 17 struct Array struct 24 Array<char, 1>::type& f1(); argument
|
/llvm-project/llvm/include/llvm/Support/ |
H A D | BinaryStreamWriter.h | 144 template <typename T> Error writeArray(ArrayRef<T> Array) { in writeArray() 161 Error writeArray(VarStreamArray<T, U> Array) { in writeArray() 169 template <typename T> Error writeArray(FixedStreamArray<T> Array) { in writeArray()
|
/llvm-project/compiler-rt/lib/scudo/standalone/tests/ |
H A D | checksum_test.cpp | 15 static scudo::u16 computeSoftwareChecksum(scudo::u32 Seed, scudo::uptr *Array, in computeSoftwareChecksum() 23 static scudo::u16 computeHardwareChecksum(scudo::u32 Seed, scudo::uptr *Array, in computeHardwareChecksum() 36 scudo::uptr Array[sizeof(scudo::u64) / sizeof(scudo::uptr)]; in verifyChecksumFunctionBitFlip() local
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
H A D | signed-char-misuse.cpp | 104 int Array[3] = {1, 2, 3}; in SignedCharCArraySubscript() local 109 int SignedCharSTDArraySubscript(std::array<int, 3> Array, signed char SCharacter) { in SignedCharSTDArraySubscript() 232 int Array[3] = {1, 2, 3}; in UnsignedCharCArraySubscript() local 238 int Array[3] = {1, 2, 3}; in CastedCArraySubscript() local 243 int UnsignedCharSTDArraySubscript(std::array<int, 3> Array, unsigned char USCharacter) { in UnsignedCharSTDArraySubscript() 247 int CastedSTDArraySubscript(std::array<int, 3> Array, signed char SCharacter) { in CastedSTDArraySubscript()
|
/llvm-project/llvm/unittests/ADT/ |
H A D | EnumeratedArrayTest.cpp | 68 EnumeratedArray<float, Colors, Colors::Last, size_t> Array; in TEST() local 83 EnumeratedArray<float, Colors, Colors::Last, size_t> Array; in TEST() local 107 using Array = EnumeratedArray<float, Colors, Colors::Last, size_t>; typedef
|
/llvm-project/clang/test/Frontend/ |
H A D | stack-layout-remark.c | 80 struct Array { struct 86 struct Array *data; argument
|
H A D | optimization-remark-analysis.c | 7 foo(int N,int * Array) foo() argument
|
/llvm-project/clang/test/CXX/temp/temp.spec/temp.explicit/ |
H A D | p2.cpp | 6 template<class T> class Array { void mf() { } }; in mf() class 8 template class Array<char>; variable
|
/llvm-project/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
H A D | p11.cpp | 4 template<class T> class Array { /* ... */ }; class
|
/llvm-project/clang/test/Analysis/ |
H A D | lifetime-extended-regions.cpp | 36 struct Array { struct 47 auto&& a = Array<int>{}; // extends `Array<int>` in whole_object() argument [all...] |
/llvm-project/libc/benchmarks/ |
H A D | LibcBenchmark.h | 265 llvm::ArrayRef<T> Array; variable 277 llvm::ArrayRef<T> Array; variable 283 : Array(Array), Index(Index), Offset(Index % Array.size()) {} in Array() argument 296 CircularArrayRef(llvm::ArrayRef<T> Array, size_ argument 307 cycle(llvm::ArrayRef<T> Array,size_t Size) cycle() argument [all...] |
/llvm-project/clang/test/SemaCXX/ |
H A D | crash-GH67914.cpp | 72 struct Array : StaticArrayImpl< Value_, Size_, 0, Array< Value_, Size_ > > { struct 77 …load< Array< float, 32 > >{} == 0; // expected-error 0+ {{}} expected-warning 0+ {{}} expected-not… in test11_load_masked() argument
|
/llvm-project/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/ |
H A D | ranges_destroy.pass.cpp | 106 using Array = Counted[M]; in test_arrays() typedef 131 using Array = Counted[A]; in test_arrays() typedef 158 using Array = Counted[A][B]; in test_arrays() typedef 186 using Array = Counted[A][B]; in test_arrays() typedef
|
/llvm-project/libcxxabi/test/ |
H A D | catch_array_01.pass.cpp | 20 typedef char Array[4]; in main() typedef
|
H A D | catch_array_02.pass.cpp | 16 typedef char Array[4]; in main() typedef
|