Searched refs:next_index (Results 1 - 25 of 33) 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/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.cc366 sync_buffer_->set_next_index(sync_buffer_->next_index() -
1723 if (sync_buffer_->dtmf_index() > sync_buffer_->next_index()) {
1726 sync_buffer_->dtmf_index() - sync_buffer_->next_index(),
1891 sync_buffer_->set_next_index(sync_buffer_->next_index() -
/external/chromium_org/v8/src/
H A Dheap-snapshot-generator-inl.h31 int next_index = index + children_count_; local
33 return next_index;
H A Dobjects-debug.cc383 Address code_entry = get_code_ptr_entry(code_iter.next_index());
388 VerifyObjectField(OffsetOfElementAt(heap_iter.next_index()));
H A Dobjects-visiting-inl.h504 array->RawFieldOfElementAt(code_iter.next_index()));
510 Object** slot = array->RawFieldOfElementAt(heap_iter.next_index());
/external/chromium_org/mojo/system/
H A Dlocal_data_pipe.cc307 size_t next_index = start_index_ + current_num_bytes_; local
308 if (next_index >= capacity_num_bytes()) {
309 next_index %= capacity_num_bytes();
310 DCHECK_GE(start_index_, next_index);
311 DCHECK_EQ(start_index_ - next_index,
313 return start_index_ - next_index;
315 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.cc887 std::pair<int, int> next_index; local
895 next_index = visible_iterator_.index();
915 next_index = spiral_iterator_.index();
923 next_index = spiral_iterator_.index();
926 current_tile_ = tiling_->TileAt(next_index.first, next_index.second);
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc1064 size_t next_index = source_index + 1; // return value = item after source local
1084 if (static_cast<size_t>(next - matches->begin()) < next_index)
1085 --next_index;
1087 return next_index;
/external/chromium_org/ui/events/gesture_detection/
H A Dvelocity_tracker.cc628 uint32_t next_index = (index + 1) % HISTORY_SIZE; local
630 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.cc199 CHECK_EQ(expected_indexes[i++], iter.next_index());

Completed in 1324 milliseconds

12