Home
last modified time | relevance | path

Searched refs:root_ (Results 1 – 12 of 12) sorted by relevance

/external/v8/tools/
Dsplaytree.js53 goog.structs.SplayTree.prototype.root_ = null; method in goog.structs.SplayTree
60 return !this.root_;
75 this.root_ = new goog.structs.SplayTree.Node(key, value);
81 if (this.root_.key == key) {
85 if (key > this.root_.key) {
86 node.left = this.root_;
87 node.right = this.root_.right;
88 this.root_.right = null;
90 node.right = this.root_;
91 node.left = this.root_.left;
[all …]
Dprofile.js363 counters.root_ = root;
423 this.root_ = new devtools.profiler.CallTree.Node(
444 return this.root_;
457 var curr = this.root_;
474 return this.root_.findOrAddChild(label);
515 this.root_.computeTotalWeight();
537 pairsToProcess.concat([{node: this.root_, param: null}]);
564 traverse(this.root_);
/external/v8/src/
Dzone-inl.h75 root_ = new Node(key, C::kNoValue); in Insert()
81 int cmp = C::Compare(key, root_->key_); in Insert()
83 locator->bind(root_); in Insert()
89 node->left_ = root_; in Insert()
90 node->right_ = root_->right_; in Insert()
91 root_->right_ = NULL; in Insert()
93 node->right_ = root_; in Insert()
94 node->left_ = root_->left_; in Insert()
95 root_->left_ = NULL; in Insert()
97 root_ = node; in Insert()
[all …]
Dzone.h224 ZoneSplayTree() : root_(NULL) { } in ZoneSplayTree()
253 bool is_empty() { return root_ == NULL; } in is_empty()
299 Node* root_;
/external/v8/benchmarks/
Dsplay.js140 SplayTree.prototype.root_ = null; method in SplayTree
147 return !this.root_;
161 this.root_ = new SplayTree.Node(key, value);
167 if (this.root_.key == key) {
171 if (key > this.root_.key) {
172 node.left = this.root_;
173 node.right = this.root_.right;
174 this.root_.right = null;
176 node.right = this.root_;
177 node.left = this.root_.left;
[all …]
/external/webkit/SunSpider/tests/v8-v4/
Dv8-splay.js135 SplayTree.prototype.root_ = null; method in SplayTree
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/webkit/JavaScriptCore/wtf/
DTCPageMap.h116 Leaf* root_[ROOT_LENGTH]; // Pointers to 32 child nodes variable
124 memset(root_, 0, sizeof(root_)); in init()
131 return root_[i1]->values[i2]; in get()
138 root_[i1]->values[i2] = v; in set()
146 if (root_[i1] == NULL) { in Ensure()
150 root_[i1] = leaf; in Ensure()
169 if (!root_[i]) in visitValues()
172 Leaf* l = reader(reinterpret_cast<Leaf*>(root_[i])); in visitValues()
181 if (root_[i]) in visitAllocations()
182 visitor.visit(root_[i], sizeof(Leaf)); in visitAllocations()
[all …]
/external/chromium/base/
Dlinked_list.h139 LinkedList() : root_(&root_, &root_) {} in LinkedList()
143 e->InsertBefore(&root_); in Append()
147 return root_.next(); in head()
151 return root_.previous(); in tail()
155 return &root_; in end()
159 LinkNode<T> root_;
Dnss_util.cc81 NSSInitSingleton() : root_(NULL) { in NSSInitSingleton()
138 root_ = InitDefaultRootCerts(); in NSSInitSingleton()
143 if (root_) { in ~NSSInitSingleton()
144 SECMOD_UnloadUserModule(root_); in ~NSSInitSingleton()
145 SECMOD_DestroyModule(root_); in ~NSSInitSingleton()
146 root_ = NULL; in ~NSSInitSingleton()
159 SECMODModule *root_; member in __anonfb19dc7d0111::NSSInitSingleton
/external/embunit/src/
DTestRunner.c43 static Test* root_; variable
57 stdimpl_print(Test_name(root_)); in TestRunner_addFailure()
90 root_ = test; in TestRunner_runTest()
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dreplace.h115 : CacheImpl<A>(opts), opts_(opts), root_(kNoLabel) { in ReplaceFstImpl()
125 root_(impl.root_) { in ReplaceFstImpl()
199 depfst.SetStart(root_ - 1); in CyclicDependencies()
200 depfst.SetFinal(root_ - 1, Weight::One()); in CyclicDependencies()
207 root_ = (nonterminal > 0) ? nonterminal : 1; in SetRoot()
224 const Fst<A>* fst = fst_array_[root_]; in Start()
230 StateId start = FindState(StateTuple(prefix, root_, fst_start)); in Start()
504 Label root_; variable
/external/v8/test/mjsunit/tools/
Dsplaytree.js83 tree.root_ = createSampleTree();