Home
last modified time | relevance | path

Searched refs:FormTokenWithChars (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp1900 FormTokenWithChars(Result, CurPtr, tok::unknown); in LexUnicodeIdentifierStart()
1968 FormTokenWithChars(Result, CurPtr, tok::raw_identifier); in LexIdentifierContinue()
2092 FormTokenWithChars(Result, CurPtr, tok::numeric_constant); in LexNumericConstant()
2215 FormTokenWithChars(Result, CurPtr-1, tok::unknown); in LexStringLiteral()
2225 FormTokenWithChars(Result, CurPtr - 1, tok::unknown); in LexStringLiteral()
2245 FormTokenWithChars(Result, CurPtr, Kind); in LexStringLiteral()
2304 FormTokenWithChars(Result, CurPtr, tok::unknown); in LexRawStringLiteral()
2325 FormTokenWithChars(Result, CurPtr-1, tok::unknown); in LexRawStringLiteral()
2336 FormTokenWithChars(Result, CurPtr, Kind); in LexRawStringLiteral()
2358 FormTokenWithChars(Result, AfterLessPos, tok::less); in LexAngledStringLiteral()
[all …]
H A DPPLexerChange.cpp358 CurLexer->FormTokenWithChars(Result, EndPos, tok::annot_module_end); in HandleEndOfFile()
450 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof); in HandleEndOfFile()
489 CurLexer->FormTokenWithChars(Result, EndPos, tok::annot_module_end); in HandleEndOfFile()
544 CurLexer->FormTokenWithChars(Result, EndPos, tok::annot_repl_input_end); in HandleEndOfFile()
548 CurLexer->FormTokenWithChars(Result, EndPos, tok::eof); in HandleEndOfFile()
H A DPragma.cpp905 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof); in HandlePragmaHdrstop()
H A DPPDirectives.cpp2415 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof); in HandleHeaderIncludeOrImport()
/src/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h623 void FormTokenWithChars(Token &Result, const char *TokEnd, in FormTokenWithChars() function