Home
last modified time | relevance | path

Searched refs:CharAndSize (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h721 auto CharAndSize = getCharAndSizeSlow(Ptr); in getCharAndSize() local
722 Size = CharAndSize.Size; in getCharAndSize()
723 return CharAndSize.Char; in getCharAndSize()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp334 auto CharAndSize = Lexer::getCharAndSizeNoWarn(BufPtr, LangOpts); in getSpellingSlow() local
335 Spelling[Length++] = CharAndSize.Char; in getSpellingSlow()
336 BufPtr += CharAndSize.Size; in getSpellingSlow()
363 auto CharAndSize = Lexer::getCharAndSizeNoWarn(BufPtr, LangOpts); in getSpellingSlow() local
364 Spelling[Length++] = CharAndSize.Char; in getSpellingSlow()
365 BufPtr += CharAndSize.Size; in getSpellingSlow()
818 auto CharAndSize = Lexer::getCharAndSizeNoWarn(TokPtr, LangOpts); in getTokenPrefixLength() local
819 TokPtr += CharAndSize.Size; in getTokenPrefixLength()
820 PhysOffset += CharAndSize.Size; in getTokenPrefixLength()
1449 auto CharAndSize = getCharAndSizeSlow(Ptr, Tok); in getCharAndSizeSlow() local
[all …]