Searched refs:next_index (Results 1 - 22 of 22) 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/mojo/system/
H A Dlocal_data_pipe.cc77 size_t next_index = (buffer_first_element_index_ +
80 *buffer = buffer_.get() + next_index * element_size();
208 size_t next_index = buffer_first_element_index_ + local
210 if (next_index >= capacity_num_elements()) {
211 next_index %= capacity_num_elements();
212 DCHECK_GE(buffer_first_element_index_, next_index);
213 return buffer_first_element_index_ - next_index;
215 return capacity_num_elements() - next_index;
/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.cc3537 int next_index = i + 1;
3538 if (next_index == length) { // No next character!
3541 Char c2 = characters[next_index];
3546 parts->Add(ReplacementPart::ReplacementSubString(last, next_index),
3548 last = next_index + 1; // Continue after the second "$".
3551 last = next_index;
3553 i = next_index;
3560 i = next_index;
3568 i = next_index;
3576 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.cc149 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/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc1015 size_t next_index = source_index + 1; // return value = item after source local
1035 if (static_cast<size_t>(next - matches->begin()) < next_index)
1036 --next_index;
1038 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_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
H A Dtree.jquery.js738 var next_index;
742 next_index = this.parent.getChildIndex(this) + 1;
743 if (next_index < this.parent.children.length) {
744 return this.parent.children[next_index];
/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.h605 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 598 milliseconds