current_index_     49 base/win/enum_variant.cc   unsigned long count = std::min(requested_count, count_ - current_index_);
current_index_     51 base/win/enum_variant.cc     out_elements[i] = items_[current_index_ + i];
current_index_     52 base/win/enum_variant.cc   current_index_ += count;
current_index_     60 base/win/enum_variant.cc   if (current_index_ + count > count_)
current_index_     61 base/win/enum_variant.cc     count = count_ - current_index_;
current_index_     63 base/win/enum_variant.cc   current_index_ += count;
current_index_     68 base/win/enum_variant.cc   current_index_ = 0;
current_index_     76 base/win/enum_variant.cc   other->Skip(current_index_);
current_index_     46 base/win/enum_variant.h   unsigned long current_index_;
current_index_     16 cc/debug/ring_buffer.h     : current_index_(0) {
current_index_     24 cc/debug/ring_buffer.h     return current_index_;
current_index_     29 cc/debug/ring_buffer.h     return BufferIndex(n) < current_index_;
current_index_     46 cc/debug/ring_buffer.h     current_index_++;
current_index_     50 cc/debug/ring_buffer.h     current_index_ = 0;
current_index_     97 cc/debug/ring_buffer.h     if (current_index_ < kSize)
current_index_     98 cc/debug/ring_buffer.h       return Iterator(*this, kSize - current_index_);
current_index_    111 cc/debug/ring_buffer.h     return (current_index_ + n) % kSize;
current_index_    115 cc/debug/ring_buffer.h   size_t current_index_;
current_index_    426 cc/resources/picture.cc       current_index_(0),
current_index_    485 cc/resources/picture.cc   ++current_index_;
current_index_    487 cc/resources/picture.cc   if (current_index_ < current_pixel_refs_->size())
current_index_    501 cc/resources/picture.cc         current_index_ = 0;
current_index_    514 cc/resources/picture.cc     current_index_ = 0;
current_index_     96 cc/resources/picture.h       DCHECK_LT(current_index_, current_pixel_refs_->size());
current_index_     97 cc/resources/picture.h       return (*current_pixel_refs_)[current_index_];
current_index_    101 cc/resources/picture.h       DCHECK_LT(current_index_, current_pixel_refs_->size());
current_index_    102 cc/resources/picture.h       return (*current_pixel_refs_)[current_index_];
current_index_    107 cc/resources/picture.h       return current_index_ < current_pixel_refs_->size();
current_index_    114 cc/resources/picture.h     unsigned current_index_;
current_index_     21 cc/resources/task_graph_runner.cc       : graph_(graph), task_(task), current_index_(-1), current_node_(NULL) {
current_index_     26 cc/resources/task_graph_runner.cc     DCHECK_LT(current_index_, graph_->edges.size());
current_index_     27 cc/resources/task_graph_runner.cc     DCHECK_EQ(graph_->edges[current_index_].task, task_);
current_index_     33 cc/resources/task_graph_runner.cc     DCHECK_LT(current_index_, graph_->edges.size());
current_index_     34 cc/resources/task_graph_runner.cc     DCHECK_EQ(graph_->edges[current_index_].task, task_);
current_index_     43 cc/resources/task_graph_runner.cc       ++current_index_;
current_index_     44 cc/resources/task_graph_runner.cc       if (current_index_ == graph_->edges.size())
current_index_     46 cc/resources/task_graph_runner.cc     } while (graph_->edges[current_index_].task != task_);
current_index_     53 cc/resources/task_graph_runner.cc                          graph_->edges[current_index_].dependent));
current_index_     60 cc/resources/task_graph_runner.cc   operator bool() const { return current_index_ < graph_->edges.size(); }
current_index_     65 cc/resources/task_graph_runner.cc   size_t current_index_;
current_index_     32 chrome/browser/chromeos/drive/file_task_executor.cc     current_index_(0),
current_index_     61 chrome/browser/chromeos/drive/file_task_executor.cc   DCHECK_EQ(current_index_, 0);
current_index_     62 chrome/browser/chromeos/drive/file_task_executor.cc   current_index_ = paths.size();
current_index_    121 chrome/browser/chromeos/drive/file_task_executor.cc   current_index_--;
current_index_    122 chrome/browser/chromeos/drive/file_task_executor.cc   DCHECK_GE(current_index_, 0);
current_index_    123 chrome/browser/chromeos/drive/file_task_executor.cc   if (current_index_ == 0)
current_index_     48 chrome/browser/chromeos/drive/file_task_executor.h   int current_index_;
current_index_    129 content/browser/renderer_host/render_widget_host_impl.cc       : current_index_(0) {
current_index_    143 content/browser/renderer_host/render_widget_host_impl.cc     while (current_index_ < hosts_.size() && !host) {
current_index_    144 content/browser/renderer_host/render_widget_host_impl.cc       RenderWidgetHostID id = hosts_[current_index_];
current_index_    146 content/browser/renderer_host/render_widget_host_impl.cc       ++current_index_;
current_index_    153 content/browser/renderer_host/render_widget_host_impl.cc   size_t current_index_;
current_index_     60 content/renderer/gpu/compositor_software_output_device.cc     : current_index_(-1),
current_index_    115 content/renderer/gpu/compositor_software_output_device.cc   current_index_ = -1;
current_index_    128 content/renderer/gpu/compositor_software_output_device.cc   current_index_ = -1;
current_index_    139 content/renderer/gpu/compositor_software_output_device.cc   if (current_index_ != size_t(-1))
current_index_    140 content/renderer/gpu/compositor_software_output_device.cc     previous = buffers_[current_index_];
current_index_    141 content/renderer/gpu/compositor_software_output_device.cc   current_index_ = FindFreeBuffer(current_index_ + 1);
current_index_    142 content/renderer/gpu/compositor_software_output_device.cc   Buffer* current = buffers_[current_index_];
current_index_    199 content/renderer/gpu/compositor_software_output_device.cc   Buffer* buffer = buffers_[current_index_];
current_index_     88 content/renderer/gpu/compositor_software_output_device.h   size_t current_index_;
current_index_    179 media/base/sinc_resampler_unittest.cc     for (int i = 0; i < frames; ++i, ++current_index_) {
current_index_    181 media/base/sinc_resampler_unittest.cc       if (Frequency(current_index_) > 0.5 * sample_rate_) {
current_index_    185 media/base/sinc_resampler_unittest.cc         double t = static_cast<double>(current_index_) / sample_rate_;
current_index_    207 media/base/sinc_resampler_unittest.cc   int current_index_;
current_index_     10 sandbox/win/src/policy_engine_processor.cc   state_.current_index_ = index;
current_index_    132 sandbox/win/src/policy_engine_processor.h     size_t current_index_;