Searched refs:current_ (Results 1 - 25 of 76) sorted by relevance

1234

/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dscreen_capture_frame_queue.cc23 ScreenCaptureFrameQueue::ScreenCaptureFrameQueue() : current_(0) {}
28 current_ = (current_ + 1) % kQueueLength;
32 assert(!frames_[current_].get() || !frames_[current_]->IsShared());
36 frames_[current_].reset(SharedDesktopFrame::Wrap(frame));
H A Dscreen_capture_frame_queue.h55 return frames_[current_].get();
59 return frames_[(current_ + kQueueLength - 1) % kQueueLength].get();
64 int current_; member in class:webrtc::ScreenCaptureFrameQueue
/external/chromium_org/net/websockets/
H A Dwebsocket_extension_parser.cc16 current_ = data;
23 has_error_ = has_error_ || (current_ != end_);
30 if (current_ == end_ || c != current_[0]) {
34 ++current_;
79 const char* head = current_;
80 while (current_ < end_ &&
81 !IsControl(current_[0]) && !IsSeparator(current_[0]))
82 ++current_;
[all...]
H A Dwebsocket_extension_parser.h44 size_t UnconsumedBytes() const { return end_ - current_; }
49 const char* current_; member in class:net::WebSocketExtensionParser
/external/chromium_org/v8/src/heap/
H A Dgc-tracer.cc92 current_ = Event(Event::START, NULL, NULL);
93 current_.end_time = base::OS::TimeCurrentMillis();
94 previous_ = previous_mark_compactor_event_ = current_;
100 previous_ = current_;
108 if (current_.type == Event::MARK_COMPACTOR)
109 previous_mark_compactor_event_ = current_;
112 current_ = Event(Event::SCAVENGER, gc_reason, collector_reason);
114 current_ = Event(Event::MARK_COMPACTOR, gc_reason, collector_reason);
117 current_.start_time = start_time;
118 current_
[all...]
/external/chromium_org/v8/src/
H A Dlithium-inl.h32 : instr_(instr), limit_(instr->TempCount()), current_(0) {
37 bool TempIterator::Done() { return current_ >= limit_; }
42 return instr_->TempAt(current_);
47 while (current_ < limit_ && instr_->TempAt(current_) == NULL) ++current_;
52 ++current_;
58 : instr_(instr), limit_(instr->InputCount()), current_(0) {
63 bool InputIterator::Done() { return current_ >= limit_; }
68 DCHECK(instr_->InputAt(current_) !
[all...]
H A Ddata-flow.cc30 current_++;
36 current_ = current_index_ << 5;
H A Dallocation-site-scopes.h26 Handle<AllocationSite> current() { return current_; }
34 *(current_.location()) = site;
39 current_ = Handle<AllocationSite>(*top_, isolate());
45 Handle<AllocationSite> current_; member in class:v8::internal::AllocationSiteContext
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_linux.cc79 current_ = proc_self_maps_.data;
164 if (current_ >= last) return false;
171 struct kinfo_vmentry *VmEntry = (struct kinfo_vmentry*)current_;
191 current_ += VmEntry->kve_structsize;
193 char *next_line = (char*)internal_memchr(current_, '\n', last - current_);
197 *start = ParseHex(&current_);
198 CHECK_EQ(*current_++, '-');
199 *end = ParseHex(&current_);
200 CHECK_EQ(*current_
[all...]
H A Dsanitizer_list.h121 : list_(list), current_(list->first_) { }
123 Item *ret = current_;
124 if (current_) current_ = current_->next;
127 bool hasNext() const { return current_ != 0; }
130 Item *current_; member in class:__sanitizer::IntrusiveList::Iterator
/external/chromium_org/third_party/webrtc/base/
H A Dhttpserver.cc122 current_(NULL), signalling_(false), close_(false) {
128 Thread::Current()->Dispose(current_);
135 current_ = new HttpServerTransaction(connection_id_);
137 base_.recv(&current_->request);
149 ASSERT(current_ == NULL);
150 current_ = transaction;
151 if (current_->response.begin() == current_->response.end()) {
152 current_->response.set_error(HC_INTERNAL_SERVER_ERROR);
154 bool keep_alive = HttpShouldKeepAlive(current_
[all...]
H A Dwin32toolhelp.h49 Zero(&current_);
66 current_.dwSize = sizeof(typename Traits::Type);
69 incr_ok = Traits::First(snapshot_, &current_);
72 incr_ok = Traits::Next(snapshot_, &current_);
76 Zero(&current_);
84 return current_;
105 typename Traits::Type current_; member in class:rtc::ToolhelpEnumeratorBase
H A Dmultipart.cc27 current_(0),
90 ASSERT(0 == current_);
135 return (current_ < parts_.size()) ? SS_OPEN : SS_CLOSED;
145 while (current_ < parts_.size()) {
146 StreamResult result = parts_[current_]->Read(buffer, buffer_len, read,
154 ++current_;
173 current_ = 0;
187 for (size_t j = i+1; j < _min(parts_.size(), current_+1); ++j) {
195 current_ = i;
230 for (size_t i = current_;
[all...]
/external/chromium_org/base/
H A Devent_recorder_stubs.cc12 EventRecorder* EventRecorder::current_; // Our singleton. member in class:base::EventRecorder
H A Devent_recorder.h40 if (!current_)
41 current_ = new EventRecorder();
42 return current_;
92 static EventRecorder* current_; // Our singleton. member in class:base::EventRecorder
/external/chromium_org/chrome/browser/ui/
H A Dcrypto_module_password_dialog_nss.cc42 size_t current_; member in class:__anon5075::SlotUnlocker
56 : current_(0),
69 for (; current_ < modules_.size(); ++current_) {
70 if (ShouldShowDialog(modules_[current_].get())) {
72 modules_[current_]->GetTokenName(),
91 ++current_;
97 SECStatus rv = PK11_CheckUserPassword(modules_[current_]->os_module_handle(),
111 ++current_;
116 DCHECK_EQ(current_, modules
[all...]
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dmerger.cc20 current_(NULL),
32 return (current_ != NULL);
64 // true for all of the non-current_ children since current_ is
65 // the smallest child and key() == current_->key(). Otherwise,
66 // we explicitly position the non-current_ children.
70 if (child != current_) {
81 current_->Next();
90 // true for all of the non-current_ children since current_ i
145 IteratorWrapper* current_; member in class:leveldb::__anon12461::MergingIterator
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.cc194 current_.line = 0;
195 current_.column = 0;
196 current_.type = TYPE_START;
241 current_.text.append(buffer_ + token_start_, buffer_size_ - token_start_);
265 current_.type = TYPE_START; // Just for the sake of initializing it.
266 current_.text.clear();
267 current_.line = line_;
268 current_.column = column_;
277 current_.text.append(buffer_ + token_start_, buffer_pos_ - token_start_);
465 TokenType last_token_type = current_
[all...]
/external/chromium_org/sandbox/win/src/
H A Dhandle_table.h101 if (++(current_.handle_entry_) == end_)
102 current_.handle_entry_ = table_.end();
107 return current_ == rhs.current_;
111 return current_ != rhs.current_;
114 HandleEntry& operator*() { return current_; }
117 return current_.handle_entry_;
120 HandleEntry* operator->() { return &current_; }
124 HandleEntry current_; member in class:sandbox::HandleTable::Iterator
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dtokenizer.cc200 current_.line = 0;
201 current_.column = 0;
202 current_.end_column = 0;
203 current_.type = TYPE_START;
288 current_.type = TYPE_START; // Just for the sake of initializing it.
289 current_.text.clear();
290 current_.line = line_;
291 current_.column = column_;
292 RecordTo(&current_.text);
297 current_
[all...]
/external/chromium_org/v8/src/compiler/
H A Dgeneric-node.h228 : current_(other.current_),
231 S* operator*() { return static_cast<S*>(current_->from); }
236 bool operator==(const iterator& other) { return other.current_ == current_; }
237 bool operator!=(const iterator& other) { return other.current_ != current_; }
239 DCHECK(current_ != NULL);
241 current_ = current_
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dpreferences_unittest.cc32 manager_->current_->GetValue();
36 manager_->current_->SetValue(input_method_id);
49 current_(current) {
59 StringPrefMember* current_; member in class:chromeos::__anon3451::MyMockInputMethodManager
/external/chromium_org/chrome/browser/ui/website_settings/
H A Dpermission_menu_model_unittest.cc15 TestCallback() : current_(-1) {}
21 current_ = permission.setting;
24 int current_; member in class:__anon5395::TestCallback
/external/chromium_org/base/test/expectations/
H A Dparser.cc54 current_ = Expectation();
98 if (current_.configuration != CONFIGURATION_UNSPECIFIED)
101 current_.configuration = config;
105 current_.platforms.push_back(platform);
129 current_.test_name = extracted_string_.as_string();
146 if (!ResultFromString(extracted_string_, &current_.result))
154 delegate_->EmitExpectation(current_);
/external/openfst/src/include/fst/extensions/far/
H A Dsttable.h199 return keys_[current_] == key;
206 if (streams_[current_]->tellg() <= positions_[current_].back()) {
207 ReadType(*(streams_[current_]), &(keys_[current_]));
208 if (!*streams_[current_]) {
210 << sources_[current_];
223 return keys_[current_];
294 // of the heap, set 'current_' to the ID of that stream
298 current_
318 int64 current_; // Id of current stream to be read member in class:fst::STTableReader
[all...]

Completed in 921 milliseconds

1234