Searched refs:next_index (Results 1 - 21 of 21) sorted by relevance

/external/proguard/src/proguard/wtk/
H A DProGuardObfuscator.java122 int next_index = classPathString.indexOf(separator, index);
123 if (next_index < 0)
125 next_index = classPathString.length();
130 new ClassPathEntry(new File(classPathString.substring(index, next_index)),
136 index = next_index + 1;
/external/chromium_org/v8/src/
H A Dheap-snapshot-generator-inl.h54 int next_index = index + children_count_; local
56 return next_index;
H A Druntime.cc3429 int next_index = i + 1;
3430 if (next_index == length) { // No next character!
3433 Char c2 = characters[next_index];
3438 parts->Add(ReplacementPart::ReplacementSubString(last, next_index),
3440 last = next_index + 1; // Continue after the second "$".
3443 last = next_index;
3445 i = next_index;
3452 i = next_index;
3460 i = next_index;
3468 i = next_index;
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dtokens_test.py37 next_index = i + 1
42 if next_index < len(neighbor_tokens):
43 neighbor_tokens[i].next = neighbor_tokens[next_index]
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Dtokens_test.py37 next_index = i + 1
42 if next_index < len(neighbor_tokens):
43 neighbor_tokens[i].next = neighbor_tokens[next_index]
/external/chromium_org/net/disk_cache/flash/
H A Dlog_store.cc170 int32 next_index = (write_index_ + 1) % num_segments_; local
172 while (InUse(next_index)) {
173 next_index = (next_index + 1) % num_segments_;
174 DCHECK_NE(next_index, write_index_);
176 return next_index;
/external/chromium_org/net/http/
H A Dhttp_network_transaction_ssl_unittest.cc148 EXPECT_EQ(1u, mock_data.next_index());
194 EXPECT_EQ(2u, mock_data.next_index());
241 EXPECT_EQ(2u, mock_data.next_index());
294 EXPECT_EQ(3u, mock_data.next_index());
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc747 size_t next_index = source_index + 1; // return value = item after source local
766 if (static_cast<size_t>(next - matches->begin()) < next_index)
767 next_index--;
769 return next_index;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.h56 unsigned next_index; member in struct:r600_pipe_fences
H A Dradeonsi_pipe.c95 if ((rscreen->fences.next_index + 1) >= 1024) {
100 index = rscreen->fences.next_index++;
709 rscreen->fences.next_index = 0;
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.h56 unsigned next_index; member in struct:r600_pipe_fences
H A Dradeonsi_pipe.c95 if ((rscreen->fences.next_index + 1) >= 1024) {
100 index = rscreen->fences.next_index++;
709 rscreen->fences.next_index = 0;
/external/chromium_org/ui/message_center/views/
H A Dmessage_center_view.cc890 size_t next_index = i + 1; local
891 if (next_index >= message_views_.size())
892 next_index = message_views_.size() - 2;
894 message_views_[next_index]->RequestFocus();
896 message_views_[next_index]->RequestFocusOnCloseButton();
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc1014 size_t next_index = source_index + 1; // return value = item after source local
1034 if (static_cast<size_t>(next - matches->begin()) < next_index)
1035 --next_index;
1037 return next_index;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_pipe.c78 if ((rscreen->fences.next_index + 1) >= 1024) {
83 index = rscreen->fences.next_index++;
982 rscreen->fences.next_index = 0;
H A Dr600_pipe.h149 unsigned next_index; member in struct:r600_pipe_fences
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_pipe.c78 if ((rscreen->fences.next_index + 1) >= 1024) {
83 index = rscreen->fences.next_index++;
982 rscreen->fences.next_index = 0;
H A Dr600_pipe.h149 unsigned next_index; member in struct:r600_pipe_fences
/external/chromium/testing/gmock/scripts/generator/cpp/
H A Dast.py571 next_index = i + 1
572 if next_index < end and parts[next_index].name == '::':
/external/chromium_org/net/socket/
H A Dsocket_test_util.h557 size_t next_index() { return next_index_; } function in class:net::SocketDataProviderArray
/external/v8/src/
H A Druntime.cc2610 int next_index = i + 1;
2611 if (next_index == length) { // No next character!
2614 Char c2 = characters[next_index];
2619 parts->Add(ReplacementPart::ReplacementSubString(last, next_index));
2620 last = next_index + 1; // Continue after the second "$".
2623 last = next_index;
2625 i = next_index;
2632 i = next_index;
2640 i = next_index;
2648 i = next_index;
[all...]

Completed in 295 milliseconds