Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dinfinite-loop.mm83 @interface MyArray { interface
93 @implementation MyArray implementation
111 MyArray *arr = [[MyArray alloc] init];
120 MyArray *arr = [[MyArray alloc] init];
/llvm-project-15.0.7/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-15.0.7/clang/test/SemaObjC/
H A Dwarn-loop-analysis.m4 @interface MyArray interface
9 MyArray *test;
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/array/
H A Dsize_and_alignment.pass.cpp29 struct MyArray { struct
37 typedef MyArray<T, Size == 0 ? 1 : Size> MyArrayT; in test() argument
/llvm-project-15.0.7/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-15.0.7/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()