HomeSort by relevance Sort by last modified time
    Searched defs:root_ (Results 26 - 50 of 76) sorted by null

12 3 4

  /external/chromium_org/cc/layers/
layer_utils_unittest.cc 28 root_(CreateThreeNodeTree(host_impl_)),
29 parent_(root_->children()[0]),
32 LayerImpl* root() { return root_.get(); }
49 scoped_ptr<LayerImpl> root_; member in class:cc::__anon7315::LayerUtilsGetAnimationBoundsTest
  /external/chromium_org/chrome/browser/ui/views/toolbar/
wrench_menu.h 150 views::MenuItemView* root_; member in class:WrenchMenu
  /external/chromium_org/chromecast/service/
cast_service_simple.cc 42 explicit FillLayout(aura::Window* root) : root_(root) {}
50 child->SetBounds(root_->bounds());
65 aura::Window* root_; member in class:chromecast::__anon10698::FillLayout
  /external/chromium_org/mojo/examples/aura_demo/
aura_demo.cc 123 root_ = root;
161 root_->SetContents(bitmap);
194 mojo::View* root_; member in class:examples::AuraDemo
  /external/chromium_org/mojo/services/view_manager/
connection_manager.h 96 ServerView* root() { return root_.get(); }
187 scoped_ptr<ServerView> root_; member in class:mojo::service::ConnectionManager
  /external/chromium_org/mojo/services/window_manager/
window_manager_app.h 152 View* root_; member in class:mojo::WindowManagerApp
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator.h 126 PartitionTreeNode* root_; member in class:webrtc::Vp8PartitionAggregator
  /external/chromium_org/ui/gfx/geometry/
r_tree_base.h 284 // If |root_| has only one child, deletes the |root_| Node and replaces it
291 const Node* root() const { return root_.get(); }
298 scoped_ptr<Node> root_; member in class:gfx::RTreeBase
  /external/chromium_org/ui/views/controls/menu/
menu_message_loop_aura.cc 54 : 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::__anon753::ActivationChangeObserverImpl
    [all...]
  /art/runtime/
gc_root.h 81 callback(reinterpret_cast<mirror::Object**>(&root_), arg, info);
93 return &root_;
98 return root_ == nullptr;
101 ALWAYS_INLINE explicit GcRoot<MirrorType>() : root_(nullptr) {
105 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : root_(ref) {
109 mutable MirrorType* root_; variable
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
splay.js 141 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_.left
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_damage.cc 249 root_ = FakeContentLayer::Create(&client_);
252 root_->SetBounds(gfx::Size(500, 500));
256 root_->AddChild(child_);
257 layer_tree_host()->SetRootLayer(root_); variable
350 scoped_refptr<FakeContentLayer> root_; member in class:cc::__anon7450::LayerTreeHostDamageTestForcedFullDamage
  /external/chromium_org/chrome/browser/chromeos/
customization_document.h 57 bool IsReady() const { return root_.get(); }
69 scoped_ptr<base::DictionaryValue> root_; member in class:chromeos::CustomizationDocument
  /external/chromium_org/components/bookmarks/browser/
bookmark_model.h 87 const BookmarkNode* root_node() const { return &root_; }
98 bool is_root_node(const BookmarkNode* node) const { return node == &root_; }
104 return node && (node == &root_ || node->parent() == &root_);
385 BookmarkNode root_; member in class:BookmarkModel
  /external/chromium_org/content/browser/fileapi/
recursive_operation_delegate_unittest.cc 45 root_(root),
58 StartRecursiveOperation(root_, callback_);
103 FileSystemURL root_; member in class:content::__anon11748::LoggingRecursiveOperation
  /external/chromium_org/mojo/examples/browser/
browser.cc 159 root_(NULL),
163 if (root_)
164 root_->RemoveObserver(this);
214 root_ = root;
215 root_->AddObserver(this);
216 root_->SetFocus();
217 CreateWidget(root_); variable
244 if (lost_focus == root_)
246 else if (gained_focus == root_)
250 DCHECK_EQ(root_, view)
259 View* root_; member in class:mojo::examples::Browser
    [all...]
  /external/chromium_org/mojo/examples/png_viewer/
png_viewer.cc 61 root_(NULL),
69 if (root_)
70 root_->RemoveObserver(this);
78 root_ = root;
79 root_->AddObserver(this);
80 root_->SetColor(SK_ColorGRAY);
93 DCHECK_EQ(view, root_);
98 DCHECK_EQ(view, root_);
129 if (!root_)
133 root_->bounds().width(), root_->bounds().height(), true)))
181 View* root_; member in class:mojo::examples::PNGView
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-splay.js 135 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_.left
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-splay.js 135 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_.left
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 136 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_.left
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
pagemap.h 133 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_; // Root of radix tre member in class:TCMalloc_PageMap3
    [all...]
  /external/chromium_org/ui/base/models/
tree_node_model.h 214 explicit TreeNodeModel(NodeType* root) : root_(root) {}
255 return root_.get();
298 scoped_ptr<NodeType> root_; member in class:ui::TreeNodeModel
  /external/chromium_org/v8/benchmarks/spinning-balls/
splay-tree.js 46 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_.left
    [all...]
  /external/chromium_org/v8/benchmarks/
splay.js 141 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_.left
    [all...]
  /external/chromium_org/v8/src/
splay-tree.h 39 : root_(NULL), allocator_(allocator) {}
92 bool is_empty() { return root_ == NULL; }
154 void ResetRoot() { root_ = NULL; }
157 // Search for a node with a given key. If found, root_ points
161 // Inserts a node assuming that root_ is already set up.
164 // Removes root_ node.
194 Node* root_; member in class:v8::internal::SplayTree

Completed in 1637 milliseconds

12 3 4