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

  /external/chromium_org/base/json/
json_parser.cc 229 if (CanConsume(3) && static_cast<uint8>(*pos_) == 0xEF &&
242 if (!CanConsume(1) || (NextChar() && GetNextToken() != T_END_OF_INPUT)) {
339 inline bool JSONParser::CanConsume(int length) {
344 DCHECK(CanConsume(1));
351 DCHECK(CanConsume(n));
358 if (!CanConsume(1))
424 if (*pos_ != '/' || !CanConsume(1))
430 while (CanConsume(1)) {
438 while (CanConsume(1)) {
617 while (CanConsume(1))
    [all...]
json_parser.h 49 // Iteration happens on the byte level, with the functions CanConsume and
147 bool CanConsume(int length);

Completed in 522 milliseconds