Searched refs:start_pos_ (Results 1 – 9 of 9) sorted by relevance
/external/libchrome/base/json/ |
D | json_parser.cc | 195 start_pos_(nullptr), in JSONParser() 217 start_pos_ = input_copy->data(); in Parse() 219 start_pos_ = input.data(); in Parse() 221 pos_ = start_pos_; in Parse() 222 end_pos_ = start_pos_ + input.length(); in Parse() 420 if (!(*pos_ == '\n' && pos_ > start_pos_ && *(pos_ - 1) == '\r')) in EatWhitespaceAndComments() 627 int length = end_pos_ - start_pos_; in ConsumeStringRaw() 631 pos_ = start_pos_ + index_; // CBU8_NEXT is postcrement. in ConsumeStringRaw() 632 CBU8_NEXT(start_pos_, index_, length, next_char); in ConsumeStringRaw()
|
D | json_parser_unittest.cc | 22 parser->start_pos_ = input.data(); in NewTestParser() 23 parser->pos_ = parser->start_pos_; in NewTestParser() 24 parser->end_pos_ = parser->start_pos_ + input.length(); in NewTestParser()
|
D | json_parser.h | 227 const char* start_pos_; variable
|
/external/libchrome/base/strings/ |
D | string_tokenizer.h | 137 token_end_ = start_pos_; in Reset() 159 start_pos_ = string_begin; in Init() 242 const_iterator start_pos_; variable
|
/external/v8/src/parsing/ |
D | scanner-character-streams.cc | 112 size_t start_pos_; member in v8::internal::ExternalTwoByteStringUtf16CharacterStream 121 start_pos_(start_position), in ExternalTwoByteStringUtf16CharacterStream() 125 buffer_end_ = raw_data_ + (end_pos_ - start_pos_); in ExternalTwoByteStringUtf16CharacterStream() 126 buffer_pos_ = start_pos_; in ExternalTwoByteStringUtf16CharacterStream() 131 bool have_data = start_pos_ <= position && position < end_pos_; in ReadBlock() 133 buffer_pos_ = start_pos_; in ReadBlock() 134 buffer_cursor_ = raw_data_ + (position - start_pos_), in ReadBlock() 135 buffer_end_ = raw_data_ + (end_pos_ - start_pos_); in ReadBlock()
|
/external/v8/src/ |
D | messages.h | 37 int start_pos() const { return start_pos_; } in start_pos() 43 int start_pos_; variable
|
D | messages.cc | 22 : script_(script), start_pos_(start_pos), end_pos_(end_pos) {} in MessageLocation() 26 start_pos_(start_pos), in MessageLocation() 29 MessageLocation::MessageLocation() : start_pos_(-1), end_pos_(-1) {} in MessageLocation()
|
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/ |
D | mkvmuxer.cc | 2729 SeekHead::SeekHead() : start_pos_(0ULL) { in SeekHead() 2740 if (start_pos_ == -1) in Finalize() 2764 if (writer->Position(start_pos_)) in Finalize() 2789 const int64_t size_left = total_size - (writer->Position() - start_pos_); in Finalize() 2807 start_pos_ = writer->Position(); in Write()
|
D | mkvmuxer.h | 1438 int64_t start_pos_; variable
|