Searched refs:ObjCDictionaryLiteral (Results 1 - 20 of 20) sorted by relevance

/external/clang/tools/libclang/
H A DIndexBody.cpp108 bool VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
/external/clang/include/clang/AST/
H A DExprObjC.h222 /// 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 DDataRecursiveASTVisitor.h2267 DEF_TRAVERSE_STMT(ObjCDictionaryLiteral, {})
H A DRecursiveASTVisitor.h2289 DEF_TRAVERSE_STMT(ObjCDictionaryLiteral, {})
H A DStmt.h155 friend class ObjCDictionaryLiteral; // ctor
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp97 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 DRetainCountChecker.cpp1864 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 DExpr.cpp4076 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 DStmtProfile.cpp1165 void StmtProfiler::VisitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E) {
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp93 bool TraverseObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
H A DSemaExprCXX.cpp4905 } else if (ObjCDictionaryLiteral *DictLit
4906 = dyn_cast<ObjCDictionaryLiteral>(E)) {
H A DSemaExprObjC.cpp926 return MaybeBindToTemporary(ObjCDictionaryLiteral::Create(
H A DTreeTransform.h9287 ObjCDictionaryLiteral *E) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp941 void ASTStmtReader::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
947 ObjCDictionaryLiteral::KeyValuePair *KeyValues = E->getKeyValues();
948 ObjCDictionaryLiteral::ExpansionData *Expansions = E->getExpansionData();
2340 S = ObjCDictionaryLiteral::CreateEmpty(Context,
H A DASTWriterStmt.cpp881 void ASTStmtWriter::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp80 (isa<ObjCDictionaryLiteral>(Arg) &&
/external/clang/lib/CodeGen/
H A DCGObjC.cpp93 const ObjCDictionaryLiteral *DLE = nullptr;
96 DLE = cast<ObjCDictionaryLiteral>(E);
210 const ObjCDictionaryLiteral *E) {
H A DCodeGenFunction.h2260 llvm::Value *EmitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E);
H A DCGExprScalar.cpp522 Value *VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp367 Stmt *RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp);
2867 Stmt *RewriteModernObjC::RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp) {
5654 if (ObjCDictionaryLiteral *DictionaryLitExpr =
5655 dyn_cast<ObjCDictionaryLiteral>(S))

Completed in 209 milliseconds