Searched refs:FirstChar (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DTokenConcatenation.cpp207 char FirstChar = 0; local
211 FirstChar = GetFirstChar(PP, Tok);
265 return isPreprocessingNumberBody(FirstChar) ||
266 FirstChar == '+' || FirstChar == '-';
268 return (FirstChar == '.' && PrevPrevTok.is(tok::period)) ||
269 isDigit(FirstChar) ||
270 (PP.getLangOpts().CPlusPlus && FirstChar == '*');
272 return FirstChar == '&';
274 return FirstChar
[all...]
H A DPPDirectives.cpp487 char FirstChar = RI[0]; local
488 if (FirstChar >= 'a' && FirstChar <= 'z' &&
489 FirstChar != 'i' && FirstChar != 'e') {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_monitor.cpp55 char FirstChar = Buf.data()[0]; local
56 if (FirstChar >= 'a' && FirstChar <= 'z')
57 Buf.data()[0] = FirstChar - 'a' + 'A';
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DSuffixTree.cpp111 unsigned FirstChar = Str[Active.Idx]; local
113 // Have we inserted anything starting with FirstChar at the current node?
114 if (Active.Node->Children.count(FirstChar) == 0) {
116 insertLeaf(*Active.Node, EndIdx, FirstChar);
125 // There's a match with FirstChar, so look for the point in the tree to
127 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar];
176 NextNode->StartIdx + Active.Len - 1, FirstChar);
H A DFileUtilities.cpp56 static const char *BackupNumber(const char *Pos, const char *FirstChar) { argument
62 while (Pos > FirstChar && isNumberChar(Pos[-1])) {
71 if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1]))
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DEncoding.h77 /// codepoint and starting with FirstChar in the specified Encoding.
78 inline unsigned getCodePointNumBytes(char FirstChar, Encoding Encoding) { argument
81 return llvm::getNumBytesForUTF8(FirstChar);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp7552 unsigned char FirstChar = *csStart; local
7553 CodePoint = (llvm::UTF32)FirstChar;

Completed in 152 milliseconds