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

  /external/clang/lib/Lex/
TokenConcatenation.cpp 161 char FirstChar = 0;
165 FirstChar = GetFirstChar(PP, Tok);
201 return isalnum(FirstChar) || Tok.is(tok::numeric_constant) ||
202 FirstChar == '+' || FirstChar == '-' || FirstChar == '.';
204 return (FirstChar == '.' && PrevPrevTok.is(tok::period)) ||
205 isdigit(FirstChar) ||
206 (PP.getLangOptions().CPlusPlus && FirstChar == '*');
208 return FirstChar == '&'
    [all...]
PPDirectives.cpp 265 char FirstChar = RawCharData[0];
266 if (FirstChar >= 'a' && FirstChar <= 'z' &&
267 FirstChar != 'i' && FirstChar != 'e') {
    [all...]
  /external/llvm/lib/Support/
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]))
  /external/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; }

Completed in 387 milliseconds