Searched defs:ParseAllComments (Results 1 - 3 of 3) sorted by relevance
/external/clang/include/clang/Basic/ |
H A D | CommentOptions.h | 32 bool ParseAllComments; member in struct:clang::CommentOptions 34 CommentOptions() : ParseAllComments(false) { }
|
/external/clang/include/clang/AST/ |
H A D | RawCommentList.h | 44 bool Merged, bool ParseAllComments); 87 !ParseAllComments; 97 return ParseAllComments; 144 bool ParseAllComments : 1; 149 bool ParseAllComments) : 153 ParseAllComments(ParseAllComments) 147 RawComment(SourceRange SR, CommentKind K, bool IsTrailingComment, bool IsAlmostTrailingComment, bool ParseAllComments) argument
|
/external/clang/lib/AST/ |
H A D | RawCommentList.cpp | 26 bool ParseAllComments) { 27 const size_t MinCommentLength = ParseAllComments ? 2 : 3; 110 bool Merged, bool ParseAllComments) : 113 ParseAllComments(ParseAllComments) { 121 std::pair<CommentKind, bool> K = getCommentKind(RawText, ParseAllComments); 124 if (ParseAllComments && isOrdinaryKind(K.first)) { 25 getCommentKind(StringRef Comment, bool ParseAllComments) argument 109 RawComment(const SourceManager &SourceMgr, SourceRange SR, bool Merged, bool ParseAllComments) argument
|
Completed in 111 milliseconds