/external/clang/tools/libclang/ |
H A D | IndexBody.cpp | 108 bool VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
|
/external/clang/include/clang/AST/ |
H A D | ExprObjC.h | 222 /// ObjCDictionaryLiteral - AST node to represent objective-c dictionary 224 class ObjCDictionaryLiteral : public Expr { class in namespace:clang 260 ObjCDictionaryLiteral(ArrayRef<ObjCDictionaryElement> VK, 265 explicit ObjCDictionaryLiteral(EmptyShell Empty, unsigned NumElements, function in class:clang::ObjCDictionaryLiteral 293 static ObjCDictionaryLiteral *Create(const ASTContext &C, 299 static ObjCDictionaryLiteral *CreateEmpty(const ASTContext &C,
|
H A D | DataRecursiveASTVisitor.h | 2267 DEF_TRAVERSE_STMT(ObjCDictionaryLiteral, {})
|
H A D | RecursiveASTVisitor.h | 2289 DEF_TRAVERSE_STMT(ObjCDictionaryLiteral, {})
|
H A D | Stmt.h | 155 friend class ObjCDictionaryLiteral; // ctor
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | BasicObjCFoundationChecks.cpp | 97 check::PostStmt<ObjCDictionaryLiteral>, 130 void checkPostStmt(const ObjCDictionaryLiteral *DL, 330 void NilArgChecker::checkPostStmt(const ObjCDictionaryLiteral *DL, 1182 check::PostStmt<ObjCDictionaryLiteral>, 1202 void checkPostStmt(const ObjCDictionaryLiteral *E, CheckerContext &C) const {
|
H A D | RetainCountChecker.cpp | 1864 else if (isa<ObjCDictionaryLiteral>(S)) { 2407 check::PostStmt<ObjCDictionaryLiteral>, 2556 void checkPostStmt(const ObjCDictionaryLiteral *DL, CheckerContext &C) const; 2757 void RetainCountChecker::checkPostStmt(const ObjCDictionaryLiteral *DL,
|
/external/clang/lib/AST/ |
H A D | Expr.cpp | 4076 ObjCDictionaryLiteral::ObjCDictionaryLiteral( function in class:ObjCDictionaryLiteral 4112 ObjCDictionaryLiteral * 4113 ObjCDictionaryLiteral::Create(const ASTContext &C, 4122 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) + 4124 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR); 4127 ObjCDictionaryLiteral * 4128 ObjCDictionaryLiteral::CreateEmpty(const ASTContext &C, unsigned NumElements, 4133 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) + 4135 return new (Mem) ObjCDictionaryLiteral(EmptyShel [all...] |
H A D | StmtProfile.cpp | 1165 void StmtProfiler::VisitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E) {
|
/external/clang/lib/Sema/ |
H A D | SemaTemplateVariadic.cpp | 93 bool TraverseObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
|
H A D | SemaExprCXX.cpp | 4905 } else if (ObjCDictionaryLiteral *DictLit 4906 = dyn_cast<ObjCDictionaryLiteral>(E)) {
|
H A D | SemaExprObjC.cpp | 926 return MaybeBindToTemporary(ObjCDictionaryLiteral::Create(
|
H A D | TreeTransform.h | 9287 ObjCDictionaryLiteral *E) {
|
/external/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 941 void ASTStmtReader::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { 947 ObjCDictionaryLiteral::KeyValuePair *KeyValues = E->getKeyValues(); 948 ObjCDictionaryLiteral::ExpansionData *Expansions = E->getExpansionData(); 2340 S = ObjCDictionaryLiteral::CreateEmpty(Context,
|
H A D | ASTWriterStmt.cpp | 881 void ASTStmtWriter::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
|
/external/clang/lib/Edit/ |
H A D | RewriteObjCFoundationAPI.cpp | 80 (isa<ObjCDictionaryLiteral>(Arg) &&
|
/external/clang/lib/CodeGen/ |
H A D | CGObjC.cpp | 93 const ObjCDictionaryLiteral *DLE = nullptr; 96 DLE = cast<ObjCDictionaryLiteral>(E); 210 const ObjCDictionaryLiteral *E) {
|
H A D | CodeGenFunction.h | 2260 llvm::Value *EmitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E);
|
H A D | CGExprScalar.cpp | 522 Value *VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
|
/external/clang/lib/Rewrite/Frontend/ |
H A D | RewriteModernObjC.cpp | 367 Stmt *RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp); 2867 Stmt *RewriteModernObjC::RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp) { 5654 if (ObjCDictionaryLiteral *DictionaryLitExpr = 5655 dyn_cast<ObjCDictionaryLiteral>(S))
|