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

1 2

  /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);
preparse-data.cc 63 int end_pos,
72 function_store_.Add(end_pos);
preparser.cc 72 int end_pos = scanner_->location().end_pos; local
73 CheckOctalLiteral(start_position, end_pos, &ok);
75 CheckDelayedStrictModeViolation(start_position, end_pos, &ok);
128 // Checks whether octal literal last seen is between beg_pos and end_pos.
130 void PreParser::CheckOctalLiteral(int beg_pos, int end_pos, bool* ok) {
132 if (beg_pos <= octal.beg_pos && octal.end_pos <= end_pos) {
276 ReportMessageAt(start_location.beg_pos, end_location.end_pos,
405 ReportMessageAt(location.beg_pos, location.end_pos,
    [all...]
scanner.cc 234 next_.location.end_pos = pos + 1;
588 next_.location.end_pos = source_pos();
598 ASSERT_EQ(next_.location.end_pos, current_pos);
1000 next_.location.end_pos = source_pos() - (seen_equal ? 1 : 0);
1084 next_.location.end_pos = source_pos() - 1;
messages.cc 78 end = loc->end_pos();
parser.cc 373 int end_pos = Read(PreparseDataConstants::kMessageEndPos); local
374 return Scanner::Location(beg_pos, end_pos);
625 CheckOctalLiteral(beg_loc, scanner().location().end_pos, &ok);
775 source_location.end_pos);
793 source_location.end_pos);
    [all...]
  /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/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/webkit/Source/WebKit/android/content/
PhoneEmailDetector.h 62 size_t* end_pos);
content_detector.h 82 // the input iterators are returned in start_pos and end_pos.
87 size_t* end_pos) = 0;
address_detector.h 55 size_t* end_pos) OVERRIDE;
PhoneEmailDetector.cpp 73 size_t* end_pos)
88 *end_pos = m_findState.mEndResult;
  /external/llvm/lib/Support/
PathV2.cpp 130 size_t end_pos = filename_pos(path); local
132 bool filename_was_sep = path.size() > 0 && is_separator(path[end_pos]);
135 size_t root_dir_pos = root_dir_start(path.substr(0, end_pos));
137 while(end_pos > 0 &&
138 (end_pos - 1) != root_dir_pos &&
139 is_separator(path[end_pos - 1]))
140 --end_pos;
142 if (end_pos == 1 && root_dir_pos == 0 && filename_was_sep)
145 return end_pos;
215 size_t end_pos = Path.find_first_of(separators, Position)
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 145 size_t end_pos = m_PathName.find_last_of(separator); local
146 if (end_pos != StringType::npos)
147 return Path(m_PathName.substr(0, end_pos));
154 size_t end_pos = m_PathName.find_last_of("."); local
155 Path result_path(m_PathName.substr(begin_pos, end_pos - begin_pos));
  /external/dbus/dbus/
dbus-address.c 369 int pos, end_pos, len, i; local
411 if (!_dbus_string_find (&str, pos, ";", &end_pos))
412 end_pos = len;
415 if (!_dbus_string_find_to (&str, pos, end_pos, ":", &found_pos))
429 while (pos < end_pos)
433 if (!_dbus_string_find_to (&str, pos, end_pos, ",", &comma_pos))
434 comma_pos = end_pos;
530 pos = end_pos + 1;
dbus-marshal-recursive.c 297 int end_pos; local
303 end_pos = reader->u.array.start_pos + array_reader_get_array_len (reader);
305 _dbus_assert (reader->value_pos <= end_pos);
308 return reader->value_pos == end_pos;
548 int end_pos; local
550 end_pos = reader->u.array.start_pos + array_reader_get_array_len (reader);
553 _dbus_verbose (" reader %p array next START start_pos = %d end_pos = %d value_pos = %d current_type = %s\n",
556 end_pos, reader->value_pos,
560 _dbus_assert (reader->value_pos < end_pos);
606 _dbus_verbose (" reader %p array next END start_pos = %d end_pos = %d value_pos = %d current_type = %s\n"
916 int end_pos; local
    [all...]
  /external/chromium/chrome/browser/
process_info_snapshot_mac.cc 74 size_t end_pos = executable_name->find('\0'); local
75 if (end_pos == std::string::npos) {
79 executable_name->resize(end_pos);
  /packages/apps/Browser/tools/
get_search_engines.py 115 end_pos = self.chrome_data.find('};', start_pos);
116 engine_data_str = self.chrome_data[start_pos:end_pos]
  /external/chromium/webkit/glue/
dom_serializer_unittest.cc 268 int end_pos = start_pos; local
271 if (content[end_pos] <= 0x0020 || content[end_pos] == L';')
273 ++end_pos;
276 charset_info = content.substr(start_pos, end_pos - start_pos);
    [all...]
multipart_response_delegate_unittest.cc 311 const int end_pos; // end offset in data member in struct:__anon4785::TestChunk
338 ASSERT_TRUE(chunks[i].start_pos < chunks[i].end_pos);
340 chunks[i].end_pos - chunks[i].start_pos);
  /external/dbus/bus/
desktop-file.c 185 int end_pos,
195 retval = dbus_malloc (end_pos - pos + 1);
204 while (pos < end_pos)
219 if (pos >= end_pos)
  /external/chromium/net/base/
mime_util.cc 131 size_t end_pos = strcspn(extensions, ","); local
132 if (end_pos == ext_len &&
135 extensions += end_pos;

Completed in 682 milliseconds

1 2