HomeSort by relevance Sort by last modified time
    Searched refs:ThisDeclInfo (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/AST/
CommentSema.cpp 32 PP(PP), ThisDeclInfo(NULL), BriefCommand(NULL), ReturnsCommand(NULL),
40 ThisDeclInfo = new (Allocator) DeclInfo;
41 ThisDeclInfo->CommentDecl = D;
42 ThisDeclInfo->IsFilled = false;
319 ThisDeclInfo->TemplateParameters;
544 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo);
571 if (ThisDeclInfo->ResultType->isVoidType()) {
573 switch (ThisDeclInfo->CommentDecl->getKind()) {
575 if (ThisDeclInfo->IsObjCMethod)
654 const Decl *D = ThisDeclInfo->CommentDecl
    [all...]
ASTContext.cpp 390 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
391 ThisDeclInfo->CommentDecl = D;
392 ThisDeclInfo->IsFilled = false;
393 ThisDeclInfo->fill();
394 ThisDeclInfo->CommentDecl = FC->getDecl();
397 ThisDeclInfo);
    [all...]
  /external/clang/include/clang/AST/
Comment.h 1064 DeclInfo *ThisDeclInfo;
1069 Blocks(Blocks), ThisDeclInfo(D) {
1091 return ThisDeclInfo->CommentDecl;
1095 if (!ThisDeclInfo->IsFilled)
1096 ThisDeclInfo->fill();
1097 return ThisDeclInfo;
1101 return ThisDeclInfo;
CommentSema.h 50 DeclInfo *ThisDeclInfo;
227 /// \c ThisDeclInfo->ThisDecl into \c ThisDeclInfo members.

Completed in 120 milliseconds