Searched refs:active_ (Results 1 - 25 of 79) sorted by relevance

1234

/external/chromium_org/chrome/browser/ui/views/frame/
H A Dcontents_container.cc14 : active_(active_web_view),
16 AddChildView(active_);
24 active_ = overlay;
43 active_->SetBounds(0, content_y, width(), content_height);
H A Dcontents_container.h54 views::View* GetActiveWebViewForTest() { return active_; }
57 views::View* active_; member in class:ContentsContainer
/external/chromium_org/chrome_frame/crash_reporting/
H A Dcrash_metrics.h43 return active_;
47 active_ = active;
54 : active_(false) {}
58 bool active_; member in class:CrashMetricsReporter
/external/chromium_org/cc/scheduler/
H A Drate_limiter.cc27 active_(false),
36 if (active_)
40 active_ = true;
56 active_ = false;
H A Dframe_rate_controller.cc44 active_(false),
59 active_(false),
70 if (active_ == active)
73 bool just_activated = active && !active_;
74 active_ = active;
112 DCHECK(active_);
133 if (active_) {
H A Dframe_rate_controller.h49 bool IsActive() { return active_; }
88 bool active_; member in class:cc::FrameRateController
H A Drate_limiter.h52 bool active_; member in class:cc::RateLimiter
/external/chromium/chrome/browser/chromeos/status/
H A Dstatus_area_button.h41 void set_active(bool active) { active_ = active; }
42 bool active() const { return active_; }
62 bool active_; member in class:chromeos::StatusAreaButton
H A Dstatus_area_button.cc34 active_(true),
79 if (active_) {
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_selection_model.h36 void set_active(int active) { active_ = active; }
37 int active() const { return active_; }
101 int active_; member in class:TabStripSelectionModel
H A Dtab_strip_selection_model.cc31 : active_(kUnselectedIndex),
45 IncrementFromImpl(index, &active_);
57 DecrementFromImpl(index, &active_);
61 anchor_ = active_ = index;
93 active_ = index;
107 active_ = index;
114 bool was_active = from == active_;
124 active_ = to;
132 anchor_ = active_ = kUnselectedIndex;
139 active_
[all...]
/external/chromium_org/ui/base/models/
H A Dlist_selection_model.cc33 : active_(kUnselectedIndex),
47 IncrementFromImpl(index, &active_);
59 DecrementFromImpl(index, &active_);
63 anchor_ = active_ = index;
97 active_ = index;
111 active_ = index;
118 bool was_active = from == active_;
128 active_ = to;
136 anchor_ = active_ = kUnselectedIndex;
143 active_
[all...]
H A Dlist_selection_model.h39 void set_active(int active) { active_ = active; }
40 int active() const { return active_; }
107 int active_; member in class:ui::ListSelectionModel
/external/chromium_org/net/http/
H A Dhttp_pipelined_host_test_util.cc27 active_(active) {
H A Dhttp_pipelined_host_test_util.h47 active_ = active;
52 virtual bool active() const OVERRIDE { return active_; }
65 bool active_; member in class:net::MockPipeline
/external/chromium/chrome/browser/ui/views/frame/
H A Dcontents_container.cc42 : active_(active),
48 AddChildView(active_);
62 active_ = preview_;
142 active_->SetBounds(0, active_top_margin_, width(),
161 views::View::ConvertPointToScreen(active_, &screen_origin);
162 gfx::Rect overlay_bounds(screen_origin, active_->size());
163 active_overlay_->Init(active_->GetWidget()->GetNativeView(), overlay_bounds);
169 active_overlay_->MoveAboveWidget(active_->GetWidget());
H A Dcontents_container.h72 views::View* active_; member in class:ContentsContainer
/external/chromium_org/v8/src/
H A Dsampler.h103 bool IsActive() const { return NoBarrier_Load(&active_); }
123 void SetActive(bool value) { NoBarrier_Store(&active_, value); }
128 Atomic32 active_; member in class:v8::internal::Sampler
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocketpool.cc48 for (ConnectedList::iterator it = active_.begin(); it != active_.end();
65 // Move from cached_ to active_
66 active_.push_front(*it);
71 return active_.front().second;
76 active_.push_front(ConnectedStream(remote, stream));
78 return active_.front().second;
84 for (ConnectedList::iterator it = active_.begin(); it != active_.end();
98 active_
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dsocketpool.cc48 for (ConnectedList::iterator it = active_.begin(); it != active_.end();
65 // Move from cached_ to active_
66 active_.push_front(*it);
71 return active_.front().second;
76 active_.push_front(ConnectedStream(remote, stream));
78 return active_.front().second;
84 for (ConnectedList::iterator it = active_.begin(); it != active_.end();
98 active_
[all...]
/external/chromium_org/ui/compositor/
H A Dlayer_animation_observer.cc59 : active_(false),
70 active_ = active;
134 if (active_ && attached_sequences().empty()) {
135 active_ = false;
H A Dlayer_animation_observer.h131 bool active() const { return active_; }
141 bool active_; member in class:ui::ImplicitAnimationObserver
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_engine_ibus.cc46 active_(false),
137 if (!active_) {
188 if (!active_) {
209 if (!active_) {
225 if (!active_) {
244 if (active_)
251 if (active_)
257 if (active_)
263 if (active_) {
273 if (active_) {
[all...]
/external/chromium_org/ui/views/ime/
H A Dmock_input_method.cc26 active_(true) {
39 active_(true) {
132 return active_;
182 if (active_ != active) {
183 active_ = active;
/external/chromium/chrome/browser/metrics/
H A Dthread_watcher.cc29 active_(false),
72 if (active_) return;
73 active_ = true;
82 active_ = false;
91 if (!active_) return;
105 if (!active_ || ping_count_ <= 0)
149 if (!active_ || --ping_count_ <= 0)
161 if (!active_)

Completed in 3283 milliseconds

1234