Home
last modified time | relevance | path

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

/cts/suite/cts/deviceTests/browserbench/assets/octane/
Dsplay.js141 SplayTree.prototype.root_ = null; method in SplayTree
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 …]