Home
last modified time | relevance | path

Searched refs:ObjCArrayLiteral (Results 1 – 25 of 25) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExprObjC.cpp28 ObjCArrayLiteral::ObjCArrayLiteral(ArrayRef<Expr *> Elements, QualType T, in ObjCArrayLiteral() function in ObjCArrayLiteral
39 ObjCArrayLiteral *ObjCArrayLiteral::Create(const ASTContext &C, in Create()
44 return new (Mem) ObjCArrayLiteral(Elements, T, Method, SR); in Create()
47 ObjCArrayLiteral *ObjCArrayLiteral::CreateEmpty(const ASTContext &C, in CreateEmpty()
50 return new (Mem) ObjCArrayLiteral(EmptyShell(), NumElements); in CreateEmpty()
H A DComputeDependence.cpp822 ExprDependence clang::computeDependence(ObjCArrayLiteral *E) { in computeDependence()
H A DStmtPrinter.cpp2406 void StmtPrinter::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
2408 ObjCArrayLiteral::child_range Ch = E->children(); in VisitObjCArrayLiteral()
H A DStmtProfile.cpp2168 void StmtProfiler::VisitObjCArrayLiteral(const ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DExprObjC.h190 class ObjCArrayLiteral final
192 private llvm::TrailingObjects<ObjCArrayLiteral, Expr *> {
197 ObjCArrayLiteral(ArrayRef<Expr *> Elements,
201 explicit ObjCArrayLiteral(EmptyShell Empty, unsigned NumElements) in ObjCArrayLiteral() function
208 static ObjCArrayLiteral *Create(const ASTContext &C,
213 static ObjCArrayLiteral *CreateEmpty(const ASTContext &C,
252 auto Children = const_cast<ObjCArrayLiteral *>(this)->children(); in children()
H A DComputeDependence.h96 class ObjCArrayLiteral; variable
188 ExprDependence computeDependence(ObjCArrayLiteral *E);
H A DStmt.h300 friend class ObjCArrayLiteral; // ctor in alignas() local
H A DRecursiveASTVisitor.h2815 DEF_TRAVERSE_STMT(ObjCArrayLiteral, {})
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h245 check::PostStmt<ObjCArrayLiteral>,
298 void checkPostStmt(const ObjCArrayLiteral *AL, CheckerContext &C) const;
H A DRetainCountDiagnostics.cpp515 if (isa<ObjCArrayLiteral>(S)) { in VisitNode()
H A DRetainCountChecker.cpp259 void RetainCountChecker::checkPostStmt(const ObjCArrayLiteral *AL, in checkPostStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp98 check::PostStmt<ObjCArrayLiteral> > {
132 void checkPostStmt(const ObjCArrayLiteral *AL,
319 void NilArgChecker::checkPostStmt(const ObjCArrayLiteral *AL, in checkPostStmt()
1142 check::PostStmt<ObjCArrayLiteral>,
1160 void checkPostStmt(const ObjCArrayLiteral *E, CheckerContext &C) const { in checkPostStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp74 (isa<ObjCArrayLiteral>(Arg) && in rewriteObjCRedundantCallWithLiteral()
480 } else if (const ObjCArrayLiteral *ArrLit = dyn_cast<ObjCArrayLiteral>(E)) { in getNSArrayObjects()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td177 def ObjCArrayLiteral : StmtNode<Expr>;
/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp346 bool VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp124 const ObjCArrayLiteral *ALE = dyn_cast<ObjCArrayLiteral>(E); in EmitObjCCollectionLiteral()
243 llvm::Value *CodeGenFunction::EmitObjCArrayLiteral(const ObjCArrayLiteral *E) { in EmitObjCArrayLiteral()
H A DCodeGenFunction.h4201 llvm::Value *EmitObjCArrayLiteral(const ObjCArrayLiteral *E);
H A DCGExprScalar.cpp860 Value *VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp356 Stmt *RewriteObjCArrayLiteralExpr(ObjCArrayLiteral *Exp);
2702 Stmt *RewriteModernObjC::RewriteObjCArrayLiteralExpr(ObjCArrayLiteral *Exp) { in RewriteObjCArrayLiteralExpr()
5512 if (ObjCArrayLiteral *ArrayLitExpr = dyn_cast<ObjCArrayLiteral>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1426 void ASTStmtReader::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
3053 S = ObjCArrayLiteral::CreateEmpty(Context, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1297 void ASTStmtWriter::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp12343 ObjCArrayLiteral *ArrayLiteral);
12374 if (auto ArrayLiteral = dyn_cast<ObjCArrayLiteral>(Element)) in checkObjCCollectionLiteralElement()
12383 ObjCArrayLiteral *ArrayLiteral) { in checkObjCArrayLiteral()
12543 if (isa<ObjCStringLiteral>(E) || isa<ObjCArrayLiteral>(E) || in CheckImplicitConversion()
12576 if (auto *ArrayLiteral = dyn_cast<ObjCArrayLiteral>(E)) in CheckImplicitConversion()
H A DSemaExprCXX.cpp6953 } else if (ObjCArrayLiteral *ArrayLit = dyn_cast<ObjCArrayLiteral>(E)) { in MaybeBindToTemporary()
H A DSemaExprObjC.cpp893 ObjCArrayLiteral::Create(Context, Elements, Ty, in BuildObjCArrayLiteral()
H A DTreeTransform.h13630 TreeTransform<Derived>::TransformObjCArrayLiteral(ObjCArrayLiteral *E) { in TransformObjCArrayLiteral()