Home
last modified time | relevance | path

Searched refs:FirstChar (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Lex/
DTokenConcatenation.cpp185 char FirstChar = 0; in AvoidConcat() local
189 FirstChar = GetFirstChar(PP, Tok); in AvoidConcat()
241 return isalnum(FirstChar) || Tok.is(tok::numeric_constant) || in AvoidConcat()
242 FirstChar == '+' || FirstChar == '-' || FirstChar == '.' || in AvoidConcat()
243 (PP.getLangOpts().CPlusPlus0x && FirstChar == '_'); in AvoidConcat()
245 return (FirstChar == '.' && PrevPrevTok.is(tok::period)) || in AvoidConcat()
246 isdigit(FirstChar) || in AvoidConcat()
247 (PP.getLangOpts().CPlusPlus && FirstChar == '*'); in AvoidConcat()
249 return FirstChar == '&'; in AvoidConcat()
251 return FirstChar == '+'; in AvoidConcat()
[all …]
DPPDirectives.cpp276 char FirstChar = RawCharData[0]; in SkipExcludedConditionalBlock() local
277 if (FirstChar >= 'a' && FirstChar <= 'z' && in SkipExcludedConditionalBlock()
278 FirstChar != 'i' && FirstChar != 'e') { in SkipExcludedConditionalBlock()
/external/llvm/lib/Support/
DStreamableMemoryObject.cpp22 FirstChar(Start), LastChar(End) { in RawMemoryObject()
23 assert(LastChar > FirstChar && "Invalid start/end range"); in RawMemoryObject()
27 virtual uint64_t getExtent() const { return LastChar - FirstChar; } in getExtent()
40 const uint8_t* const FirstChar; member in __anon656dde720111::RawMemoryObject
46 return static_cast<ptrdiff_t>(address) < LastChar - FirstChar; in validAddress()
49 return static_cast<ptrdiff_t>(address) == LastChar - FirstChar; in objectEnd()
58 *ptr = *((uint8_t *)(uintptr_t)(address + FirstChar)); in readByte()
67 memcpy(buf, (uint8_t *)(uintptr_t)(address + FirstChar), size); in readBytes()
74 return FirstChar + address; in getPointer()
DFileUtilities.cpp50 static const char *BackupNumber(const char *Pos, const char *FirstChar) { in BackupNumber() argument
56 while (Pos > FirstChar && isNumberChar(Pos[-1])) { in BackupNumber()
65 if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1])) in BackupNumber()
DYAMLParser.cpp1506 StringRef FirstChar(Current, 1); in fetchMoreTokens() local
1508 || FirstChar.find_first_of("-?:,[]{}#&*!|>'\"%@`") != StringRef::npos) in fetchMoreTokens()