reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/CommentLexer.cpp
  656   char C = *TokenPtr;
  658     TokenPtr = skipHTMLIdentifier(TokenPtr, CommentEnd);
  658     TokenPtr = skipHTMLIdentifier(TokenPtr, CommentEnd);
  659     StringRef Ident(BufferPtr, TokenPtr - BufferPtr);
  660     formTokenWithChars(T, TokenPtr, tok::html_ident);
  665       TokenPtr++;
  666       formTokenWithChars(T, TokenPtr, tok::html_equals);
  670       const char *OpenQuote = TokenPtr;
  671       TokenPtr = skipHTMLQuotedString(TokenPtr, CommentEnd);
  671       TokenPtr = skipHTMLQuotedString(TokenPtr, CommentEnd);
  672       const char *ClosingQuote = TokenPtr;
  673       if (TokenPtr != CommentEnd) // Skip closing quote.
  674         TokenPtr++;
  675       formTokenWithChars(T, TokenPtr, tok::html_quoted_string);
  681       TokenPtr++;
  682       formTokenWithChars(T, TokenPtr, tok::html_greater);
  686       TokenPtr++;
  687       if (TokenPtr != CommentEnd && *TokenPtr == '>') {
  687       if (TokenPtr != CommentEnd && *TokenPtr == '>') {
  688         TokenPtr++;
  689         formTokenWithChars(T, TokenPtr, tok::html_slash_greater);
  691         formTextToken(T, TokenPtr);