Searched refs:root_ (Results 1 - 25 of 132) sorted by relevance

123456

/external/chromium_org/ui/wm/public/
H A Dscoped_tooltip_disabler.cc14 : root_(window ? window->GetRootWindow() : NULL) {
15 if (root_) {
16 root_->AddObserver(this);
17 TooltipClient* client = GetTooltipClient(root_);
28 if (!root_)
30 TooltipClient* client = GetTooltipClient(root_);
33 root_->RemoveObserver(this);
34 root_ = NULL;
H A Dscoped_tooltip_disabler.h31 aura::Window* root_; member in class:aura::client::ScopedTooltipDisabler
/external/chromium_org/ui/compositor/
H A Dlayer_tree_owner.h22 Layer* root = root_;
23 root_ = NULL;
27 Layer* root() { return root_; }
28 const Layer* root() const { return root_; }
31 Layer* root_; member in class:ui::LayerTreeOwner
H A Dlayer_tree_owner.cc27 LayerTreeOwner::LayerTreeOwner(Layer* root) : root_(root) {}
30 if (root_)
31 DeepDeleteLayers(root_);
/external/chromium_org/content/browser/resources/media/
H A Ddump_creator.js21 this.root_ = document.createElement('details');
23 this.root_.className = 'peer-connection-dump-root';
24 containerElement.appendChild(this.root_);
26 this.root_.appendChild(summary);
29 this.root_.appendChild(content);
66 this.root_.getElementsByTagName('input')[0].checked = true;
71 this.root_.getElementsByTagName('input')[0].checked = false;
89 var anchor = this.root_.getElementsByTagName('a')[0];
101 var enabled = this.root_.getElementsByTagName('input')[0].checked;
/external/chromium_org/v8/benchmarks/spinning-balls/
H A Dsplay-tree.js46 SplayTree.prototype.root_ = null;
53 return !this.root_;
67 this.root_ = new SplayTree.Node(key, value);
73 if (this.root_.key == key) {
77 if (key > this.root_.key) {
78 node.left = this.root_;
79 node.right = this.root_.right;
80 this.root_.right = null;
82 node.right = this.root_;
83 node.left = this.root_
[all...]
/external/chromium_org/v8/tools/
H A Dsplaytree.js47 SplayTree.prototype.root_ = null;
54 return !this.root_;
69 this.root_ = new SplayTree.Node(key, value);
75 if (this.root_.key == key) {
79 if (key > this.root_.key) {
80 node.left = this.root_;
81 node.right = this.root_.right;
82 this.root_.right = null;
84 node.right = this.root_;
85 node.left = this.root_
[all...]
/external/chromium-trace/trace-viewer/src/tracing/importer/v8/
H A Dsplaytree.js29 SplayTree.prototype.root_ = null;
36 return !this.root_;
51 this.root_ = new SplayTree.Node(key, value);
57 if (this.root_.key == key) {
61 if (key > this.root_.key) {
62 node.left = this.root_;
63 node.right = this.root_.right;
64 this.root_.right = null;
66 node.right = this.root_;
67 node.left = this.root_
[all...]
/external/chromium_org/v8/src/
H A Dsplay-tree-inl.h26 root_ = new(allocator_) Node(key, Config::NoValue());
32 int cmp = Config::Compare(key, root_->key_);
34 locator->bind(root_);
41 locator->bind(root_);
49 node->left_ = root_;
50 node->right_ = root_->right_;
51 root_->right_ = NULL;
53 node->right_ = root_;
54 node->left_ = root_->left_;
55 root_
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-splay.js136 SplayTree.prototype.root_ = null;
143 return !this.root_;
157 this.root_ = new SplayTree.Node(key, value);
163 if (this.root_.key == key) {
167 if (key > this.root_.key) {
168 node.left = this.root_;
169 node.right = this.root_.right;
170 this.root_.right = null;
172 node.right = this.root_;
173 node.left = this.root_
[all...]
/external/chromium_org/v8/benchmarks/
H A Dsplay.js141 SplayTree.prototype.root_ = null;
148 return !this.root_;
162 this.root_ = new SplayTree.Node(key, value);
168 if (this.root_.key == key) {
172 if (key > this.root_.key) {
173 node.left = this.root_;
174 node.right = this.root_.right;
175 this.root_.right = null;
177 node.right = this.root_;
178 node.left = this.root_
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js135 SplayTree.prototype.root_ = null;
142 return !this.root_;
156 this.root_ = new SplayTree.Node(key, value);
162 if (this.root_.key == key) {
166 if (key > this.root_.key) {
167 node.left = this.root_;
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
172 node.left = this.root_
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js135 SplayTree.prototype.root_ = null;
142 return !this.root_;
156 this.root_ = new SplayTree.Node(key, value);
162 if (this.root_.key == key) {
166 if (key > this.root_.key) {
167 node.left = this.root_;
168 node.right = this.root_.right;
169 this.root_.right = null;
171 node.right = this.root_;
172 node.left = this.root_
[all...]
/external/chromium_org/components/cloud_devices/common/
H A Dcloud_device_description.cc23 root_.reset(new base::DictionaryValue);
24 root_->SetString(json::kVersion, json::kVersion10);
32 root_ = root.Pass();
34 root_->GetString(json::kVersion, &version);
50 root_.get(), base::JSONWriter::OPTIONS_PRETTY_PRINT, &json);
57 root_->GetDictionary(path, &value);
64 root_->Set(path, value);
71 root_->GetList(path, &value);
78 root_->Set(path, value);
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_unittest_occlusion.cc56 : root_(TestLayer::Create()),
106 scoped_refptr<TestLayer> root_; member in class:cc::__anon2828::LayerTreeHostOcclusionTest
123 root_.get(), NULL, identity_matrix_,
126 child_.get(), root_.get(), identity_matrix_,
136 root_->set_expected_occlusion(gfx::Rect(10, 10, 10, 190));
138 layer_tree_host()->SetRootLayer(root_); variable
151 // root_.
153 root_.get(), NULL, identity_matrix_,
156 child_.get(), root_.get(), identity_matrix_,
166 root_
168 layer_tree_host()->SetRootLayer(root_); variable
201 layer_tree_host()->SetRootLayer(root_); variable
235 layer_tree_host()->SetRootLayer(root_); variable
270 layer_tree_host()->SetRootLayer(root_); variable
304 layer_tree_host()->SetRootLayer(root_); variable
339 layer_tree_host()->SetRootLayer(root_); variable
373 layer_tree_host()->SetRootLayer(root_); variable
407 layer_tree_host()->SetRootLayer(root_); variable
459 layer_tree_host()->SetRootLayer(root_); variable
501 layer_tree_host()->SetRootLayer(root_); variable
539 layer_tree_host()->SetRootLayer(root_); variable
574 layer_tree_host()->SetRootLayer(root_); variable
[all...]
/external/chromium_org/base/containers/
H A Dlinked_list.h145 // list (root_.next() will point back to the start of the list,
146 // and root_->previous() wraps around to the end of the list).
147 LinkedList() : root_(&root_, &root_) {}
151 e->InsertBefore(&root_);
155 return root_.next();
159 return root_.previous();
163 return &root_;
169 LinkNode<T> root_; member in class:base::LinkedList
[all...]
/external/chromium_org/ui/events/test/
H A Dtest_event_processor.cc16 root_ = root.Pass();
28 return root_.get();
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpagemap.h133 Leaf* root_[ROOT_LENGTH]; // Pointers to 32 child nodes member in class:TCMalloc_PageMap2
141 memset(root_, 0, sizeof(root_));
147 if ((k >> BITS) > 0 || root_[i1] == NULL) {
150 return root_[i1]->values[i2];
157 root_[i1]->values[i2] = v;
169 if (root_[i1] == NULL) {
173 root_[i1] = leaf;
190 Leaf* leaf = root_[i1];
228 Node* root_; // Roo member in class:TCMalloc_PageMap3
[all...]
/external/chromium_org/chrome/common/
H A Dini_parser.h51 const base::DictionaryValue& root() const { return root_; }
59 base::DictionaryValue root_; member in class:DictionaryValueINIParser
/external/chromium_org/ui/accessibility/
H A Dax_tree.cc46 : delegate_(NULL), root_(NULL) {
57 : delegate_(NULL), root_(NULL) {
62 if (root_)
63 DestroyNodeAndSubtree(root_);
71 return root_;
81 int32 old_root_id = root_ ? root_->id() : 0;
90 if (node == root_) {
91 DestroyNodeAndSubtree(root_);
92 root_
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpagemap.h336 Leaf* root_[ROOT_LENGTH]; // Pointers to 32 child nodes member in class:TCMalloc_PageMap2
344 memset(root_, 0, sizeof(root_));
350 if ((k >> BITS) > 0 || root_[i1] == NULL) {
353 return root_[i1]->values[i2];
360 root_[i1]->values[i2] = v;
372 if (root_[i1] == NULL) {
376 root_[i1] = leaf;
393 Leaf* leaf = root_[i1];
431 Node* root_; // Roo member in class:TCMalloc_PageMap3
[all...]
/external/chromium_org/gpu/tools/compositor_model_bench/
H A Drender_models.cc20 RenderModelSimulator::RenderModelSimulator(RenderNode* root) : root_(root) {
/external/chromium_org/mojo/services/window_manager/
H A Dmain.cc28 root_(NULL) {}
49 root_ = root;
60 root_->AddChild(view);
69 View* root_; member in class:mojo::DefaultWindowManager
/external/chromium_org/chrome/browser/ui/ash/accessibility/
H A Dax_tree_source_ash.cc16 root_.reset(
21 root_.reset();
49 return root_.get();
53 if (id == root_->GetID())
54 return root_.get();
69 if (!parent && root_->HasChild(node))
70 parent = root_.get();
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_message_loop_aura.cc54 : controller_(controller), root_(root) {
55 aura::client::GetActivationClient(root_)->AddObserver(this);
56 root_->AddObserver(this);
57 root_->AddPreTargetHandler(this);
79 if (!root_)
83 aura::client::GetActivationClient(root_);
86 root_->RemovePreTargetHandler(this);
87 root_->RemoveObserver(this);
88 root_ = NULL;
92 aura::Window* root_; member in class:views::__anon17048::ActivationChangeObserverImpl
[all...]

Completed in 566 milliseconds

123456