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

12

/external/proguard/src/proguard/wtk/
H A DProGuardObfuscator.java123 int next_index = classPathString.indexOf(separator, index);
124 if (next_index < 0)
126 next_index = classPathString.length();
131 new ClassPathEntry(new File(classPathString.substring(index, next_index)),
137 index = next_index + 1;
/external/chromium_org/v8/src/
H A Dheap-snapshot-generator-inl.h31 int next_index = index + children_count_; local
33 return next_index;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dsync_buffer_unittest.cc25 EXPECT_EQ(kLen, sync_buffer.next_index());
40 EXPECT_EQ(0u, sync_buffer.next_index());
42 EXPECT_EQ(kLen / 2, sync_buffer.next_index());
44 EXPECT_EQ(kLen, sync_buffer.next_index());
47 EXPECT_EQ(kLen, sync_buffer.next_index());
69 EXPECT_EQ(kLen - kNewLen, sync_buffer.next_index());
74 sync_buffer[channel][sync_buffer.next_index() + i]);
78 // Now flush the buffer, and verify that it is all zeros, and that next_index
82 EXPECT_EQ(kLen, sync_buffer.next_index());
110 EXPECT_EQ(kLen - 1, sync_buffer.next_index());
[all...]
H A Dsync_buffer.h85 size_t next_index() const { return next_index_; } function in class:webrtc::SyncBuffer
H A Dmerge.cc135 sync_buffer_->ReplaceAtIndex(*output, old_length, sync_buffer_->next_index());
159 sync_buffer_->InsertZerosAtIndex(length_diff, sync_buffer_->next_index());
173 expanded_.PushBackFromIndex(*sync_buffer_, sync_buffer_->next_index());
H A Dneteq_impl.cc368 sync_buffer_->set_next_index(sync_buffer_->next_index() -
1710 if (sync_buffer_->dtmf_index() > sync_buffer_->next_index()) {
1713 sync_buffer_->dtmf_index() - sync_buffer_->next_index(),
1881 sync_buffer_->set_next_index(sync_buffer_->next_index() -
/external/chromium_org/chrome/browser/chromeos/ui/
H A Daccessibility_focus_ring_layer.cc46 int next_index = i; local
48 next_index = (next_index + 1) % 36;
49 next = input_ring.points[next_index];
50 } while (next.x() == p.x() && next.y() == p.y() && next_index != i);
/external/chromium_org/mojo/system/
H A Dlocal_data_pipe.cc316 size_t next_index = start_index_ + current_num_bytes_; local
317 if (next_index >= capacity_num_bytes()) {
318 next_index %= capacity_num_bytes();
319 DCHECK_GE(start_index_, next_index);
320 DCHECK_EQ(start_index_ - next_index,
322 return start_index_ - next_index;
324 return capacity_num_bytes() - next_index;
/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/content/browser/gamepad/
H A Draw_input_data_fetcher_win.cc315 uint32_t next_index = 0; local
321 for (; next_index < WebGamepad::axesLengthCap; ++next_index) {
322 if (!gamepad_info->axes[next_index].active)
325 if (next_index < WebGamepad::axesLengthCap) {
326 gamepad_info->axes[next_index].caps = axes_caps[i];
327 gamepad_info->axes[next_index].value = 0;
328 gamepad_info->axes[next_index].active = true;
330 std::max(gamepad_info->axes_length, next_index + 1);
334 if (next_index >
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dcluster.h232 int next_index = 0; local
235 new_index[(*symbols)[i]] = next_index;
236 (*out)[next_index] = tmp[(*symbols)[i]];
237 ++next_index;
240 out->resize(next_index);
/external/chromium_org/net/http/
H A Dhttp_network_transaction_ssl_unittest.cc149 EXPECT_EQ(3u, mock_data.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/cc/resources/
H A Dpicture_layer_tiling.cc1124 std::pair<int, int> next_index; local
1132 next_index = visible_iterator_.index();
1141 next_index = spiral_iterator_.index();
1149 next_index = spiral_iterator_.index();
1152 current_tile_ = tiling_->TileAt(next_index.first, next_index.second);
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc1105 size_t next_index = source_index + 1; // return value = item after source local
1125 if (static_cast<size_t>(next - matches->begin()) < next_index)
1126 --next_index;
1128 return next_index;
/external/chromium_org/chromeos/disks/
H A Ddisk_mount_manager.cc509 size_t next_index,
512 RefreshDeviceAtIndex(devices, next_index);
508 RefreshAfterGetDeviceProperties(const std::vector<std::string>& devices, size_t next_index, const DiskInfo& disk_info) argument
/external/chromium_org/ui/events/gesture_detection/
H A Dvelocity_tracker.cc641 uint32_t next_index = (index + 1) % HISTORY_SIZE; local
643 static_cast<float>((movements_[next_index].event_time -
/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;
/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;
/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_org/v8/test/cctest/
H A Dtest-constantpool.cc183 CHECK_EQ(expected_indexes[i++], iter.next_index());

Completed in 721 milliseconds

12