Home
last modified time | relevance | path

Searched defs:Array (Results 1 – 25 of 174) sorted by relevance

1234567

/llvm-project/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dallocate_shared.array.unbounded.pass.cpp47 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 Dmake_shared.array.unbounded.pass.cpp45 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 Dallocate_shared.array.bounded.pass.cpp41 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 Dmake_shared.array.bounded.pass.cpp40 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 Dimplicit_copy.pass.cpp40 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 Darray.extension.pass.cpp51 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 Dsize_and_alignment.compile.pass.cpp40 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 Dinstantiate-member-initializers.cpp39 template<typename T> struct Array { struct
41 Array() : a() {} in Array() argument
H A Dtemp_arg_type.cpp48 struct Array { struct
53 A1<Array<int, 17>::type> ax; argument
H A Dms-unqualified-base-class.cpp96 template <typename T> class Array : public Vec<T, 4> { class
98Array() : 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 Dinvoke.pass.cpp17 struct Array struct
24 Array<char, 1>::type& f1(); argument
/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamWriter.h144 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 Dchecksum_test.cpp15 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 Dsigned-char-misuse.cpp104 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 DEnumeratedArrayTest.cpp68 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 Dstack-layout-remark.c80 struct Array { struct
86 struct Array *data; argument
H A Doptimization-remark-analysis.c7 foo(int N,int * Array) foo() argument
/llvm-project/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp2.cpp6 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 Dp11.cpp4 template<class T> class Array { /* ... */ }; class
/llvm-project/clang/test/Analysis/
H A Dlifetime-extended-regions.cpp36 struct Array { struct
47 auto&& a = Array<int>{}; // extends `Array<int>` in whole_object() argument
[all...]
/llvm-project/libc/benchmarks/
H A DLibcBenchmark.h265 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 Dcrash-GH67914.cpp72 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 Dranges_destroy.pass.cpp106 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 Dcatch_array_01.pass.cpp20 typedef char Array[4]; in main() typedef
H A Dcatch_array_02.pass.cpp16 typedef char Array[4]; in main() typedef

1234567