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

  /external/chromium_org/ash/wm/
window_cycle_list.cc 17 current_index_(-1) {
24 current_index_ = GetWindowIndex(active_window);
44 if (current_index_ == -1) {
47 current_index_ = (direction == FORWARD ? 0 : windows_.size() - 1);
56 current_index_ += (direction == FORWARD ? 1 : -1);
59 current_index_ = (current_index_ + windows_.size()) % windows_.size();
60 DCHECK(windows_[current_index_]);
62 windows_[current_index_]->Show();
63 wm::ActivateWindow(windows_[current_index_]);
    [all...]
window_cycle_list.h 52 int current_index_; member in class:ash::WindowCycleList
  /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/v8/src/
data-flow.cc 56 current_index_++;
58 val = target_->data_[current_index_];
59 current_ = current_index_ << 5;
json-stringifier.h 178 int current_index_; member in class:v8::internal::BASE_EMBEDDED
257 : isolate_(isolate), current_index_(0), is_ascii_(true) {
340 current_index_++, c);
343 current_index_++, c);
345 if (current_index_ == part_length_) Extend();
701 ASSERT(current_index_ < part_length_);
703 current_index_);
717 current_index_ = 0;
725 current_index_ = 0;
764 if (((part_length_ - current_index_) >> 3) > length)
    [all...]
data-flow.h 48 current_index_(0),
56 bool Done() const { return current_index_ >= target_->data_length_; }
81 int current_index_; member in class:v8::internal::BitVector::BASE_EMBEDDED
  /external/v8/src/
data-flow.cc 56 current_index_++;
58 val = target_->data_[current_index_];
59 current_ = current_index_ << 5;
data-flow.h 48 current_index_(0),
56 bool Done() const { return current_index_ >= target_->data_length_; }
81 int current_index_; member in class:v8::internal::BitVector::BASE_EMBEDDED
log.cc 61 int current_index_; member in class:v8::internal::SlidingStateWindow
240 : counters_(isolate->counters()), current_index_(0), is_full_(false) {
255 DecrementStateCounter(static_cast<StateTag>(buffer_[current_index_]));
256 } else if (current_index_ == kBufferSize - 1) {
259 buffer_[current_index_] = static_cast<byte>(state);
262 current_index_ = (current_index_ + 1) & (kBufferSize - 1);
    [all...]
  /sdk/emulator/qtools/
hash_table.h 37 int current_index_; member in class:HashTable
59 current_index_ = 0;
169 for (current_index_ = 0; current_index_ < size_; ++current_index_) {
170 if (table_[current_index_])
175 if (current_index_ == size_)
179 current_ptr_ = table_[current_index_];
196 current_index_ += 1;
200 for (; current_index_ < size_; ++current_index_)
    [all...]
  /external/chromium_org/cc/resources/
picture.h 91 DCHECK_LT(current_index_, current_pixel_refs_->size());
92 return (*current_pixel_refs_)[current_index_];
96 DCHECK_LT(current_index_, current_pixel_refs_->size());
97 return (*current_pixel_refs_)[current_index_];
102 return current_index_ < current_pixel_refs_->size();
109 unsigned current_index_; member in class:cc::Picture::PixelRefIterator
picture.cc 357 current_index_(0),
369 current_index_(0) {
414 ++current_index_;
416 if (current_index_ < current_pixel_refs_->size())
430 current_index_ = 0;
443 current_index_ = 0;
  /external/chromium_org/chrome/browser/chromeos/drive/
file_task_executor.cc 30 current_index_(0),
52 DCHECK_EQ(current_index_, 0);
61 current_index_ = paths.size();
127 current_index_--;
128 DCHECK_GE(current_index_, 0);
129 if (current_index_ == 0)
file_task_executor.h 48 int current_index_; member in class:drive::FileTaskExecutor
  /external/chromium_org/sandbox/win/src/
policy_engine_processor.h 132 size_t current_index_; member in struct:sandbox::PolicyProcessor::__anon12302
policy_engine_processor.cc 10 state_.current_index_ = index;
  /external/chromium_org/content/renderer/gpu/
compositor_software_output_device.cc 60 : current_index_(-1),
115 current_index_ = -1;
123 if (current_index_ != size_t(-1))
124 previous = buffers_[current_index_];
125 current_index_ = FindFreeBuffer(current_index_ + 1);
126 Buffer* current = buffers_[current_index_];
184 Buffer* buffer = buffers_[current_index_];
compositor_software_output_device.h 85 size_t current_index_; member in class:content::CompositorSoftwareOutputDevice
  /external/chromium_org/media/base/
sinc_resampler_unittest.cc 243 current_index_(0) {
252 for (int i = 0; i < frames; ++i, ++current_index_) {
254 if (Frequency(current_index_) > 0.5 * sample_rate_) {
258 double t = static_cast<double>(current_index_) / sample_rate_;
280 int current_index_; member in class:media::SinusoidalLinearChirpSource

Completed in 586 milliseconds