Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.cpp226 int NextChar = 0; in LexToken() local
233 NextChar = peekNextChar(i++); in LexToken()
234 } while (isdigit(NextChar)); in LexToken()
236 if (NextChar == 'x' || NextChar == 'b') { in LexToken()
244 if (NextChar == 'b') in LexToken()
251 if (NextChar == 'x') in LexToken()
258 if (isalpha(NextChar) || NextChar == '_') in LexToken()
645 int NextChar = *CurPtr; in prepIsDirective() local
649 if (NextChar != PD.Word[I]) { in prepIsDirective()
654 NextChar = peekNextChar(I + 1); in prepIsDirective()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h81 size_t NextChar = 0; variable
113 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar; in AtEndOfStream()
118 return uint64_t(NextChar)*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo()
133 NextChar = ByteNo; in JumpToBit()
161 if (NextChar >= BitcodeBytes.size()) in fillCurWord()
164 NextChar, BitcodeBytes.size()); in fillCurWord()
167 const uint8_t *NextCharPtr = BitcodeBytes.data() + NextChar; in fillCurWord()
169 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) { in fillCurWord()
175 BytesRead = BitcodeBytes.size() - NextChar; in fillCurWord()
180 NextChar in fillCurWord()
[all...]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DEHFrameSupport.cpp410 uint8_t NextChar; in processFDE()
413 if (auto Err = RecordReader.readInteger(NextChar)) in processFDE()
416 while (NextChar != 0) { in processFDE()
417 switch (NextChar) {
422 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
424 if (NextChar != 'h') in parseAugmentationString()
426 Twine(NextChar) + in parseAugmentationString()
433 *NextField++ = NextChar; in parseAugmentationString()
437 Twine(NextChar) + in parseAugmentationString()
441 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
421 uint8_t NextChar; parseAugmentationString() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DUtils.cpp177 const char *NextChar = i < Glob.size() ? Glob.data() + i : nullptr; in createRegexFromGlob() local
180 (NextChar == nullptr || *NextChar == '/')) { in createRegexFromGlob()
/freebsd/contrib/bearssl/T0/
H A DT0Comp.cs759 int c = NextChar(); in T0Comp()
1037 int NextChar() in NextChar() method in T0Comp
1095 c = NextChar(); in Next()
1108 c = NextChar(); in Next()
1140 int c = NextChar(); in ParseCCodeNF()
1165 int c = NextChar(); in ParseCCodeNF()
1233 int c = NextChar(); in ParseString()
1299 int c = NextChar(); in SkipNL()
1381 int c = NextChar(); in ReadTerm()
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp1420 unsigned NextChar = in demangleStringLiteral() local
1423 outputEscapedChar(OB, NextChar); in demangleStringLiteral()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp3996 const char *NextChar = S.SourceMgr.getCharacterData(FixItLoc); in fixItNullability() local
3997 if (!NextChar) in fixItNullability()
4005 if (isWhitespace(*NextChar)) { in fixItNullability()
4007 } else if (NextChar[-1] == '[') { in fixItNullability()
4008 if (NextChar[0] == ']') in fixItNullability()
4012 } else if (!isAsciiIdentifierContinue(NextChar[0], /*allow dollar*/ true) && in fixItNullability()
4013 !isAsciiIdentifierContinue(NextChar[-1], /*allow dollar*/ true)) { in fixItNullability()