/external/chromium_org/v8/src/ |
uri.h | 71 Isolate* isolate, Handle<String> string, int start_index); 107 Isolate* isolate, Handle<String> string, int start_index) { 114 for (int i = start_index; i < length; unescaped_length++) { 124 ASSERT(start_index < length); 126 isolate->factory()->NewProperSubString(string, 0, start_index); 135 for (int i = start_index; i < length; dest_position++) { 147 for (int i = start_index; i < length; dest_position++) {
|
regexp.js | 327 var start_index; 330 start_index = lastMatchInfo[CAPTURE0]; 334 start_index = OVERRIDE_POS(override); 337 return %_SubString(subject, 0, start_index); 342 var start_index; 345 start_index = lastMatchInfo[CAPTURE1]; 351 start_index = OVERRIDE_POS(override) + match.length; 353 return %_SubString(subject, start_index, subject.length);
|
regexp-macro-assembler.cc | 75 int start_index) { 78 ASSERT(start_index >= 0); 79 ASSERT(start_index <= subject->length()); 90 return address + start_index; 99 return reinterpret_cast<const byte*>(data + start_index);
|
string-search.h | 130 int start_index); 134 int start_index); 138 int start_index); 143 int start_index); 147 int start_index); 310 int start_index) { 321 int index = start_index; 433 int start_index) { 445 int index = start_index; // No matches found prior to this index. 573 int start_index) { [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
tree.rb | 224 attr_accessor :start_index 377 | start = #{ start_index.inspect } 382 freshen( start_index ) 475 @start_index = -1 481 @start_index = payload.start_index 525 def start_index method in class:ANTLR3.CommonTree 526 @start_index == -1 and @token and return @token.index 527 return @start_index 535 alias token_start_index= start_index [all...] |
/external/chromium/chrome/browser/ui/views/extensions/ |
browser_action_overflow_menu_controller.h | 39 int start_index); 98 // won't show all items, just the one starting at |start_index| and above.
|
browser_action_overflow_menu_controller.cc | 23 int start_index) 28 start_index_(start_index), 34 for (size_t i = start_index; i < views_->size(); ++i) {
|
/external/chromium_org/ash/ |
focus_cycler.cc | 63 int start_index = index; local 75 if (index == start_index)
|
/external/chromium_org/chrome/browser/ui/ |
singleton_tabs.cc | 90 int start_index = local 94 int tab_index = (start_index + i) % tab_count;
|
/external/chromium_org/chrome/browser/ui/views/extensions/ |
browser_action_overflow_menu_controller.h | 41 int start_index); 108 // won't show all items, just the one starting at |start_index| and above.
|
browser_action_overflow_menu_controller.cc | 29 int start_index) 36 start_index_(start_index), 43 for (size_t i = start_index; i < views_->size(); ++i) {
|
/external/v8/src/ |
regexp.js | 330 var start_index; 333 start_index = lastMatchInfo[CAPTURE0]; 337 start_index = override[override.length - 2]; 340 return SubString(subject, 0, start_index); 345 var start_index; 348 start_index = lastMatchInfo[CAPTURE1]; 354 start_index = override[override.length - 2] + pattern.length; 356 return SubString(subject, start_index, subject.length);
|
regexp-macro-assembler.cc | 76 int start_index) { 79 ASSERT(start_index >= 0); 80 ASSERT(start_index <= subject->length()); 91 return address + start_index; 100 return reinterpret_cast<const byte*>(data + start_index);
|
string-search.h | 130 int start_index); 134 int start_index); 138 int start_index); 143 int start_index); 147 int start_index); 302 int start_index) { 313 int index = start_index; 425 int start_index) { 437 int index = start_index; // No matches found prior to this index. 565 int start_index) { [all...] |
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
bookmark_menu_controller_views.cc | 173 int start_index; local 175 bookmark_bar_loc, &start_index); 179 menu_delegate_->SetActiveMenu(node, start_index);
|
/external/chromium_org/chrome/common/favicon/ |
favicon_url_parser.cc | 25 // |start_index|. 27 size_t start_index, 29 return path.compare(start_index, search.length(), search) == 0;
|
/external/chromium_org/v8/test/webkit/ |
testcfg.py | 134 start_index = 0 143 yield ActIterator(lines[start_index:index]) 145 start_index = index + 1
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_win.h | 288 STDMETHODIMP scrollSubstringTo(LONG start_index, 293 STDMETHODIMP scrollSubstringToPoint(LONG start_index, LONG end_index, 399 unsigned int start_index, 409 unsigned int start_index, 419 unsigned int start_index,
|
/frameworks/base/tools/orientationplot/ |
orientationplot.py | 396 start_index = prefix_index + len(prefix) 397 delim_index = line.find(',', start_index) 399 return line[start_index:] 401 return line[start_index:delim_index] 415 start_index = prefix_index + len(prefix) + 1 416 delim_index = line.find(']', start_index) 421 while start_index < delim_index: 422 comma_index = line.find(', ', start_index, delim_index) 424 result.append(float(line[start_index:delim_index])) 426 result.append(float(line[start_index:comma_index]) [all...] |
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
indentation.py | 170 Position(token.start_index, token.length)]) 179 Position(token.start_index, token.length)]) 370 start_index = token.start_index 372 start_index += self._start_index_offset[token.line_number] 375 hard_stops.add(start_index + 1) 378 hard_stops.add(start_index + 7) 381 hard_stops.add(start_index + 1) 384 hard_stops.add(start_index + len(token.string) + 1) 387 hard_stops.add(start_index + 2 [all...] |
/external/chromium_org/third_party/closure_linter/closure_linter/ |
indentation.py | 170 Position(token.start_index, token.length)]) 179 Position(token.start_index, token.length)]) 370 start_index = token.start_index 372 start_index += self._start_index_offset[token.line_number] 375 hard_stops.add(start_index + 1) 378 hard_stops.add(start_index + 7) 381 hard_stops.add(start_index + 1) 384 hard_stops.add(start_index + len(token.string) + 1) 387 hard_stops.add(start_index + 2 [all...] |
/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_menu_controller_views.cc | 59 int start_index; local 61 menu_button, &anchor, &start_index); 261 int start_index; local 263 bookmark_bar_->GetNodeForButtonAt(bookmark_bar_loc, &start_index); 269 alt_menu = CreateMenu(node, start_index); 275 *button, anchor, &start_index);
|
/external/chromium_org/native_client_sdk/src/libraries/xray/ |
xray.c | 181 int start_index = 1; local 186 for (i = start_index; i < num; ++i) { 193 start_index = 0; 249 int start_index = 1; local 256 for (i = start_index; i < num; ++i) { 267 start_index = 0; 279 int start_index = 1; local 283 for (i = start_index; i < num; ++i) { 292 start_index = 0;
|
/frameworks/base/tools/velocityplot/ |
velocityplot.py | 248 start_index = prefix_index + len(prefix) 249 delim_index = line.find(',', start_index) 251 return line[start_index:] 253 return line[start_index:delim_index]
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
tokens.py | 44 start_index: The character index in the line where this token starts. 72 self.start_index = None
|