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

  /external/clang/lib/Lex/
TokenConcatenation.cpp 199 char FirstChar = 0;
203 FirstChar = GetFirstChar(PP, Tok);
257 return isPreprocessingNumberBody(FirstChar) ||
258 FirstChar == '+' || FirstChar == '-';
260 return (FirstChar == '.' && PrevPrevTok.is(tok::period)) ||
261 isDigit(FirstChar) ||
262 (PP.getLangOpts().CPlusPlus && FirstChar == '*');
264 return FirstChar == '&';
266 return FirstChar == '+'
    [all...]
PPDirectives.cpp 440 char FirstChar = RI[0];
441 if (FirstChar >= 'a' && FirstChar <= 'z' &&
442 FirstChar != 'i' && FirstChar != 'e') {
    [all...]
  /external/llvm/lib/Support/
StreamingMemoryObject.cpp 21 FirstChar(Start), LastChar(End) {
22 assert(LastChar >= FirstChar && "Invalid start/end range");
26 return LastChar - FirstChar;
36 const uint8_t* const FirstChar;
42 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
51 uint64_t BufferSize = LastChar - FirstChar;
61 memcpy(Buf, Address + FirstChar, Size);
67 return FirstChar + address;
  /external/swiftshader/third_party/subzero/pnacl-llvm/
StreamingMemoryObject.cpp 21 FirstChar(Start), LastChar(End) {
22 assert(LastChar >= FirstChar && "Invalid start/end range");
26 return LastChar - FirstChar;
36 const uint8_t* const FirstChar;
42 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar;
51 uint64_t BufferSize = LastChar - FirstChar;
61 memcpy(Buf, Address + FirstChar, Size);
67 return FirstChar + address;
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamReader.h 39 /// FirstChar/LastChar - This remembers the first and last bytes of the
41 const unsigned char *FirstChar, *LastChar;
53 BitstreamReader() : FirstChar(0), LastChar(0), IgnoreBlockInfoNames(true) {
62 FirstChar = Start;
79 const unsigned char *getFirstChar() const { return FirstChar; }
  /external/libcxxabi/src/
cxa_demangle.cpp 625 const char *FirstChar = Str.begin();
628 assert(FirstChar == SecondChar);
629 ++FirstChar, ++SecondChar;
631 First = static_cast<const void *>(FirstChar);
    [all...]
  /external/swiftshader/third_party/subzero/src/
PNaClTranslator.cpp 794 const char FirstChar = toupper(*BlockName);
795 StrBuf << FirstChar << (BlockName + 1) << " " << RecordName
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 562 milliseconds