Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.cpp869 ExprDependence clang::computeDependence(ObjCArrayLiteral *E) { in computeDependence()
H A DStmtPrinter.cpp2584 void StmtPrinter::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
2586 ObjCArrayLiteral::child_range Ch = E->children(); in VisitObjCArrayLiteral()
H A DStmtProfile.cpp2248 void StmtProfiler::VisitObjCArrayLiteral(const ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DExprObjC.h189 class ObjCArrayLiteral final
191 private llvm::TrailingObjects<ObjCArrayLiteral, Expr *> {
196 ObjCArrayLiteral(ArrayRef<Expr *> Elements,
200 explicit ObjCArrayLiteral(EmptyShell Empty, unsigned NumElements) in ObjCArrayLiteral() function
207 static ObjCArrayLiteral *Create(const ASTContext &C,
212 static ObjCArrayLiteral *CreateEmpty(const ASTContext &C,
251 auto Children = const_cast<ObjCArrayLiteral *>(this)->children(); in children()
H A DComputeDependence.h99 class ObjCArrayLiteral; variable
194 ExprDependence computeDependence(ObjCArrayLiteral *E);
H A DStmt.h305 friend class ObjCArrayLiteral; // ctor variable
H A DRecursiveASTVisitor.h2918 DEF_TRAVERSE_STMT(ObjCArrayLiteral, {})
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h245 check::PostStmt<ObjCArrayLiteral>,
298 void checkPostStmt(const ObjCArrayLiteral *AL, CheckerContext &C) const;
H A DRetainCountDiagnostics.cpp509 if (isa<ObjCArrayLiteral>(S)) { in VisitNode()
H A DRetainCountChecker.cpp260 void RetainCountChecker::checkPostStmt(const ObjCArrayLiteral *AL, in checkPostStmt()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp100 check::PostStmt<ObjCArrayLiteral> > {
134 void checkPostStmt(const ObjCArrayLiteral *AL,
321 void NilArgChecker::checkPostStmt(const ObjCArrayLiteral *AL, in checkPostStmt()
1143 check::PostStmt<ObjCArrayLiteral>,
1161 void checkPostStmt(const ObjCArrayLiteral *E, CheckerContext &C) const { in checkPostStmt()
/openbsd-src/gnu/llvm/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp75 (isa<ObjCArrayLiteral>(Arg) && in rewriteObjCRedundantCallWithLiteral()
481 } else if (const ObjCArrayLiteral *ArrLit = dyn_cast<ObjCArrayLiteral>(E)) { in getNSArrayObjects()
/openbsd-src/gnu/llvm/clang/lib/Index/
H A DIndexBody.cpp350 bool VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td178 def ObjCArrayLiteral : StmtNode<Expr>;
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGObjC.cpp128 const ObjCArrayLiteral *ALE = dyn_cast<ObjCArrayLiteral>(E); in EmitObjCCollectionLiteral()
247 llvm::Value *CodeGenFunction::EmitObjCArrayLiteral(const ObjCArrayLiteral *E) { in EmitObjCArrayLiteral()
H A DCodeGenFunction.h4279 llvm::Value *EmitObjCArrayLiteral(const ObjCArrayLiteral *E);
H A DCGExprScalar.cpp891 Value *VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
/openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp357 Stmt *RewriteObjCArrayLiteralExpr(ObjCArrayLiteral *Exp);
2703 Stmt *RewriteModernObjC::RewriteObjCArrayLiteralExpr(ObjCArrayLiteral *Exp) { in RewriteObjCArrayLiteralExpr()
5512 if (ObjCArrayLiteral *ArrayLitExpr = dyn_cast<ObjCArrayLiteral>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp1417 void ASTStmtReader::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
3154 S = ObjCArrayLiteral::CreateEmpty(Context, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1293 void ASTStmtWriter::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { in VisitObjCArrayLiteral()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp13714 ObjCArrayLiteral *ArrayLiteral);
13745 if (auto ArrayLiteral = dyn_cast<ObjCArrayLiteral>(Element)) in checkObjCCollectionLiteralElement()
13754 ObjCArrayLiteral *ArrayLiteral) { in checkObjCArrayLiteral()
13914 if (isa<ObjCStringLiteral>(E) || isa<ObjCArrayLiteral>(E) || in CheckImplicitConversion()
13947 if (auto *ArrayLiteral = dyn_cast<ObjCArrayLiteral>(E)) in CheckImplicitConversion()
H A DSemaExprCXX.cpp7211 } else if (ObjCArrayLiteral *ArrayLit = dyn_cast<ObjCArrayLiteral>(E)) { in MaybeBindToTemporary()
H A DSemaExprObjC.cpp894 ObjCArrayLiteral::Create(Context, Elements, Ty, in BuildObjCArrayLiteral()
H A DTreeTransform.h14114 TreeTransform<Derived>::TransformObjCArrayLiteral(ObjCArrayLiteral *E) { in TransformObjCArrayLiteral()