/external/chromium/chrome/browser/ui/views/ |
H A D | wrench_menu.h | 73 scoped_ptr<views::MenuItemView> root_; member in class:WrenchMenu
|
/external/embunit/src/ |
H A D | TestRunner.c | 43 static Test* root_; variable 57 stdimpl_print(Test_name(root_)); 90 root_ = test;
|
/external/webp/src/utils/ |
H A D | huffman.h | 31 HuffmanTreeNode* root_; // all the nodes, starting at root. member in struct:HuffmanTree
|
/external/chromium/chrome/browser/accessibility/ |
H A D | browser_accessibility_manager.h | 160 BrowserAccessibility* root_; member in class:BrowserAccessibilityManager
|
/external/chromium/base/ |
H A D | 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/chrome/browser/chromeos/ |
H A D | customization_document.h | 39 bool IsReady() const { return root_.get(); } 51 scoped_ptr<DictionaryValue> root_; member in class:chromeos::CustomizationDocument
|
/external/chromium/chrome/browser/ui/login/ |
H A D | 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
|
/external/v8/benchmarks/spinning-balls/ |
H A D | 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_ [all...] |
/external/v8/benchmarks/ |
H A D | 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_ [all...] |
/external/v8/src/ |
H A D | splay-tree.h | 61 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 D | profile-generator.h | 191 ProfileNode* root() const { return root_; } 196 root_->Print(0); 204 ProfileNode* root_; member in class:v8::internal::ProfileTree
|
/external/v8/tools/ |
H A D | splaytree.js | 47 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 D | 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_ [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
H A D | 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_ [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
H A D | 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_ [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
H A D | TCPageMap.h | 116 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 D | bookmark_model.h | 188 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 D | nss_util.cc | 330 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::__anon2731::NSSInitSingleton
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
H A D | replace.h | 115 : 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 D | replace.h | 404 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
|