HomeSort by relevance Sort by last modified time
    Searched refs:root_ (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/v8/src/
splay-tree-inl.h 48 root_ = new Node(key, Config::NoValue());
54 int cmp = Config::Compare(key, root_->key_);
56 locator->bind(root_);
63 locator->bind(root_);
71 node->left_ = root_;
72 node->right_ = root_->right_;
73 root_->right_ = NULL;
75 node->right_ = root_;
76 node->left_ = root_->left_;
77 root_->left_ = NULL
    [all...]
  /external/chromium/base/
linked_list.h 145 // 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_.set(&root_, &root_); }
151 e->InsertBefore(&root_);
155 return root_.next();
159 return root_.previous();
163 return &root_;
167 LinkNode<T> root_; member in class:base::LinkedList
    [all...]
  /external/chromium_org/base/containers/
linked_list.h 137 // list (root_.next() will point back to the start of the list,
138 // and root_->previous() wraps around to the end of the list).
139 LinkedList() : root_(&root_, &root_) {}
143 e->InsertBefore(&root_);
147 return root_.next();
151 return root_.previous();
155 return &root_;
159 LinkNode<T> root_; member in class:base::LinkedList
    [all...]
  /external/chromium_org/v8/src/
splay-tree-inl.h 49 root_ = new(allocator_) Node(key, Config::NoValue());
55 int cmp = Config::Compare(key, root_->key_);
57 locator->bind(root_);
64 locator->bind(root_);
72 node->left_ = root_;
73 node->right_ = root_->right_;
74 root_->right_ = NULL;
76 node->right_ = root_;
77 node->left_ = root_->left_;
78 root_->left_ = NULL
    [all...]
  /external/chromium_org/ui/views/controls/menu/
menu_controller_aura.cc 32 root_(root) {
33 aura::client::GetActivationClient(root_)->AddObserver(this);
34 root_->AddObserver(this);
35 root_->AddPreTargetHandler(this);
61 if (!root_)
65 aura::client::GetActivationClient(root_);
68 root_->RemovePreTargetHandler(this);
69 root_->RemoveObserver(this);
70 root_ = NULL;
74 aura::RootWindow* root_; member in class:views::__anon16862::ActivationChangeObserverImpl
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
managed_bookmarks_shim.cc 40 return !root_->empty();
45 if (node == root_.get())
53 return root_.get();
57 if (root_->id() == id)
58 return root_.get();
59 for (int i = 0; i < root_->child_count(); ++i) {
60 const BookmarkNode* child = root_->GetChild(i);
81 root_.reset(new BookmarkPermanentNode(0));
82 root_->SetTitle(root_node_name);
106 root_->Add(node, root_->child_count())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
TCPageMap.h 109 Leaf* root_[ROOT_LENGTH]; // Pointers to 32 child nodes member in class:TCMalloc_PageMap2
117 memset(root_, 0, sizeof(root_));
124 return root_[i1]->values[i2];
131 root_[i1]->values[i2] = v;
139 if (root_[i1] == NULL) {
143 root_[i1] = leaf;
161 if (!root_[i])
164 Leaf* l = reader(reinterpret_cast<Leaf*>(root_[i]));
173 if (root_[i]
201 Node* root_; \/\/ Root of radix tree member in class:TCMalloc_PageMap3
    [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/base/
ini_parser.h 54 const DictionaryValue& root() const { return root_; }
62 DictionaryValue root_; member in class:base::DictionaryValueINIParser
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_occlusion.cc 54 : root_(TestLayer::Create()),
102 scoped_refptr<TestLayer> root_; member in class:cc::__anon6576::LayerTreeHostOcclusionTest
119 root_.get(), NULL, identity_matrix_,
122 child_.get(), root_.get(), identity_matrix_,
132 root_->set_expected_occlusion(gfx::Rect(10, 10, 10, 190));
134 layer_tree_host()->SetRootLayer(root_); variable
147 // root_.
149 root_.get(), NULL, identity_matrix_,
152 child_.get(), root_.get(), identity_matrix_,
162 root_->set_expected_occlusion(gfx::Rect(10, 10, 190, 190))
164 layer_tree_host()->SetRootLayer(root_); variable
197 layer_tree_host()->SetRootLayer(root_); variable
231 layer_tree_host()->SetRootLayer(root_); variable
266 layer_tree_host()->SetRootLayer(root_); variable
300 layer_tree_host()->SetRootLayer(root_); variable
335 layer_tree_host()->SetRootLayer(root_); variable
379 layer_tree_host()->SetRootLayer(root_); variable
421 layer_tree_host()->SetRootLayer(root_); variable
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
pagemap.h 336 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_; // Root of radix tre member in class:TCMalloc_PageMap3
    [all...]
  /external/chromium_org/gpu/tools/compositor_model_bench/
render_models.cc 20 RenderModelSimulator::RenderModelSimulator(RenderNode* root) : root_(root) {
render_models.h 30 scoped_ptr<RenderNode> root_; member in class:RenderModelSimulator
  /external/chromium_org/chrome/browser/ui/gtk/
login_prompt_gtk.cc 73 root_.reset(gtk_vbox_new(FALSE, ui::kContentAreaBorder));
74 g_object_ref_sink(root_.get());
75 g_signal_connect(root_.get(), "destroy", G_CALLBACK(OnDestroyThunk), this);
79 gtk_box_pack_start(GTK_BOX(root_.get()), label, FALSE, FALSE, 0);
94 gtk_box_pack_start(GTK_BOX(root_.get()), table, FALSE, FALSE, 0);
97 gtk_box_pack_start(GTK_BOX(root_.get()), hbox, FALSE, FALSE, 0);
110 g_signal_connect(root_.get(), "hierarchy-changed",
123 dialog_ = CreateWebContentsModalDialogGtk(root_.get(), username_entry_);
153 ui::ScopedGObject<GtkWidget>::Type root_; member in class:LoginHandlerGtk
  /external/chromium_org/cc/layers/
layer_position_constraint_unittest.cc 68 root_ = CreateTreeForTest();
135 scoped_ptr<LayerImpl> root_; member in class:cc::__anon6479::LayerPositionConstraintTest
145 LayerImpl* child = root_->children()[0];
153 ExecuteCalculateDrawProperties(root_.get());
165 ExecuteCalculateDrawProperties(root_.get());
179 ExecuteCalculateDrawProperties(root_.get());
189 ExecuteCalculateDrawProperties(root_.get());
213 LayerImpl* child = root_->children()[0];
227 ExecuteCalculateDrawProperties(root_.get());
241 ExecuteCalculateDrawProperties(root_.get())
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
AST.stg 283 var root_<treeLevel>:<ASTLabelType> = <ASTLabelType>(adaptor.nil());
286 adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>);
299 adaptor.addChild(root_<treeLevel>, <createRewriteNodeFromElement(...)>);<\n>
304 adaptor.addChild(root_<treeLevel>, stream_<label>.nextNode());<\n>
309 adaptor.addChild(root_<treeLevel>, stream_<label>.nextNode());<\n>
314 root_<treeLevel> = <ASTLabelType>(adaptor.becomeRoot(stream_<label>.nextNode(), root_<treeLevel>));<\n>
322 root_<treeLevel> = <ASTLabelType>(adaptor.becomeRoot(<createRewriteNodeFromElement(...)>, root_<treeLevel>));<\n
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
AST.stg 310 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.Nil();
313 adaptor.AddChild(root_<enclosingTreeLevel>, root_<treeLevel>);
327 adaptor.AddChild(root_<treeLevel>, <createRewriteNodeFromElement(...)>);<\n>
332 adaptor.AddChild(root_<treeLevel>, stream_<label>.NextNode());<\n>
337 adaptor.AddChild(root_<treeLevel>, stream_<label>.NextNode());<\n>
342 root_<treeLevel> = (<ASTLabelType>)adaptor.BecomeRoot(stream_<label>.NextNode(), root_<treeLevel>);<\n>
350 root_<treeLevel> = (<ASTLabelType>)adaptor.BecomeRoot(<createRewriteNodeFromElement(...)>, root_<treeLevel>);<\n
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
AST.stg 308 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.Nil();
311 adaptor.AddChild(root_<enclosingTreeLevel>, root_<treeLevel>);
325 adaptor.AddChild(root_<treeLevel>, <createRewriteNodeFromElement(...)>);<\n>
330 adaptor.AddChild(root_<treeLevel>, stream_<label>.NextNode());<\n>
335 adaptor.AddChild(root_<treeLevel>, stream_<label>.NextNode());<\n>
340 root_<treeLevel> = (<ASTLabelType>)adaptor.BecomeRoot(stream_<label>.NextNode(), root_<treeLevel>);<\n>
348 root_<treeLevel> = (<ASTLabelType>)adaptor.BecomeRoot(<createRewriteNodeFromElement(...)>, root_<treeLevel>);<\n
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
AST.stg 283 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.nil();
286 adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>);
299 adaptor.addChild(root_<treeLevel>, <createRewriteNodeFromElement(...)>);<\n>
304 adaptor.addChild(root_<treeLevel>, stream_<label>.nextNode());<\n>
309 adaptor.addChild(root_<treeLevel>, stream_<label>.nextNode());<\n>
314 root_<treeLevel> = (<ASTLabelType>)adaptor.becomeRoot(stream_<label>.nextNode(), root_<treeLevel>);<\n>
322 root_<treeLevel> = (<ASTLabelType>)adaptor.becomeRoot(<createRewriteNodeFromElement(...)>, root_<treeLevel>);<\n
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
AST.stg 282 var root_<treeLevel> = this.adaptor.nil();
285 this.adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>);
298 this.adaptor.addChild(root_<treeLevel>, <createRewriteNodeFromElement(...)>);<\n>
303 this.adaptor.addChild(root_<treeLevel>, stream_<label>.nextNode());<\n>
308 this.adaptor.addChild(root_<treeLevel>, stream_<label>.nextNode());<\n>
313 root_<treeLevel> = this.adaptor.becomeRoot(stream_<label>.nextNode(), root_<treeLevel>);<\n>
321 root_<treeLevel> = this.adaptor.becomeRoot(<createRewriteNodeFromElement(...)>, root_<treeLevel>);<\n
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
AST.stg 438 <ASTLabelType> *root_<treeLevel> = (<ASTLabelType> *)[[[treeAdaptor class] newEmptyTree] retain];
441 [treeAdaptor addChild:root_<treeLevel> toTree:root_<enclosingTreeLevel>];
455 [treeAdaptor addChild:<createRewriteNodeFromElement(...)> toTree:root_<treeLevel>];<\n>
460 [treeAdaptor addChild:[stream_<label> nextNode] toTree:root_<treeLevel>];<\n>
465 [treeAdaptor addChild:[stream_<label> nextNode] toTree:root_<treeLevel>];<\n>
470 root_<treeLevel> = (<ASTLabelType> *)[treeAdaptor becomeRoot:[stream_<label> nextNode] old:root_<treeLevel>];<\n>
478 root_<treeLevel> = (<ASTLabelType> *)[treeAdaptor becomeRoot:<createRewriteNodeFromElement(...)> old:root_<treeLevel>];<\n
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
AST.stg 314 root_<treeLevel> = self._adaptor.nil()
317 self._adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>)<\n>
329 self._adaptor.addChild(root_<treeLevel>, <createRewriteNodeFromElement(...)>)<\n>
334 self._adaptor.addChild(root_<treeLevel>, stream_<label>.nextNode())<\n>
339 self._adaptor.addChild(root_<treeLevel>, stream_<label>.nextNode())<\n>
344 root_<treeLevel> = self._adaptor.becomeRoot(stream_<label>.nextNode(), root_<treeLevel>)<\n>
352 root_<treeLevel> = self._adaptor.becomeRoot(<createRewriteNodeFromElement(...)>, root_<treeLevel>)<\n
    [all...]
  /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/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/chrome/browser/ui/login/
login_prompt_gtk.cc 46 root_.Destroy();
70 root_.Own(gtk_vbox_new(FALSE, gtk_util::kContentAreaBorder));
73 gtk_box_pack_start(GTK_BOX(root_.get()), label, FALSE, FALSE, 0);
88 gtk_box_pack_start(GTK_BOX(root_.get()), table, FALSE, FALSE, 0);
91 gtk_box_pack_start(GTK_BOX(root_.get()), hbox, FALSE, FALSE, 0);
104 g_signal_connect(root_.get(), "hierarchy-changed",
121 return root_.get();
148 OwnedWidgetGtk root_; member in class:LoginHandlerGtk

Completed in 752 milliseconds

1 2 3 4 5