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.cpp3448 ObjCDictionaryLiteral::ObjCDictionaryLiteral( function in class:ObjCDictionaryLiteral
3484 ObjCDictionaryLiteral *
3485 ObjCDictionaryLiteral::Create(ASTContext &C,
3494 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3496 return new (Mem) ObjCDictionaryLiteral(VK, HasPackExpansions, T, method, SR);
3499 ObjCDictionaryLiteral *
3500 ObjCDictionaryLiteral::CreateEmpty(ASTContext &C, unsigned NumElements,
3505 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) +
3507 return new (Mem) ObjCDictionaryLiteral(EmptyShel
[all...]

Completed in 925 milliseconds