Searched defs:ObjCDictionaryLiteral (Results 1 - 2 of 2) sorted by relevance

/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; }
/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...]

Completed in 966 milliseconds