Searched refs:start_pos_ (Results 1 - 10 of 10) sorted by relevance

/external/libchrome/base/strings/
H A Dstring_tokenizer.h137 token_end_ = start_pos_;
159 start_pos_ = string_begin;
242 const_iterator start_pos_; member in class:base::StringTokenizerT
/external/libchrome/base/json/
H A Djson_parser.cc191 start_pos_(NULL),
213 start_pos_ = input_copy->data();
215 start_pos_ = input.data();
217 pos_ = start_pos_;
218 end_pos_ = start_pos_ + input.length();
416 if (!(*pos_ == '\n' && pos_ > start_pos_ && *(pos_ - 1) == '\r'))
624 int length = end_pos_ - start_pos_;
628 pos_ = start_pos_ + index_; // CBU8_NEXT is postcrement.
629 CBU8_NEXT(start_pos_, index_, length, next_char);
H A Djson_parser.h224 const char* start_pos_; member in class:base::internal::JSONParser
227 // |start_pos_ + index_|.
H A Djson_parser_unittest.cc21 parser->start_pos_ = input.data();
22 parser->pos_ = parser->start_pos_;
23 parser->end_pos_ = parser->start_pos_ + input.length();
/external/libweave/third_party/chromium/base/json/
H A Djson_parser.cc186 start_pos_(NULL),
208 start_pos_ = input_copy->data();
210 start_pos_ = input.data();
212 pos_ = start_pos_;
213 end_pos_ = start_pos_ + input.length();
411 if (!(*pos_ == '\n' && pos_ > start_pos_ && *(pos_ - 1) == '\r'))
619 int length = end_pos_ - start_pos_;
623 pos_ = start_pos_ + index_; // CBU8_NEXT is postcrement.
624 CBU8_NEXT(start_pos_, index_, length, next_char);
H A Djson_parser.h224 const char* start_pos_; member in class:base::internal::JSONParser
227 // |start_pos_ + index_|.
H A Djson_parser_unittest.cc22 parser->start_pos_ = input.data();
23 parser->pos_ = parser->start_pos_;
24 parser->end_pos_ = parser->start_pos_ + input.length();
/external/v8/src/
H A Dmessages.h30 start_pos_(start_pos),
33 MessageLocation() : start_pos_(-1), end_pos_(-1) { }
36 int start_pos() const { return start_pos_; }
42 int start_pos_; member in class:v8::internal::MessageLocation
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp1932 SeekHead::SeekHead() : start_pos_(0ULL) {
1943 if (start_pos_ == -1)
1965 if (writer->Position(start_pos_))
1989 const int64 size_left = total_size - (writer->Position() - start_pos_);
2006 start_pos_ = writer->Position();
H A Dmkvmuxer.hpp1044 int64 start_pos_; member in class:mkvmuxer::SeekHead

Completed in 237 milliseconds