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

References

tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
   90   TokenInfo::TokenKind nextTokenKind() const { return NextToken.Kind; }
   99       Result.Kind = TokenInfo::TK_CodeCompletion;
  106       Result.Kind = TokenInfo::TK_Eof;
  113       Result.Kind = TokenInfo::TK_Eof;
  117       Result.Kind = TokenInfo::TK_Comma;
  122       Result.Kind = TokenInfo::TK_Period;
  127       Result.Kind = TokenInfo::TK_OpenParen;
  132       Result.Kind = TokenInfo::TK_CloseParen;
  159             Result.Kind = TokenInfo::TK_CodeCompletion;
  169           Result.Kind = TokenInfo::TK_Literal;
  172           Result.Kind = TokenInfo::TK_Literal;
  175           Result.Kind = TokenInfo::TK_Ident;
  180         Result.Kind = TokenInfo::TK_InvalidChar;
  224         Result->Kind = TokenInfo::TK_Literal;
  231         Result->Kind = TokenInfo::TK_Literal;
  241     Result->Kind = TokenInfo::TK_Error;
  261         Result->Kind = TokenInfo::TK_Literal;
  275     Result->Kind = TokenInfo::TK_Error;
  386   assert(Tokenizer->peekNextToken().Kind == TokenInfo::TK_Period);
  389   if (BindToken.Kind == TokenInfo::TK_CodeCompletion) {
  400   if (BindToken.Kind != TokenInfo::TK_Ident ||
  405   if (OpenToken.Kind != TokenInfo::TK_OpenParen) {
  409   if (IDToken.Kind != TokenInfo::TK_Literal || !IDToken.Value.isString()) {
  413   if (CloseToken.Kind != TokenInfo::TK_CloseParen) {
  427   assert(NameToken.Kind == TokenInfo::TK_Ident);
  429   if (OpenToken.Kind != TokenInfo::TK_OpenParen) {
  458         if (CommaToken.Kind != TokenInfo::TK_Comma) {
  480   if (EndToken.Kind == TokenInfo::TK_Eof) {
  486   if (Tokenizer->peekNextToken().Kind == TokenInfo::TK_Period) {
  535   assert(CompToken.Kind == TokenInfo::TK_CodeCompletion);
  633   if (Tokenizer.peekNextToken().Kind != TokenInfo::TK_Eof) {