Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DTGLexer.cpp209 int NextChar = 0; in LexToken() local
216 NextChar = peekNextChar(i++); in LexToken()
217 } while (isdigit(NextChar)); in LexToken()
219 if (NextChar == 'x' || NextChar == 'b') { in LexToken()
227 if (NextChar == 'b') in LexToken()
234 if (NextChar == 'x') in LexToken()
241 if (isalpha(NextChar) || NextChar == '_') in LexToken()
602 int NextChar = *CurPtr; in prepIsDirective() local
606 if (NextChar != PreprocessorDirs[ID].Word[I]) { in prepIsDirective()
611 NextChar = peekNextChar(I + 1); in prepIsDirective()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/
DBitstreamReader.h82 size_t NextChar = 0; variable
116 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar; in AtEndOfStream()
121 return NextChar*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo()
136 NextChar = ByteNo; in JumpToBit()
164 if (NextChar >= BitcodeBytes.size()) in fillCurWord()
167 NextChar, BitcodeBytes.size()); in fillCurWord()
170 const uint8_t *NextCharPtr = BitcodeBytes.data() + NextChar; in fillCurWord()
172 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) { in fillCurWord()
179 BytesRead = BitcodeBytes.size() - NextChar; in fillCurWord()
184 NextChar += BytesRead; in fillCurWord()
[all …]
/third_party/protobuf/src/google/protobuf/io/
Dtokenizer.cc230 void Tokenizer::NextChar() { in NextChar() function in google::protobuf::io::Tokenizer
324 NextChar(); in TryConsumeOne()
333 NextChar(); in TryConsume()
343 NextChar(); in ConsumeZeroOrMore()
353 NextChar(); in ConsumeOneOrMore()
374 NextChar(); in ConsumeString()
380 NextChar(); in ConsumeString()
417 NextChar(); in ConsumeString()
420 NextChar(); in ConsumeString()
486 NextChar(); in ConsumeLineComment()
[all …]
Dtokenizer.h300 void NextChar();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DEHFrameSupport.cpp546 uint8_t NextChar; in parseAugmentationString() local
549 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
552 while (NextChar != 0) { in parseAugmentationString()
553 switch (NextChar) { in parseAugmentationString()
558 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
560 if (NextChar != 'h') in parseAugmentationString()
562 Twine(NextChar) + in parseAugmentationString()
569 *NextField++ = NextChar; in parseAugmentationString()
573 Twine(NextChar) + in parseAugmentationString()
577 if (auto Err = RecordReader.readInteger(NextChar)) in parseAugmentationString()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitstreamReader.h406 size_t NextChar; variable
495 NextChar = (BitStream == nullptr) ? 0 : BitStream->getInitialAddress(); in init()
528 return Size == NextChar; in AtEndOfStream()
540 return NextChar * CHAR_BIT - BitsInCurWord; in GetCurrentBitNo()
643 NextChar = ByteNo; in JumpToBit()
652 assert(Size == 0 || NextChar < (unsigned)Size); in fillCurWord()
657 uint64_t BytesRead = fillBuffer(Array, sizeof(Array), NextChar); in fillCurWord()
661 Size = NextChar; in fillCurWord()
668 NextChar += BytesRead; in fillCurWord()
/third_party/gn/src/base/json/
Djson_parser.h240 FRIEND_TEST_ALL_PREFIXES(JSONParserTest, NextChar);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileCheck.cpp977 char NextChar = Buffer[Prefix.size()]; in FindCheckType() local
981 if (NextChar == ':') in FindCheckType()
984 if (NextChar != '-') in FindCheckType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
DMicrosoftDemangle.cpp1371 unsigned NextChar = in demangleStringLiteral() local
1374 outputEscapedChar(OS, NextChar); in demangleStringLiteral()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp46523 char NextChar = Size == 2 ? constraint[1] : 'i'; in getSingleConstraintMatchWeight() local
46526 switch (NextChar) { in getSingleConstraintMatchWeight()