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

/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,
/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...]

Completed in 48 milliseconds