HomeSort by relevance Sort by last modified time
    Searched refs:NextChar (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/base/json/
json_parser.cc 242 if (!CanConsume(1) || (NextChar() && GetNextToken() != T_END_OF_INPUT)) {
343 const char* JSONParser::NextChar() {
411 NextChar();
427 char next_char = *NextChar();
431 char next_char = *NextChar();
439 next_char = *NextChar();
444 NextChar();
494 NextChar();
509 NextChar();
517 NextChar();
    [all...]
json_parser.h 50 // NextChar. The conversion from byte to JSON token happens without advancing
151 const char* NextChar();
153 // Performs the equivalent of NextChar N times.
257 FRIEND_TEST_ALL_PREFIXES(JSONParserTest, NextChar);
json_parser_unittest.cc 26 EXPECT_EQ(',', *parser->NextChar());
27 EXPECT_EQ('|', *parser->NextChar());
28 EXPECT_EQ('\0', *parser->NextChar());
33 TEST_F(JSONParserTest, NextChar) {
39 EXPECT_EQ(input[i], *parser->NextChar());
41 EXPECT_EQ(parser->end_pos_, parser->NextChar());
  /external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string_char_iterator.h 36 bool NextChar();
tokenized_string_char_iterator_unittest.cc 34 ASSERT_FALSE(iter->NextChar());
48 iter.NextChar();
77 if (iter.NextChar())
tokenized_string_char_iterator.cc 30 bool TokenizedStringCharIterator::NextChar() {
tokenized_string_match.cc 135 query_iter_.NextChar();
136 text_iter_.NextChar();
  /external/llvm/lib/TableGen/
TGLexer.cpp 138 int NextChar = 0;
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/
BitstreamReader.h 170 size_t NextChar;
203 BitstreamCursor() : BitStream(nullptr), NextChar(0) {}
205 : BitStream(nullptr), NextChar(0) {
210 NextChar = 0;
220 NextChar = 0;
251 return BitsInCurWord == 0 && isEndPos(NextChar);
259 return NextChar*CHAR_BIT - BitsInCurWord;
330 NextChar = ByteNo;
357 if (isEndPos(NextChar)) {
368 BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), Array)
    [all...]
  /external/chromium_org/components/policy/core/common/
preg_parser_win.cc 54 int NextChar(const uint8** cursor, const uint8* end) {
95 while ((current = NextChar(cursor, end)) > 0x0000)
253 if (NextChar(&cursor, end) != kDelimBracketOpen)
266 int current = NextChar(&cursor, end);
270 current = NextChar(&cursor, end);
276 current = NextChar(&cursor, end);
282 current = NextChar(&cursor, end);
291 current = NextChar(&cursor, end);
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 212 void Tokenizer::NextChar() {
293 NextChar();
302 NextChar();
312 NextChar();
322 NextChar();
342 NextChar();
362 NextChar();
365 NextChar();
429 NextChar();
442 NextChar();
    [all...]
tokenizer.h 187 char current_char_; // == buffer_[buffer_pos_], updated by NextChar().
215 void NextChar();
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 22 NextChar = RHS.NextChar;
185 NextChar = BitStream->getBitcodeBytes().getExtent();
256 NextChar = BitStream->getBitcodeBytes().getExtent();
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 219 void Tokenizer::NextChar() {
311 NextChar();
320 NextChar();
330 NextChar();
340 NextChar();
360 NextChar();
401 NextChar();
404 NextChar();
470 NextChar();
488 NextChar();
    [all...]
tokenizer.h 241 char current_char_; // == buffer_[buffer_pos_], updated by NextChar().
270 void NextChar();
  /external/llvm/utils/FileCheck/
FileCheck.cpp 694 char NextChar = Buffer[Prefix.size()];
697 if (NextChar == ':')
700 if (NextChar != '-')
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 401 milliseconds