HomeSort by relevance Sort by last modified time
    Searched refs:end_pos (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/chromium_org/chrome/browser/bookmarks/
bookmark_model_test_utils.cc 46 std::string::size_type end_pos = model_string.find(' ', start_pos); local
47 while (end_pos != std::string::npos) {
48 std::string::size_type part_length = end_pos - start_pos;
60 end_pos = AddNodesFromString(model, new_node, model_string,
61 end_pos + 1);
67 ++end_pos;
70 start_pos = end_pos;
71 end_pos = model_string.find(' ', start_pos);
73 ++end_pos;
77 return end_pos;
119 std::string::size_type end_pos = local
    [all...]
  /external/chromium_org/content/renderer/android/
address_detector.cc 48 const string16::const_iterator& end, size_t* start_pos, size_t* end_pos,
50 if (address_parser::FindAddress(begin, end, start_pos, end_pos)) {
52 GetContentText(string16(begin + *start_pos, begin + *end_pos)));
address_detector.h 25 size_t* end_pos,
email_detector.h 29 size_t* end_pos,
phone_number_detector.h 30 size_t* end_pos,
email_detector.cc 48 size_t* end_pos,
62 *end_pos = matcher->end(status);
phone_number_detector.cc 60 size_t* end_pos,
79 // Need to return start_pos and end_pos relative to a UTF16 encoding.
81 *end_pos = *start_pos + UTF8ToUTF16(match.raw_string()).length();
content_detector.h 45 // the input iterators are returned in start_pos and end_pos.
50 size_t* end_pos,
  /external/chromium_org/content/common/android/
address_parser.h 24 // and |end_pos| are set to the starting and ending position of the address,
29 size_t* end_pos);
address_parser.cc 63 size_t* end_pos) {
197 *end_pos = words[zip_word].end - begin;
  /external/v8/src/
messages.h 71 int end_pos)
74 end_pos_(end_pos) { }
79 int end_pos() const { return end_pos_; } function in class:v8::internal::MessageLocation
scanner.h 302 Location(int b, int e) : beg_pos(b), end_pos(e) { }
303 Location() : beg_pos(0), end_pos(0) { }
306 return beg_pos >= 0 && end_pos >= beg_pos;
312 int end_pos; member in struct:v8::internal::Scanner::Location
356 int source_length = (location.end_pos - location.beg_pos);
preparser.h 497 CheckOctalLiteral(start_position, scanner_->location().end_pos, &ok);
507 log_->LogMessage(location.beg_pos, location.end_pos, type, name_opt);
510 int end_pos,
513 log_->LogMessage(start_pos, end_pos, type, name_opt);
516 void CheckOctalLiteral(int beg_pos, int end_pos, bool* ok);
639 void CheckDelayedStrictModeViolation(int beg_pos, int end_pos, bool* ok);
  /external/v8/preparser/
preparser-process.cc 157 int end_pos() { function in class:PreparseDataInterpreter
225 : throws(false), type(NULL), beg_pos(-1), end_pos(-1) { }
229 int end_pos; member in struct:ExceptionExpectation
248 expects->type, actual_message, reader.beg_pos(), reader.end_pos());
257 if (expects->end_pos >= 0) {
258 if (expects->end_pos != reader.end_pos()) {
260 expects->end_pos, reader.end_pos());
266 message, reader.beg_pos(), reader.end_pos());
    [all...]
  /external/chromium_org/v8/src/
messages.h 71 int end_pos)
74 end_pos_(end_pos) { }
79 int end_pos() const { return end_pos_; } function in class:v8::internal::MessageLocation
scanner.h 288 Location(int b, int e) : beg_pos(b), end_pos(e) { }
289 Location() : beg_pos(0), end_pos(0) { }
292 return beg_pos >= 0 && end_pos >= beg_pos;
298 int end_pos; member in struct:v8::internal::Scanner::Location
344 int source_length = (location.end_pos - location.beg_pos);
preparser.h 173 CheckOctalLiteral(start_position, scanner_->location().end_pos, &ok);
540 log_->LogMessage(location.beg_pos, location.end_pos, type, name_opt);
543 int end_pos,
546 log_->LogMessage(start_pos, end_pos, type, name_opt);
549 void CheckOctalLiteral(int beg_pos, int end_pos, bool* ok);
675 void CheckDelayedStrictModeViolation(int beg_pos, int end_pos, bool* ok);
  /external/chromium_org/v8/preparser/
preparser-process.cc 157 int end_pos() { function in class:PreparseDataInterpreter
225 : throws(false), type(NULL), beg_pos(-1), end_pos(-1) { }
229 int end_pos; member in struct:ExceptionExpectation
248 expects->type, actual_message, reader.beg_pos(), reader.end_pos());
257 if (expects->end_pos >= 0) {
258 if (expects->end_pos != reader.end_pos()) {
260 expects->end_pos, reader.end_pos());
266 message, reader.beg_pos(), reader.end_pos());
    [all...]
  /external/chromium_org/content/common/gpu/media/
video_decode_accelerator_unittest.cc 505 std::string GetBytesForFirstFragments(size_t start_pos, size_t* end_pos);
508 std::string GetBytesForNextFragments(size_t start_pos, size_t* end_pos);
510 void GetBytesForNextNALU(size_t start_pos, size_t* end_pos); // For h.264.
512 size_t start_pos, size_t* end_pos); // For VP8.
831 size_t start_pos, size_t* end_pos) {
833 *end_pos = start_pos;
834 while (*end_pos + 4 < encoded_data_.size()) {
835 if ((encoded_data_[*end_pos + 4] & 0x1f) == 0x7) // SPS start frame
836 return GetBytesForNextFragments(*end_pos, end_pos);
909 size_t end_pos; local
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 174 size_t end_pos = m_PathName.find_last_of(separator); local
175 if (end_pos != StringType::npos)
176 return Path(m_PathName.substr(0, end_pos));
193 size_t end_pos = m_PathName.find_last_of(dot); local
194 Path result_path(m_PathName.substr(begin_pos, end_pos - begin_pos));
  /external/dropbear/
progressmeter.c 59 static off_t end_pos; /* ending position of transfer */ variable
125 bytes_left = end_pos - cur_pos;
132 transferred = end_pos;
164 if (end_pos != 0)
165 percent = ((float)cur_pos / end_pos) * 100;
243 end_pos = filesize;
267 if (cur_pos != end_pos)
  /external/openssh/
progressmeter.c 69 static off_t end_pos; /* ending position of transfer */ variable
135 bytes_left = end_pos - cur_pos;
142 transferred = end_pos;
174 if (end_pos != 0)
175 percent = ((float)cur_pos / end_pos) * 100;
254 end_pos = filesize;
278 if (cur_pos != end_pos)
  /external/llvm/lib/Support/
Path.cpp 138 size_t end_pos = filename_pos(path); local
140 bool filename_was_sep = path.size() > 0 && is_separator(path[end_pos]);
143 size_t root_dir_pos = root_dir_start(path.substr(0, end_pos));
145 while(end_pos > 0 &&
146 (end_pos - 1) != root_dir_pos &&
147 is_separator(path[end_pos - 1]))
148 --end_pos;
150 if (end_pos == 1 && root_dir_pos == 0 && filename_was_sep)
153 return end_pos;
235 size_t end_pos = Path.find_first_of(separators, Position)
    [all...]
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 112 static void GetNextNALUBoundary(size_t start_pos, size_t* end_pos);
308 size_t start_pos, size_t* end_pos) {
310 *end_pos = start_pos;
311 *end_pos += 4;
312 while (*end_pos + 3 < kDataLen &&
313 !LookingAtNAL(kData, *end_pos)) {
314 ++*end_pos;
316 if (*end_pos + 3 >= kDataLen) {
317 *end_pos = kDataLen;
338 size_t end_pos; local
    [all...]
  /external/chromium_org/ui/gfx/
interpolated_transform.h 167 const gfx::Point& end_pos);
169 const gfx::Point& end_pos,

Completed in 363 milliseconds

1 2 3 4