HomeSort by relevance Sort by last modified time
    Searched refs:current_index_ (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/tools/gn/
deps_iterator.cc 9 DepsIterator::DepsIterator(const Target* t) : current_index_(0) {
19 DepsIterator::DepsIterator(const Target* t, LinkedOnly) : current_index_(0) {
36 current_index_++;
37 if (current_index_ >= vect_stack_[0]->size()) {
43 current_index_ = 0;
deps_iterator.h 43 DCHECK_LT(current_index_, vect_stack_[0]->size());
44 return (*vect_stack_[0])[current_index_];
56 size_t current_index_; member in class:DepsIterator
  /external/chromium_org/cc/debug/
ring_buffer.h 16 : current_index_(0) {
24 return current_index_;
29 return BufferIndex(n) < current_index_;
46 current_index_++;
50 current_index_ = 0;
97 if (current_index_ < kSize)
98 return Iterator(*this, kSize - current_index_);
111 return (current_index_ + n) % kSize;
115 size_t current_index_; member in class:cc::RingBuffer
  /external/chromium_org/base/win/
enum_variant.cc 17 current_index_(0) {
49 unsigned long count = std::min(requested_count, count_ - current_index_);
51 out_elements[i] = items_[current_index_ + i];
52 current_index_ += count;
60 if (current_index_ + count > count_)
61 count = count_ - current_index_;
63 current_index_ += count;
68 current_index_ = 0;
76 other->Skip(current_index_);
enum_variant.h 46 unsigned long current_index_; member in class:base::win::EnumVariant
  /external/chromium_org/third_party/webrtc/common_audio/resampler/
sinusoidal_linear_chirp_source.cc 25 current_index_(0),
33 for (int i = 0; i < frames; ++i, ++current_index_) {
35 if (Frequency(current_index_) > 0.5 * sample_rate_) {
39 double t = (static_cast<double>(current_index_) - delay_samples_) /
sinusoidal_linear_chirp_source.h 47 int current_index_; member in class:webrtc::SinusoidalLinearChirpSource
  /external/chromium_org/v8/src/
data-flow.cc 33 current_index_++;
35 val = target_->data_[current_index_];
36 current_ = current_index_ << 5;
json-stringifier.h 160 int current_index_; member in class:v8::internal::BASE_EMBEDDED
241 current_index_(0),
324 current_index_++, c);
327 current_index_++, c);
329 if (current_index_ == part_length_) Extend();
711 DCHECK(current_index_ < part_length_);
713 current_index_);
742 current_index_ = 0;
752 current_index_ = 0;
791 if (((part_length_ - current_index_) >> 3) > length)
    [all...]
data-flow.h 25 current_index_(0),
33 bool Done() const { return current_index_ >= target_->data_length_; }
58 int current_index_; member in class:v8::internal::BitVector::BASE_EMBEDDED
  /external/chromium_org/ash/wm/
window_cycle_list.cc 112 current_index_(0) {
144 DCHECK(static_cast<size_t>(current_index_) < windows_.size());
147 current_index_ += direction == WindowCycleController::FORWARD ? 1 : -1;
150 current_index_ = (current_index_ + windows_.size()) % windows_.size();
151 DCHECK(windows_[current_index_]);
155 showing_window_->Show(windows_[current_index_]);
165 if (current_index_ > removed_index ||
166 current_index_ == static_cast<int>(windows_.size())) {
167 current_index_--
    [all...]
window_cycle_list.h 51 int current_index_; member in class:ash::WindowCycleList
  /external/chromium_org/cc/resources/
picture.h 100 DCHECK_LT(current_index_, current_pixel_refs_->size());
101 return (*current_pixel_refs_)[current_index_];
105 DCHECK_LT(current_index_, current_pixel_refs_->size());
106 return (*current_pixel_refs_)[current_index_];
111 return current_index_ < current_pixel_refs_->size();
118 unsigned current_index_; member in class:cc::Picture::PixelRefIterator
task_graph_runner.cc 22 current_index_(static_cast<size_t>(-1)),
28 DCHECK_LT(current_index_, graph_->edges.size());
29 DCHECK_EQ(graph_->edges[current_index_].task, task_);
35 DCHECK_LT(current_index_, graph_->edges.size());
36 DCHECK_EQ(graph_->edges[current_index_].task, task_);
45 ++current_index_;
46 if (current_index_ == graph_->edges.size())
48 } while (graph_->edges[current_index_].task != task_);
55 graph_->edges[current_index_].dependent));
62 operator bool() const { return current_index_ < graph_->edges.size();
67 size_t current_index_; member in class:cc::__anon7402::DependentIterator
    [all...]
picture.cc 442 current_index_(0),
454 current_index_(0) {
501 ++current_index_;
503 if (current_index_ < current_pixel_refs_->size())
517 current_index_ = 0;
530 current_index_ = 0;
  /external/chromium_org/chrome/browser/chromeos/drive/
file_task_executor.cc 63 current_index_(0),
72 current_index_(0),
103 DCHECK_EQ(current_index_, 0);
104 current_index_ = paths.size();
149 current_index_--;
150 DCHECK_GE(current_index_, 0);
151 if (current_index_ == 0)
file_task_executor.h 65 int current_index_; member in class:drive::FileTaskExecutor
  /external/chromium_org/content/renderer/gpu/
compositor_software_output_device.cc 64 : current_index_(kInvalidIndex),
121 current_index_ = kInvalidIndex;
134 current_index_ = kInvalidIndex;
145 if (current_index_ != kInvalidIndex)
146 previous = buffers_[current_index_];
147 current_index_ = FindFreeBuffer(current_index_ + 1);
148 Buffer* current = buffers_[current_index_];
204 Buffer* buffer = buffers_[current_index_];
compositor_software_output_device.h 92 size_t current_index_; member in class:content::CompositorSoftwareOutputDevice
  /external/chromium_org/sandbox/win/src/
policy_engine_processor.h 132 size_t current_index_; member in struct:sandbox::PolicyProcessor::__anon15237
policy_engine_processor.cc 10 state_.current_index_ = index;
  /external/chromium_org/media/base/
sinc_resampler_unittest.cc 165 current_index_(0) {
174 for (int i = 0; i < frames; ++i, ++current_index_) {
176 if (Frequency(current_index_) > 0.5 * sample_rate_) {
180 double t = static_cast<double>(current_index_) / sample_rate_;
202 int current_index_; member in class:media::SinusoidalLinearChirpSource
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_impl.cc 120 : current_index_(0) {
134 while (current_index_ < hosts_.size() && !host) {
135 RenderWidgetHostID id = hosts_[current_index_];
137 ++current_index_;
144 size_t current_index_; member in class:content::__anon11993::RenderWidgetHostIteratorImpl
    [all...]

Completed in 583 milliseconds