HomeSort by relevance Sort by last modified time
    Searched refs:FirstChar (Results 1 - 6 of 6) 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 359 char FirstChar = RI[0];
360 if (FirstChar >= 'a' && FirstChar <= 'z' &&
361 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/clang/lib/Format/
Encoding.h 95 /// codepoint and starting with FirstChar in the specified Encoding.
96 inline unsigned getCodePointNumBytes(char FirstChar, Encoding Encoding) {
99 return getNumBytesForUTF8(FirstChar);
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/linux/
LinuxKeyboard.cpp 231 unsigned char &FirstChar = buf[0];
233 if(FirstChar < 128)
234 return FirstChar;
239 if((FirstChar & 0xE0) == 0xC0) //2 Chars
242 val = FirstChar & 0x1F;
244 else if((FirstChar & 0xF0) == 0xE0) //3 Chars
247 val = FirstChar & 0x0F;
249 else if((FirstChar & 0xF8) == 0xF0) //4 Chars
252 val = FirstChar & 0x07;
254 else if((FirstChar & 0xFC) == 0xF8) //5 Chars
    [all...]

Completed in 181 milliseconds