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

References

tools/clang/include/clang/AST/CommentLexer.h
   99     assert(is(tok::text));
  104     assert(is(tok::text));
  110     assert(is(tok::unknown_command));
  115     assert(is(tok::unknown_command));
  121     assert(is(tok::backslash_command) || is(tok::at_command));
  121     assert(is(tok::backslash_command) || is(tok::at_command));
  126     assert(is(tok::backslash_command) || is(tok::at_command));
  126     assert(is(tok::backslash_command) || is(tok::at_command));
  131     assert(is(tok::verbatim_block_begin) || is(tok::verbatim_block_end));
  131     assert(is(tok::verbatim_block_begin) || is(tok::verbatim_block_end));
  136     assert(is(tok::verbatim_block_begin) || is(tok::verbatim_block_end));
  136     assert(is(tok::verbatim_block_begin) || is(tok::verbatim_block_end));
  141     assert(is(tok::verbatim_block_line));
  146     assert(is(tok::verbatim_block_line));
  152     assert(is(tok::verbatim_line_name));
  157     assert(is(tok::verbatim_line_name));
  162     assert(is(tok::verbatim_line_text));
  167     assert(is(tok::verbatim_line_text));
  173     assert(is(tok::html_start_tag));
  178     assert(is(tok::html_start_tag));
  184     assert(is(tok::html_ident));
  189     assert(is(tok::html_ident));
  195     assert(is(tok::html_quoted_string));
  200     assert(is(tok::html_quoted_string));
  206     assert(is(tok::html_end_tag));
  211     assert(is(tok::html_end_tag));
tools/clang/include/clang/AST/CommentParser.h
   83     return (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) &&
   83     return (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) &&
tools/clang/lib/AST/CommentBriefParser.cpp
   70     if (Tok.is(tok::text)) {
   79     if (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) {
   79     if (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) {
  104     if (Tok.is(tok::newline)) {
  116       if (Tok.is(tok::text)) {
  121       if (Tok.is(tok::newline)) {
tools/clang/lib/AST/CommentParser.cpp
   99     if (P.Tok.is(tok::newline)) {
  311   assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command));
  311   assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command));
  318       Tok.is(tok::backslash_command) ? CMK_Backslash : CMK_At;
  373   else if (Tok.is(tok::newline)) {
  403   assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command));
  403   assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command));
  428         << CommandTok.is(tok::at_command)
  439   assert(Tok.is(tok::html_start_tag));
  464         while (Tok.is(tok::html_equals) ||
  465                Tok.is(tok::html_quoted_string))
  500       while (Tok.is(tok::html_equals) ||
  501              Tok.is(tok::html_quoted_string))
  503       if (Tok.is(tok::html_ident) ||
  504           Tok.is(tok::html_greater) ||
  505           Tok.is(tok::html_slash_greater))
  544   assert(Tok.is(tok::html_end_tag));
  548   if (Tok.is(tok::html_greater)) {
  586           << Tok.is(tok::at_command)
  606       if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
  606       if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
  612       if (Tok.is(tok::text) && isWhitespace(Tok.getText())) {
  615         if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
  615         if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
  660   assert(Tok.is(tok::verbatim_block_begin));
  669   if (Tok.is(tok::newline))
  673   while (Tok.is(tok::verbatim_block_line) ||
  674          Tok.is(tok::newline)) {
  676     if (Tok.is(tok::verbatim_block_line)) {
  680       if (Tok.is(tok::newline)) {
  691   if (Tok.is(tok::verbatim_block_end)) {
  707   assert(Tok.is(tok::verbatim_line_name));
  716   if (Tok.is(tok::verbatim_line_text)) {
  765   while (Tok.is(tok::newline))
  773     while (Tok.is(tok::newline))
tools/clang/lib/AST/RawCommentList.cpp
  388     if (Tok.is(comments::tok::eof))
  390     if (Tok.is(comments::tok::newline)) {
  422       if (Tok.is(comments::tok::newline)) {
tools/clang/unittests/AST/CommentLexer.cpp
   71     if (Tok.is(tok::eof))
  322       if(Toks[j].is(tok::text)) {
tools/clang/unittests/AST/CommentParser.cpp
   72   if (Tok.is(tok::eof))