/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
H A D | BitstreamReader.h | 125 const unsigned char *NextChar; member in class:llvm::BitstreamCursor 152 BitstreamCursor() : BitStream(0), NextChar(0) { 154 BitstreamCursor(const BitstreamCursor &RHS) : BitStream(0), NextChar(0) { 159 NextChar = R.getFirstChar(); 160 assert(NextChar && "Bitstream not initialized yet"); 170 NextChar = R.getFirstChar(); 171 assert(NextChar && "Bitstream not initialized yet"); 185 NextChar = RHS.NextChar; 229 return NextChar [all...] |
/external/libchrome/base/json/ |
H A D | json_parser.cc | 105 if (!CanConsume(1) || (NextChar() && GetNextToken() != T_END_OF_INPUT)) { 198 const char* JSONParser::NextChar() { function in class:base::internal::JSONParser 266 NextChar(); 282 char next_char = *NextChar(); 286 next_char = *NextChar(); 294 next_char = *NextChar(); 299 NextChar(); 349 NextChar(); 364 NextChar(); 372 NextChar(); [all...] |
H A D | json_parser.h | 38 // NextChar. The conversion from byte to JSON token happens without advancing 150 const char* NextChar(); 152 // Performs the equivalent of NextChar N times. 255 FRIEND_TEST_ALL_PREFIXES(JSONParserTest, NextChar);
|
H A D | json_parser_unittest.cc | 32 EXPECT_EQ(',', *parser->NextChar()); 33 EXPECT_EQ('|', *parser->NextChar()); 34 EXPECT_EQ('\0', *parser->NextChar()); 39 TEST_F(JSONParserTest, NextChar) { 45 EXPECT_EQ(input[i], *parser->NextChar()); 47 EXPECT_EQ(parser->end_pos_, parser->NextChar());
|
/external/llvm/lib/TableGen/ |
H A D | TGLexer.cpp | 138 int NextChar = 0; local 145 NextChar = peekNextChar(i++); 146 } while (isdigit(NextChar)); 148 if (NextChar == 'x' || NextChar == 'b') { 156 if (NextChar == 'b') 163 if (NextChar == 'x') 170 if (isalpha(NextChar) || NextChar == '_')
|
/external/llvm/include/llvm/Bitcode/ |
H A D | BitstreamReader.h | 137 size_t NextChar = 0; member in class:llvm::SimpleBitstreamCursor 175 return Size <= NextChar; 182 return NextChar*CHAR_BIT - BitsInCurWord; 198 NextChar = ByteNo; 238 if (Size != 0 && NextChar >= Size) 245 R->getBitcodeBytes().readBytes(Array, sizeof(Array), NextChar); 251 Size = NextChar; 258 NextChar += BytesRead; 354 void skipToEnd() { NextChar = R->getBitcodeBytes().getExtent(); }
|
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
H A D | NaClBitstreamReader.h | 400 size_t NextChar; member in class:llvm::NaClBitstreamCursor 494 NextChar = (BitStream == nullptr) ? 0 : BitStream->getInitialAddress(); 529 return Size == NextChar; 541 return NextChar*CHAR_BIT - BitsInCurWord; 652 NextChar = ByteNo; 661 assert(Size == 0 || NextChar < (unsigned)Size); 666 uint64_t BytesRead = fillBuffer(Array, sizeof(Array), NextChar); 670 Size = NextChar; 677 NextChar += BytesRead;
|
/external/protobuf/src/google/protobuf/io/ |
H A D | tokenizer.cc | 223 void Tokenizer::NextChar() { function in class:google::protobuf::io::Tokenizer 315 NextChar(); 324 NextChar(); 334 NextChar(); 344 NextChar(); 365 NextChar(); 371 NextChar(); 412 NextChar(); 415 NextChar(); 481 NextChar(); [all...] |
H A D | tokenizer.h | 265 char current_char_; // == buffer_[buffer_pos_], updated by NextChar(). 297 void NextChar();
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
H A D | PVRTPrint3D.cpp | 865 PVRTint32 NextChar; local 896 NextChar = Text[uiIndex + 1]; 897 ApplyKerning(Text[uiIndex], NextChar, fKernOffset);
|
/external/llvm/utils/FileCheck/ |
H A D | FileCheck.cpp | 732 char NextChar = Buffer[Prefix.size()]; local 735 if (NextChar == ':') 738 if (NextChar != '-')
|
/external/syslinux/dosutil/ |
H A D | eltorito.asm | 957 NextChar: cmp byte [si],' ' label 966 loop NextChar
|