HomeSort by relevance Sort by last modified time
    Searched refs:FirstChar (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/Lex/
TokenConcatenation.cpp 187 char FirstChar = 0;
191 FirstChar = GetFirstChar(PP, Tok);
243 return isPreprocessingNumberBody(FirstChar) ||
244 FirstChar == '+' || FirstChar == '-';
246 return (FirstChar == '.' && PrevPrevTok.is(tok::period)) ||
247 isDigit(FirstChar) ||
248 (PP.getLangOpts().CPlusPlus && FirstChar == '*');
250 return FirstChar == '&';
252 return FirstChar == '+'
    [all...]
PPDirectives.cpp 314 char FirstChar = RawCharData[0];
315 if (FirstChar >= 'a' && FirstChar <= 'z' &&
316 FirstChar != 'i' && FirstChar != 'e') {
    [all...]
  /external/llvm/lib/Support/
StreamableMemoryObject.cpp 23 FirstChar(Start), LastChar(End) {
24 assert(LastChar >= FirstChar && "Invalid start/end range");
29 return LastChar - FirstChar;
45 const uint8_t* const FirstChar;
51 return static_cast<ptrdiff_t>(address) < LastChar - FirstChar;
54 return static_cast<ptrdiff_t>(address) == LastChar - FirstChar;
63 *ptr = *((uint8_t *)(uintptr_t)(address + FirstChar));
71 memcpy(buf, (uint8_t *)(uintptr_t)(address + FirstChar), size);
77 return FirstChar + address;
FileUtilities.cpp 50 static const char *BackupNumber(const char *Pos, const char *FirstChar) {
56 while (Pos > FirstChar && isNumberChar(Pos[-1])) {
65 if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1]))
YAMLParser.cpp     [all...]
  /external/clang/lib/Format/
Encoding.h 61 /// codepoint and starting with FirstChar in the specified Encoding.
62 inline unsigned getCodePointNumBytes(char FirstChar, Encoding Encoding) {
65 return getNumBytesForUTF8(FirstChar);
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]

Completed in 358 milliseconds