HomeSort by: relevance | last modified time | path
    Searched defs:RawComment (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
RawCommentList.h 32 class RawComment {
45 RawComment() : Kind(RCK_Invalid), IsAlmostTrailingComment(false) { }
47 RawComment(const SourceManager &SourceMgr, SourceRange SR,
164 RawComment(SourceRange SR, CommentKind K, bool IsTrailingComment,
184 void addComment(const RawComment &RC, const CommentOptions &CommentOpts,
189 const std::map<unsigned, RawComment *> *getCommentsInFile(FileID File) const;
193 unsigned getCommentBeginLine(RawComment *C, FileID File,
195 unsigned getCommentEndOffset(RawComment *C) const;
200 llvm::DenseMap<FileID, std::map<unsigned, RawComment *>> OrderedComments;
201 mutable llvm::DenseMap<RawComment *, unsigned> CommentBeginLine
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
RawCommentList.cpp 25 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment,
29 return std::make_pair(RawComment::RCK_Invalid, false);
31 RawComment::CommentKind K;
34 return std::make_pair(RawComment::RCK_OrdinaryBCPL, false);
37 K = RawComment::RCK_BCPLSlash;
39 K = RawComment::RCK_BCPLExcl;
41 return std::make_pair(RawComment::RCK_OrdinaryBCPL, false);
50 return std::make_pair(RawComment::RCK_Invalid, false);
53 K = RawComment::RCK_JavaDoc;
55 K = RawComment::RCK_Qt
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 691 CXString RawComment;
696 RawComment = clang_Cursor_getRawCommentText(Cursor);
697 RawCommentCString = clang_getCString(RawComment);
699 PrintCStringWithPrefix("RawComment", RawCommentCString);
708 clang_disposeString(RawComment);

Completed in 36 milliseconds