HomeSort by: relevance | last modified time | path
    Searched refs:NextChar (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.cpp 224 int NextChar = 0;
231 NextChar = peekNextChar(i++);
232 } while (isdigit(NextChar));
234 if (NextChar == 'x' || NextChar == 'b') {
242 if (NextChar == 'b')
249 if (NextChar == 'x')
256 if (isalpha(NextChar) || NextChar == '_')
623 int NextChar = *CurPtr
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitstreamReader.h 83 size_t NextChar = 0;
117 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar;
122 return NextChar*CHAR_BIT - BitsInCurWord;
137 NextChar = ByteNo;
165 if (NextChar >= BitcodeBytes.size())
168 NextChar, BitcodeBytes.size());
171 const uint8_t *NextCharPtr = BitcodeBytes.data() + NextChar;
173 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) {
180 BytesRead = BitcodeBytes.size() - NextChar;
185 NextChar += BytesRead
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
EHFrameSupport.cpp 568 uint8_t NextChar;
571 if (auto Err = RecordReader.readInteger(NextChar))
574 while (NextChar != 0) {
575 switch (NextChar) {
580 if (auto Err = RecordReader.readInteger(NextChar))
582 if (NextChar != 'h')
584 Twine(NextChar) +
591 *NextField++ = NextChar;
595 Twine(NextChar) +
599 if (auto Err = RecordReader.readInteger(NextChar))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
MicrosoftDemangle.cpp 1371 unsigned NextChar =
1374 outputEscapedChar(OS, NextChar);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 4208 const char *NextChar = S.SourceMgr.getCharacterData(FixItLoc);
4209 if (!NextChar)
4217 if (isWhitespace(*NextChar)) {
4219 } else if (NextChar[-1] == '[') {
4220 if (NextChar[0] == ']')
4224 } else if (!isIdentifierBody(NextChar[0], /*allow dollar*/true) &&
4225 !isIdentifierBody(NextChar[-1], /*allow dollar*/true)) {

Completed in 23 milliseconds