Searched defs:root_ (Results 1 - 20 of 20) sorted by relevance

/external/chromium/chrome/browser/ui/views/
H A Dwrench_menu.h73 scoped_ptr<views::MenuItemView> root_; member in class:WrenchMenu
/external/embunit/src/
H A DTestRunner.c43 static Test* root_; variable
57 stdimpl_print(Test_name(root_));
90 root_ = test;
/external/webp/src/utils/
H A Dhuffman.h31 HuffmanTreeNode* root_; // all the nodes, starting at root. member in struct:HuffmanTree
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_manager.h160 BrowserAccessibility* root_; member in class:BrowserAccessibilityManager
/external/chromium/base/
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_.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/chrome/browser/chromeos/
H A Dcustomization_document.h39 bool IsReady() const { return root_.get(); }
51 scoped_ptr<DictionaryValue> root_; member in class:chromeos::CustomizationDocument
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt_gtk.cc46 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
/external/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/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/v8/src/
H A Dsplay-tree.h61 SplayTree() : root_(NULL) { }
99 bool is_empty() { return root_ == NULL; }
156 void ResetRoot() { root_ = NULL; }
159 // Search for a node with a given key. If found, root_ points
163 // Inserts a node assuming that root_ is already set up.
166 // Removes root_ node.
196 Node* root_; member in class:v8::internal::SplayTree
H A Dprofile-generator.h191 ProfileNode* root() const { return root_; }
196 root_->Print(0);
204 ProfileNode* root_; member in class:v8::internal::ProfileTree
/external/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/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/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/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/webkit/Source/JavaScriptCore/wtf/
H A DTCPageMap.h116 Leaf* root_[ROOT_LENGTH]; // Pointers to 32 child nodes member in class:TCMalloc_PageMap2
124 memset(root_, 0, sizeof(root_));
131 return root_[i1]->values[i2];
138 root_[i1]->values[i2] = v;
146 if (root_[i1] == NULL) {
150 root_[i1] = leaf;
169 if (!root_[i])
172 Leaf* l = reader(reinterpret_cast<Leaf*>(root_[i]));
181 if (root_[
210 Node* root_; // Root of radix tree member in class:TCMalloc_PageMap3
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_model.h188 const BookmarkNode* root_node() { return &root_; }
310 bool is_root(const BookmarkNode* node) const { return node == &root_; }
438 BookmarkNode root_; member in class:BookmarkModel
/external/chromium/crypto/
H A Dnss_util.cc330 root_(NULL),
417 root_ = InitDefaultRootCerts();
436 if (root_) {
437 SECMOD_UnloadUserModule(root_);
438 SECMOD_DestroyModule(root_);
439 root_ = NULL;
558 SECMODModule* root_; member in class:crypto::__anon2732::NSSInitSingleton
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dreplace.h115 : CacheImpl<A>(opts), opts_(opts), root_(kNoLabel) {
125 root_(impl.root_) {
199 depfst.SetStart(root_ - 1);
200 depfst.SetFinal(root_ - 1, Weight::One());
207 root_ = (nonterminal > 0) ? nonterminal : 1;
224 const Fst<A>* fst = fst_array_[root_];
230 StateId start = FindState(StateTuple(prefix, root_, fst_start));
504 Label root_; member in class:fst::ReplaceFstImpl
/external/openfst/src/include/fst/
H A Dreplace.h404 root_ = (nonterminal > 0) ? nonterminal : 1;
406 SetProperties(ReplaceProperties(inprops, root_ - 1, epsilon_on_replace_,
441 root_(impl.root_) {
469 ReplaceUtil<A> replace_util(fst_array_, nonterminal_hash_, root_);
480 const Fst<A>* fst = fst_array_[root_];
487 StateTuple(prefix, root_, fst_start));
907 Label root_; member in class:fst::ReplaceFstImpl

Completed in 416 milliseconds