Home
last modified time | relevance | path

Searched refs:MyArray (Results 1 – 8 of 8) sorted by relevance

/llvm-project/libcxx/test/std/containers/sequences/array/
H A Dsize_and_alignment.compile.pass.cpp35 struct MyArray {
46 LIBCPP_STATIC_ASSERT(sizeof(Array) == sizeof(MyArray<T, 1>), ""); in test_type()
47 LIBCPP_STATIC_ASSERT(TEST_ALIGNOF(Array) == TEST_ALIGNOF(MyArray<T, 1>), ""); in test_type()
59 static_assert(sizeof(Array) == sizeof(MyArray<T, 1>), ""); in test_type()
60 static_assert(TEST_ALIGNOF(Array) == TEST_ALIGNOF(MyArray<T, 1>), ""); in test_type()
69 static_assert(sizeof(Array) == sizeof(MyArray<T, 2>), ""); in test_type()
70 static_assert(TEST_ALIGNOF(Array) == TEST_ALIGNOF(MyArray<T, 2>), ""); in test_type()
79 static_assert(sizeof(Array) == sizeof(MyArray<T, 3>), ""); in test_type()
80 static_assert(TEST_ALIGNOF(Array) == TEST_ALIGNOF(MyArray<T, 3>), ""); in test_type()
89 static_assert(sizeof(Array) == sizeof(MyArray< in test_type()
33 struct MyArray { global() struct
44 elemsMyArray test_type() argument
[all...]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dinfinite-loop.mm104 @interface MyArray { interface
114 @implementation MyArray implementation
132 MyArray *arr = [[MyArray alloc] init];
141 MyArray *arr = [[MyArray alloc] init];
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Dpro-bounds-constant-array-index.cpp51 using MyArray = std::array<int, 10>; in f() typedef
52 MyArray m{}; in f()
107 using MyArray = DerivedArray<int, 10>; in f_derived() typedef
108 MyArray m{}; in f_derived()
/llvm-project/clang/test/Analysis/
H A Dmalloc.m38 @interface MyArray : NSObject { interface
44 MyArray *array = (MyArray *)malloc(12);
H A Dosobject-retain-release.cpp48 struct MyArray : public OSArray { struct
312 void test_no_infinite_check_recursion(MyArray *arr) { in test_no_infinite_check_recursion()
320 void check_param_attribute_propagation(MyArray *parent) { in check_param_attribute_propagation()
333 unsigned int check_attribute_indirect_propagation(MyArray *arr) { in check_attribute_indirect_propagation()
/llvm-project/clang/test/SemaObjC/
H A Dwarn-loop-analysis.m4 @interface MyArray interface
9 MyArray *test;
/llvm-project/clang/test/Index/
H A Dcomplete-kvc.m21 @interface MyArray : NSMutableArray interface
35 @property MyArray *myArrayProperty;
84 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text MyArray *}{RightParen )}{TypedText myArrayP…
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Dloop-convert-extra.cpp477 struct MyArray { struct
485 int *begin(const MyArray &Arr);
486 int *end(const MyArray &Arr);
496 MyArray Arr; in f()