HomeSort by relevance Sort by last modified time
    Searched refs:FirstChar (Results 1 - 13 of 13) 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;
FileUtilities.cpp 49 static const char *BackupNumber(const char *Pos, const char *FirstChar) {
55 while (Pos > FirstChar && isNumberChar(Pos[-1])) {
64 if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1]))
  /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/clang/lib/Format/
Encoding.h 96 /// codepoint and starting with FirstChar in the specified Encoding.
97 inline unsigned getCodePointNumBytes(char FirstChar, Encoding Encoding) {
100 return getNumBytesForUTF8(FirstChar);
  /external/swiftshader/third_party/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]))
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
c.py 117 FirstChar = DeclText[0]
118 while not FirstChar.isalpha() and FirstChar != '_':
119 if FirstChar == '*':
123 elif FirstChar == '\r':
127 elif FirstChar == '\n':
131 elif FirstChar == ' ':
134 elif FirstChar == '\t':
140 FirstChar = DeclText[0]
156 FirstChar = DeclSplitList[0][Index]
    [all...]
  /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; }
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StrGather.c 113 BOOLEAN FirstChar
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StrGather.c 126 BOOLEAN 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 437 milliseconds