HomeSort by: relevance | last modified time | path
    Searched defs:FirstChar (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_monitor.cc 56 char FirstChar = Buf.data()[0];
57 if (FirstChar >= 'a' && FirstChar <= 'z')
58 Buf.data()[0] = FirstChar - 'a' + 'A';
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_monitor.cpp 56 char FirstChar = *Buf.data();
57 if (FirstChar >= 'a' && FirstChar <= 'z')
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_monitor.cpp 55 char FirstChar = *Buf.data();
56 if (FirstChar >= 'a' && FirstChar <= 'z')
  /src/external/apache2/llvm/dist/clang/lib/Lex/
TokenConcatenation.cpp 207 char FirstChar = 0;
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...]
PPDirectives.cpp 511 char FirstChar = RI[0];
512 if (FirstChar >= 'a' && FirstChar <= 'z' &&
513 FirstChar != 'i' && FirstChar != 'e') {
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SuffixTree.cpp 111 unsigned FirstChar = Str[Active.Idx];
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);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 8032 unsigned char FirstChar = *csStart;
8033 CodePoint = (llvm::UTF32)FirstChar;

Completed in 46 milliseconds