/external/v8/tools/ |
H A D | splaytree.js | 37 function SplayTree() { function 44 * @type {SplayTree.Node} 47 SplayTree.prototype.root_ = null; 53 SplayTree.prototype.isEmpty = function() { 67 SplayTree.prototype.insert = function(key, value) { 69 this.root_ = new SplayTree.Node(key, value); 78 var node = new SplayTree.Node(key, value); 98 * @return {SplayTree.Node} The removed node. 100 SplayTree.prototype.remove = function(key) { 129 * @return {SplayTree 38 SplayTree.prototype.root_ = null; class [all...] |
H A D | codemap.js | 38 this.dynamics_ = new SplayTree(); 48 this.statics_ = new SplayTree(); 53 this.libraries_ = new SplayTree();
|
/external/v8/benchmarks/spinning-balls/ |
H A D | splay-tree.js | 36 function SplayTree() { function 43 * @type {SplayTree.Node} 46 SplayTree.prototype.root_ = null; 52 SplayTree.prototype.isEmpty = function() { 65 SplayTree.prototype.insert = function(key, value) { 67 this.root_ = new SplayTree.Node(key, value); 76 var node = new SplayTree.Node(key, value); 96 * @return {SplayTree.Node} The removed node. 98 SplayTree.prototype.remove = function(key) { 127 * @return {SplayTree 37 SplayTree.prototype.root_ = null; class [all...] |
H A D | v.js | 480 splayTree = new SplayTree();
|
/external/v8/test/mjsunit/tools/ |
H A D | splaytree.js | 33 var tree = new SplayTree(); 41 var tree = new SplayTree(); 82 var tree = new SplayTree(); 96 var tree = new SplayTree(); 106 var tree = new SplayTree(); 120 var tree = new SplayTree(); 130 var tree = new SplayTree(); 140 var tree = new SplayTree(); 154 var tree = new SplayTree();
|
/external/v8/benchmarks/ |
H A D | splay.js | 85 splayTree = new SplayTree(); 131 function SplayTree() { function 138 * @type {SplayTree.Node} 141 SplayTree.prototype.root_ = null; 147 SplayTree.prototype.isEmpty = function() { 160 SplayTree.prototype.insert = function(key, value) { 162 this.root_ = new SplayTree.Node(key, value); 171 var node = new SplayTree.Node(key, value); 191 * @return {SplayTree.Node} The removed node. 193 SplayTree 132 SplayTree.prototype.root_ = null; class [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
H A D | v8-splay.js | 80 splayTree = new SplayTree(); 126 function SplayTree() { function 133 * @type {SplayTree.Node} 136 SplayTree.prototype.root_ = null; 142 SplayTree.prototype.isEmpty = function() { 155 SplayTree.prototype.insert = function(key, value) { 157 this.root_ = new SplayTree.Node(key, value); 166 var node = new SplayTree.Node(key, value); 186 * @return {SplayTree.Node} The removed node. 188 SplayTree 127 SplayTree.prototype.root_ = null; class [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
H A D | v8-splay.js | 79 splayTree = new SplayTree(); 125 function SplayTree() { function 132 * @type {SplayTree.Node} 135 SplayTree.prototype.root_ = null; 141 SplayTree.prototype.isEmpty = function() { 154 SplayTree.prototype.insert = function(key, value) { 156 this.root_ = new SplayTree.Node(key, value); 165 var node = new SplayTree.Node(key, value); 185 * @return {SplayTree.Node} The removed node. 187 SplayTree 126 SplayTree.prototype.root_ = null; class [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
H A D | v8-splay.js | 79 splayTree = new SplayTree(); 125 function SplayTree() { function 132 * @type {SplayTree.Node} 135 SplayTree.prototype.root_ = null; 141 SplayTree.prototype.isEmpty = function() { 154 SplayTree.prototype.insert = function(key, value) { 156 this.root_ = new SplayTree.Node(key, value); 165 var node = new SplayTree.Node(key, value); 185 * @return {SplayTree.Node} The removed node. 187 SplayTree 126 SplayTree.prototype.root_ = null; class [all...] |
/external/v8/src/ |
H A D | splay-tree-inl.h | 38 SplayTree<Config, Allocator>::~SplayTree() { 45 bool SplayTree<Config, Allocator>::Insert(const Key& key, Locator* locator) { 69 void SplayTree<Config, Allocator>::InsertInternal(int cmp, Node* node) { 84 bool SplayTree<Config, Allocator>::FindInternal(const Key& key) { 93 bool SplayTree<Config, Allocator>::Find(const Key& key, Locator* locator) { 104 bool SplayTree<Config, Allocator>::FindGreatestLessThan(const Key& key, 128 bool SplayTree<Config, Allocator>::FindLeastGreaterThan(const Key& key, 152 bool SplayTree<Config, Allocator>::FindGreatest(Locator* locator) { 164 bool SplayTree<Confi [all...] |
H A D | splay-tree.h | 52 // class SplayTree; 54 class SplayTree { class in namespace:v8::internal 61 SplayTree() : root_(NULL) { } function in class:v8::internal::SplayTree 62 ~SplayTree(); 128 friend class SplayTree; 198 DISALLOW_COPY_AND_ASSIGN(SplayTree);
|
H A D | zone.h | 235 class ZoneSplayTree: public SplayTree<Config, ZoneListAllocationPolicy> { 238 : SplayTree<Config, ZoneListAllocationPolicy>() {}
|
H A D | zone-inl.h | 93 SplayTree<Config, ZoneListAllocationPolicy>::ResetRoot();
|
H A D | v8globals.h | 156 class SplayTree;
|
H A D | profile-generator.h | 269 typedef SplayTree<CodeTreeConfig> CodeTree;
|