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

/netbsd-current/external/apache2/llvm/dist/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.cpp511 char FirstChar = RI[0]; local
512 if (FirstChar >= 'a' && FirstChar <= 'z' &&
513 FirstChar != 'i' && FirstChar != 'e') {
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_monitor.cc56 char FirstChar = Buf.data()[0]; local
57 if (FirstChar >= 'a' && FirstChar <= 'z')
58 Buf.data()[0] = FirstChar - 'a' + 'A';
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_monitor.cc54 char FirstChar = Buf.data()[0]; local
55 if (FirstChar >= 'a' && FirstChar <= 'z')
56 Buf.data()[0] = FirstChar - 'a' + 'A';
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_monitor.cpp55 char FirstChar = *Buf.data(); local
56 if (FirstChar >= 'a' && FirstChar <= 'z')
/netbsd-current/external/apache2/llvm/dist/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]))
/netbsd-current/external/apache2/llvm/dist/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);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp8032 unsigned char FirstChar = *csStart; local
8033 CodePoint = (llvm::UTF32)FirstChar;

Completed in 305 milliseconds