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

/external/clang/include/clang/AST/
H A DExprObjC.h221 /// ObjCDictionaryLiteral - AST node to represent objective-c dictionary
223 class ObjCDictionaryLiteral : public Expr { class in namespace:clang
259 ObjCDictionaryLiteral(ArrayRef<ObjCDictionaryElement> VK,
264 explicit ObjCDictionaryLiteral(EmptyShell Empty, unsigned NumElements, function in class:clang::ObjCDictionaryLiteral
292 static ObjCDictionaryLiteral *Create(ASTContext &C,
298 static ObjCDictionaryLiteral *CreateEmpty(ASTContext &C,
/external/clang/lib/AST/
H A DExpr.cpp3967 ObjCDictionaryLiteral::ObjCDictionaryLiteral( function in class:ObjCDictionaryLiteral
4003 ObjCDictionaryLiteral *
4004 ObjCDictionaryLiteral::Create(ASTContext &C,
4013 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
4015 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
4018 ObjCDictionaryLiteral *
4019 ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
4024 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
4026 return new (Mem) ObjCDictionaryLiteral(EmptyShel
[all...]

Completed in 56 milliseconds