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), HeaderfileCommand(NULL) {
39 ThisDeclInfo = new (Allocator) DeclInfo;
40 ThisDeclInfo->CommentDecl = D;
41 ThisDeclInfo->IsFilled = false;
329 ThisDeclInfo->TemplateParameters;
554 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo);
581 if (ThisDeclInfo->ResultType->isVoidType()) {
583 switch (ThisDeclInfo->CommentDecl->getKind()) {
585 if (ThisDeclInfo->IsObjCMethod)
658 const Decl *D = ThisDeclInfo->CommentDecl
    [all...]
ASTContext.cpp 405 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
406 ThisDeclInfo->CommentDecl = D;
407 ThisDeclInfo->IsFilled = false;
408 ThisDeclInfo->fill();
409 ThisDeclInfo->CommentDecl = FC->getDecl();
412 ThisDeclInfo);
    [all...]
  /external/clang/include/clang/AST/
Comment.h 1078 DeclInfo *ThisDeclInfo;
1083 Blocks(Blocks), ThisDeclInfo(D) {
1105 return ThisDeclInfo->CommentDecl;
1109 if (!ThisDeclInfo->IsFilled)
1110 ThisDeclInfo->fill();
1111 return ThisDeclInfo;
CommentSema.h 50 DeclInfo *ThisDeclInfo;
230 /// \c ThisDeclInfo->ThisDecl into \c ThisDeclInfo members.

Completed in 107 milliseconds