/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprObjC.cpp | 53 ObjCDictionaryLiteral::ObjCDictionaryLiteral(ArrayRef<ObjCDictionaryElement> VK, in ObjCDictionaryLiteral() function in ObjCDictionaryLiteral 77 ObjCDictionaryLiteral * 78 ObjCDictionaryLiteral::Create(const ASTContext &C, in Create() 84 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR); in Create() 87 ObjCDictionaryLiteral * 88 ObjCDictionaryLiteral::CreateEmpty(const ASTContext &C, unsigned NumElements, in CreateEmpty() 93 ObjCDictionaryLiteral(EmptyShell(), NumElements, HasPackExpansions); in CreateEmpty()
|
H A D | ComputeDependence.cpp | 938 ExprDependence clang::computeDependence(ObjCDictionaryLiteral *E) { in computeDependence()
|
H A D | StmtProfile.cpp | 2341 void StmtProfiler::VisitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E) { in VisitObjCDictionaryLiteral()
|
H A D | StmtPrinter.cpp | 2660 void StmtPrinter::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { in VisitObjCDictionaryLiteral()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ComputeDependence.h | 101 class ObjCDictionaryLiteral; variable 197 ExprDependence computeDependence(ObjCDictionaryLiteral *E);
|
H A D | Stmt.h | 345 friend class ObjCDictionaryLiteral; // ctor
|
H A D | RecursiveASTVisitor.h | 2991 DEF_TRAVERSE_STMT(ObjCDictionaryLiteral, {})
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | BasicObjCFoundationChecks.cpp | 100 check::PostStmt<ObjCDictionaryLiteral>, 127 void checkPostStmt(const ObjCDictionaryLiteral *DL, CheckerContext &C) const; 338 void NilArgChecker::checkPostStmt(const ObjCDictionaryLiteral *DL, in checkPostStmt() 1142 check::PostStmt<ObjCDictionaryLiteral>, 1162 void checkPostStmt(const ObjCDictionaryLiteral *E, CheckerContext &C) const { in checkPostStmt()
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | IndexBody.cpp | 357 bool VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { in VisitObjCDictionaryLiteral()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 180 def ObjCDictionaryLiteral : StmtNode<Expr>;
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
H A D | RetainCountDiagnostics.cpp | 511 } else if (isa<ObjCDictionaryLiteral>(S)) { in VisitNode()
|
H A D | RetainCountChecker.cpp | 264 void RetainCountChecker::checkPostStmt(const ObjCDictionaryLiteral *DL, in checkPostStmt()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaObjC.h | 176 ObjCDictionaryLiteral *DictionaryLiteral);
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 1464 void ASTStmtReader::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { in VisitObjCDictionaryLiteral() 1471 E->getTrailingObjects<ObjCDictionaryLiteral::KeyValuePair>(); in VisitObjCDictionaryLiteral() 1473 E->getTrailingObjects<ObjCDictionaryLiteral::ExpansionData>(); in VisitObjCDictionaryLiteral() 3303 S = ObjCDictionaryLiteral::CreateEmpty(Context, in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 1414 void ASTStmtWriter::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { in VisitObjCDictionaryLiteral()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaObjC.cpp | 2350 else if (auto DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(Element)) in checkCollectionLiteralElement() 2382 QualType TargetType, ObjCDictionaryLiteral *DictionaryLiteral) { in checkDictionaryLiteral()
|
H A D | SemaTemplateVariadic.cpp | 117 bool TraverseObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { in TraverseObjCDictionaryLiteral()
|
H A D | SemaExprObjC.cpp | 908 ObjCDictionaryLiteral *Literal) { in CheckObjCDictionaryLiteralDuplicateKeys() 1129 ObjCDictionaryLiteral::Create(Context, Elements, HasPackExpansions, Ty, in BuildObjCDictionaryLiteral()
|
H A D | SemaExprCXX.cpp | 7560 } else if (ObjCDictionaryLiteral *DictLit in MaybeBindToTemporary() 7561 = dyn_cast<ObjCDictionaryLiteral>(E)) { in MaybeBindToTemporary()
|
H A D | SemaChecking.cpp | 10763 isa<ObjCDictionaryLiteral>(E) || isa<ObjCBoxedExpr>(E)) { in CheckImplicitConversion() 10795 else if (auto *DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(E)) in CheckImplicitConversion()
|
/freebsd/contrib/llvm-project/clang/lib/Edit/ |
H A D | RewriteObjCFoundationAPI.cpp | 80 (isa<ObjCDictionaryLiteral>(Arg) && in rewriteObjCRedundantCallWithLiteral()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjC.cpp | 126 const ObjCDictionaryLiteral *DLE = nullptr; in EmitObjCCollectionLiteral() 129 DLE = cast<ObjCDictionaryLiteral>(E); in EmitObjCCollectionLiteral() 252 const ObjCDictionaryLiteral *E) { in EmitObjCDictionaryLiteral()
|
H A D | CodeGenFunction.h | 4715 llvm::Value *EmitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E);
|
H A D | CGExprScalar.cpp | 921 Value *VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { in VisitObjCDictionaryLiteral()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 357 Stmt *RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp); 2823 Stmt *RewriteModernObjC::RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp) { in RewriteObjCDictionaryLiteralExpr() 5512 if (ObjCDictionaryLiteral *DictionaryLitExpr = in RewriteFunctionBodyOrGlobalInitializer() 5513 dyn_cast<ObjCDictionaryLiteral>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|