| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| HD | BasicObjCFoundationChecks.cpp | 98 check::PostStmt<ObjCArrayLiteral> > { 132 void checkPostStmt(const ObjCArrayLiteral *AL, 322 void NilArgChecker::checkPostStmt(const ObjCArrayLiteral *AL, in checkPostStmt() 1181 check::PostStmt<ObjCArrayLiteral>, 1199 void checkPostStmt(const ObjCArrayLiteral *E, CheckerContext &C) const { in checkPostStmt()
|
| HD | RetainCountChecker.cpp | 1924 if (isa<ObjCArrayLiteral>(S)) { in VisitNode() 2466 check::PostStmt<ObjCArrayLiteral>, 2613 void checkPostStmt(const ObjCArrayLiteral *AL, CheckerContext &C) const; 2806 void RetainCountChecker::checkPostStmt(const ObjCArrayLiteral *AL, in checkPostStmt()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | ExprObjC.h | 142 class ObjCArrayLiteral : public Expr { 147 ObjCArrayLiteral(ArrayRef<Expr *> Elements, 151 explicit ObjCArrayLiteral(EmptyShell Empty, unsigned NumElements) in ObjCArrayLiteral() function 155 static ObjCArrayLiteral *Create(const ASTContext &C, 160 static ObjCArrayLiteral *CreateEmpty(const ASTContext &C,
|
| HD | DataRecursiveASTVisitor.h | 2315 DEF_TRAVERSE_STMT(ObjCArrayLiteral, {})
|
| HD | Stmt.h | 159 friend class ObjCArrayLiteral; // ctor in LLVM_ALIGNAS() local
|
| HD | RecursiveASTVisitor.h | 2347 DEF_TRAVERSE_STMT(ObjCArrayLiteral, {})
|
| /NextBSD/contrib/llvm/tools/clang/lib/Edit/ |
| HD | RewriteObjCFoundationAPI.cpp | 75 (isa<ObjCArrayLiteral>(Arg) && in rewriteObjCRedundantCallWithLiteral() 481 } else if (const ObjCArrayLiteral *ArrLit = dyn_cast<ObjCArrayLiteral>(E)) { in getNSArrayObjects()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | Expr.cpp | 4198 ObjCArrayLiteral::ObjCArrayLiteral(ArrayRef<Expr *> Elements, in ObjCArrayLiteral() function in ObjCArrayLiteral 4218 ObjCArrayLiteral *ObjCArrayLiteral::Create(const ASTContext &C, in Create() 4222 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral) in Create() 4224 return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR); in Create() 4227 ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(const ASTContext &C, in CreateEmpty() 4230 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral) in CreateEmpty() 4232 return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements); in CreateEmpty()
|
| HD | StmtProfile.cpp | 1342 void StmtProfiler::VisitObjCArrayLiteral(const ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
|
| HD | StmtPrinter.cpp | 2130 void StmtPrinter::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | StmtNodes.td | 145 def ObjCArrayLiteral : DStmt<Expr>;
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGObjC.cpp | 119 const ObjCArrayLiteral *ALE = dyn_cast<ObjCArrayLiteral>(E); in EmitObjCCollectionLiteral() 227 llvm::Value *CodeGenFunction::EmitObjCArrayLiteral(const ObjCArrayLiteral *E) { in EmitObjCArrayLiteral()
|
| HD | CodeGenFunction.h | 2630 llvm::Value *EmitObjCArrayLiteral(const ObjCArrayLiteral *E);
|
| HD | CGExprScalar.cpp | 561 Value *VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaChecking.cpp | 6888 ObjCArrayLiteral *ArrayLiteral); 6918 if (auto ArrayLiteral = dyn_cast<ObjCArrayLiteral>(Element)) in checkObjCCollectionLiteralElement() 6927 ObjCArrayLiteral *ArrayLiteral) { in checkObjCArrayLiteral() 7007 if (isa<ObjCStringLiteral>(E) || isa<ObjCArrayLiteral>(E) || in CheckImplicitConversion() 7023 if (auto *ArrayLiteral = dyn_cast<ObjCArrayLiteral>(E)) in CheckImplicitConversion()
|
| HD | SemaExprCXX.cpp | 5306 } else if (ObjCArrayLiteral *ArrayLit = dyn_cast<ObjCArrayLiteral>(E)) { in MaybeBindToTemporary()
|
| HD | SemaExprObjC.cpp | 858 ObjCArrayLiteral::Create(Context, Elements, Ty, in BuildObjCArrayLiteral()
|
| HD | TreeTransform.h | 10108 TreeTransform<Derived>::TransformObjCArrayLiteral(ObjCArrayLiteral *E) { in TransformObjCArrayLiteral()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| HD | RewriteModernObjC.cpp | 357 Stmt *RewriteObjCArrayLiteralExpr(ObjCArrayLiteral *Exp); 2726 Stmt *RewriteModernObjC::RewriteObjCArrayLiteralExpr(ObjCArrayLiteral *Exp) { in RewriteObjCArrayLiteralExpr() 5621 if (ObjCArrayLiteral *ArrayLitExpr = dyn_cast<ObjCArrayLiteral>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReaderStmt.cpp | 941 void ASTStmtReader::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral() 2653 S = ObjCArrayLiteral::CreateEmpty(Context, in ReadStmtFromStream()
|
| HD | ASTWriterStmt.cpp | 889 void ASTStmtWriter::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
|