Searched refs:NextChar (Results 1 – 6 of 6) sorted by relevance
224 int NextChar = 0; in LexToken() local231 NextChar = peekNextChar(i++); in LexToken()232 } while (isdigit(NextChar)); in LexToken()234 if (NextChar == 'x' || NextChar == 'b') { in LexToken()242 if (NextChar == 'b') in LexToken()249 if (NextChar == 'x') in LexToken()256 if (isalpha(NextChar) || NextChar == '_') in LexToken()623 int NextChar = *CurPtr; in prepIsDirective() local627 if (NextChar != PD.Word[I]) { in prepIsDirective()632 NextChar = peekNextChar(I + 1); in prepIsDirective()[all …]
83 size_t NextChar = 0; variable117 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar; in AtEndOfStream()122 return NextChar*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo()137 NextChar = ByteNo; in JumpToBit()165 if (NextChar >= BitcodeBytes.size()) in fillCurWord()168 NextChar, BitcodeBytes.size()); in fillCurWord()171 const uint8_t *NextCharPtr = BitcodeBytes.data() + NextChar; in fillCurWord()173 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) { in fillCurWord()180 BytesRead = BitcodeBytes.size() - NextChar; in fillCurWord()185 NextChar += BytesRead; in fillCurWord()[all …]
568 uint8_t NextChar; in parseAugmentationString() local571 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()574 while (NextChar != 0) { in parseAugmentationString()575 switch (NextChar) { in parseAugmentationString()580 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()582 if (NextChar != 'h') in parseAugmentationString()584 Twine(NextChar) + in parseAugmentationString()591 *NextField++ = NextChar; in parseAugmentationString()595 Twine(NextChar) + in parseAugmentationString()599 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
453 char NextChar; in AsMatchExactWord() local457 NextChar = Word[WordLength]; in AsMatchExactWord()460 if (isalnum ((int) NextChar) || in AsMatchExactWord()461 (NextChar == '_') || in AsMatchExactWord()
1371 unsigned NextChar = in demangleStringLiteral() local1374 outputEscapedChar(OS, NextChar); in demangleStringLiteral()
4208 const char *NextChar = S.SourceMgr.getCharacterData(FixItLoc); in fixItNullability() local4209 if (!NextChar) in fixItNullability()4217 if (isWhitespace(*NextChar)) { in fixItNullability()4219 } else if (NextChar[-1] == '[') { in fixItNullability()4220 if (NextChar[0] == ']') in fixItNullability()4224 } else if (!isIdentifierBody(NextChar[0], /*allow dollar*/true) && in fixItNullability()4225 !isIdentifierBody(NextChar[-1], /*allow dollar*/true)) { in fixItNullability()