Home
last modified time | relevance | path

Searched refs:NextChar (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DTGLexer.cpp224 int NextChar = 0; in LexToken() local
231 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() local
627 if (NextChar != PD.Word[I]) { in prepIsDirective()
632 NextChar = peekNextChar(I + 1); in prepIsDirective()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h83 size_t NextChar = 0; variable
117 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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DEHFrameSupport.cpp568 uint8_t NextChar; in parseAugmentationString() local
571 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()
/netbsd-src/sys/external/bsd/acpica/dist/tools/acpisrc/
H A Dasconvrt.c453 char NextChar; in AsMatchExactWord() local
457 NextChar = Word[WordLength]; in AsMatchExactWord()
460 if (isalnum ((int) NextChar) || in AsMatchExactWord()
461 (NextChar == '_') || in AsMatchExactWord()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp1371 unsigned NextChar = in demangleStringLiteral() local
1374 outputEscapedChar(OS, NextChar); in demangleStringLiteral()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp4208 const char *NextChar = S.SourceMgr.getCharacterData(FixItLoc); in fixItNullability() local
4209 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()