Searched defs:current_ (Results 1 - 25 of 48) sorted by relevance

12

/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
H A Devent_recorder_win.cc23 EventRecorder* EventRecorder::current_ = NULL; member in class:base::EventRecorder
/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/third_party/webrtc/base/
H A Dmultipart.h71 size_t current_; // The index into parts_ of the current read position. member in class:rtc::MultipartStream
H A Dhttpserver.h99 HttpServerTransaction* current_; member in class:rtc::HttpServer::Connection
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
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
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.h44 size_t UnconsumedBytes() const { return end_ - current_; }
49 const char* current_; member in class:net::WebSocketExtensionParser
H A Dwebsocket_test_util.h40 uint64 current_; member in class:net::LinearCongruentialGenerator
/external/chromium_org/base/test/expectations/
H A Dparser.h134 Expectation current_; member in class:test_expectations::Parser
136 // If DataError() has been called during the course of parsing |current_|.
137 // If true, then |current_| will not be emitted to the Delegate.
/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/
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/v8/src/
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
H A Dinterface.cc30 Nesting() { current_ += 2; }
31 ~Nesting() { current_ -= 2; }
32 static int current() { return current_; }
34 static int current_; member in class:v8::internal::Nesting
37 int Nesting::current_ = 0; member in class:v8::internal::Nesting
/external/compiler-rt/lib/sanitizer_common/
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
H A Dsanitizer_procmaps.h60 char *current_; member in class:__sanitizer::MemoryMappingLayout
/external/chromium_org/base/debug/
H A Dtrace_event_win_unittest.cc62 EXPECT_TRUE(current_ == NULL);
63 current_ = this;
67 EXPECT_TRUE(current_ == this);
68 current_ = NULL;
77 ASSERT_TRUE(current_ != NULL);
78 current_->Event(event->Header.Guid,
85 static TestEventConsumer* current_; member in class:base::debug::__anon2243::TestEventConsumer
88 TestEventConsumer* TestEventConsumer::current_ = NULL; member in class:base::debug::__anon2243::TestEventConsumer
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.h123 LevelDBIterator* current_; member in class:content::LevelDBTransaction::TransactionIterator
/external/chromium_org/courgette/
H A Dstreams.h38 SourceStream() : start_(NULL), end_(NULL), current_(NULL) {}
46 current_ = start_;
65 size_t Remaining() const { return end_ - current_; }
70 const uint8* Buffer() const { return current_; }
71 bool Empty() const { return current_ == end_; }
108 const uint8* current_; // Points into buffer at current read location. member in class:courgette::SourceStream
/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/chromium_org/third_party/leveldatabase/src/util/
H A Dcache_test.cc28 static CacheTest* current_; member in class:leveldb::CacheTest
31 current_->deleted_keys_.push_back(DecodeKey(key));
32 current_->deleted_values_.push_back(DecodeValue(v));
41 current_ = this;
66 CacheTest* CacheTest::current_; member in class:leveldb::CacheTest
/external/jsoncpp/include/json/
H A Dreader.h177 Location current_; member in class:Json::Reader
/external/chromium_org/net/disk_cache/memory/
H A Dmem_backend_impl.cc187 : backend_(backend), current_(NULL) {
195 MemEntryImpl* node = backend_->rankings_.GetNext(current_);
201 current_ = node;
212 MemEntryImpl* current_; member in class:disk_cache::MemBackendImpl::MemIterator
/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...]

Completed in 552 milliseconds

12