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

/external/clang/tools/libclang/
H A DIndexBody.cpp106 bool VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
H A DRecursiveASTVisitor.h2156 DEF_TRAVERSE_STMT(ObjCDictionaryLiteral, { })
/external/clang/include/clang/AST/
H A DExprObjC.h215 /// ObjCDictionaryLiteral - AST node to represent objective-c dictionary
217 class ObjCDictionaryLiteral : public Expr { class in namespace:clang
253 ObjCDictionaryLiteral(ArrayRef<ObjCDictionaryElement> VK,
258 explicit ObjCDictionaryLiteral(EmptyShell Empty, unsigned NumElements, function in class:clang::ObjCDictionaryLiteral
286 static ObjCDictionaryLiteral *Create(ASTContext &C,
292 static ObjCDictionaryLiteral *CreateEmpty(ASTContext &C,
322 static bool classof(const ObjCDictionaryLiteral *) { return true; }
H A DRecursiveASTVisitor.h2236 DEF_TRAVERSE_STMT(ObjCDictionaryLiteral, { })
H A DStmt.h149 friend class ObjCDictionaryLiteral; // ctor
/external/clang/lib/AST/
H A DExpr.cpp3838 ObjCDictionaryLiteral::ObjCDictionaryLiteral( function in class:ObjCDictionaryLiteral
3874 ObjCDictionaryLiteral *
3875 ObjCDictionaryLiteral::Create(ASTContext &C,
3884 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3886 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
3889 ObjCDictionaryLiteral *
3890 ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
3895 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3897 return new (Mem) ObjCDictionaryLiteral(EmptyShel
[all...]
H A DStmtProfile.cpp997 void StmtProfiler::VisitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp847 void ASTStmtReader::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
853 ObjCDictionaryLiteral::KeyValuePair *KeyValues = E->getKeyValues();
854 ObjCDictionaryLiteral::ExpansionData *Expansions = E->getExpansionData();
1916 S = ObjCDictionaryLiteral::CreateEmpty(Context,
H A DASTWriterStmt.cpp806 void ASTStmtWriter::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp79 (isa<ObjCDictionaryLiteral>(Arg) &&
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp92 bool TraverseObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
H A DSemaExprCXX.cpp4669 } else if (ObjCDictionaryLiteral *DictLit
4670 = dyn_cast<ObjCDictionaryLiteral>(E)) {
H A DSemaExprObjC.cpp912 ObjCDictionaryLiteral::Create(Context,
H A DTreeTransform.h8376 ObjCDictionaryLiteral *E) {
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp1915 else if (isa<ObjCDictionaryLiteral>(S)) {
2367 check::PostStmt<ObjCDictionaryLiteral>,
2506 void checkPostStmt(const ObjCDictionaryLiteral *DL, CheckerContext &C) const;
2705 void RetainCountChecker::checkPostStmt(const ObjCDictionaryLiteral *DL,
/external/clang/lib/CodeGen/
H A DCGObjC.cpp91 const ObjCDictionaryLiteral *DLE = 0;
94 DLE = cast<ObjCDictionaryLiteral>(E);
184 const ObjCDictionaryLiteral *E) {
H A DCodeGenFunction.h2300 llvm::Value *EmitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E);
H A DCGExprScalar.cpp505 Value *VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp324 Stmt *RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp);
2823 Stmt *RewriteModernObjC::RewriteObjCDictionaryLiteralExpr(ObjCDictionaryLiteral *Exp) {
5467 if (ObjCDictionaryLiteral *DictionaryLitExpr =
5468 dyn_cast<ObjCDictionaryLiteral>(S))

Completed in 299 milliseconds