/external/v8/src/ |
zone-inl.h | 75 root_ = new Node(key, C::kNoValue); 81 int cmp = C::Compare(key, root_->key_); 83 locator->bind(root_); 89 node->left_ = root_; 90 node->right_ = root_->right_; 91 root_->right_ = NULL; 93 node->right_ = root_; 94 node->left_ = root_->left_; 95 root_->left_ = NULL; 97 root_ = node [all...] |
zone.h | 224 ZoneSplayTree() : root_(NULL) { } 253 bool is_empty() { return root_ == NULL; } 299 Node* root_; member in class:v8::internal::ZoneSplayTree
|
/external/v8/tools/ |
splaytree.js | 53 goog.structs.SplayTree.prototype.root_ = null; 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...] |
profile.js | 363 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/benchmarks/ |
splay.js | 140 SplayTree.prototype.root_ = null; 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/ |
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_.left [all...] |
/external/webkit/JavaScriptCore/wtf/ |
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_[i] 210 Node* root_; \/\/ Root of radix tree member in class:TCMalloc_PageMap3 [all...] |
/external/embunit/src/ |
TestRunner.c | 43 static Test* root_; variable 57 stdimpl_print(Test_name(root_)); 90 root_ = test;
|
/packages/inputmethods/PinyinIME/jni/share/ |
dicttrie.cpp | 31 root_ = NULL; 52 if (NULL != root_) 53 free(root_); 54 root_ = NULL; 128 if (fwrite(root_, sizeof(LmaNodeLE0), lma_node_num_le0_, fp) 147 if (NULL == root_ || NULL == dict_list_) 187 root_ = static_cast<LmaNodeLE0*> 203 if (NULL == root_ || NULL == nodes_ge1_ || NULL == lma_idx_buf_ || 210 if (fread(root_, sizeof(LmaNodeLE0), lma_node_num_le0_, fp) 226 for (uint16 splid = last_splid; splid < root_[i].spl_idx; splid++ [all...] |
splparser.cpp | 41 const SpellingNode *node_this = spl_trie_->root_; 65 node_this = spl_trie_->root_; 118 node_this = spl_trie_->root_; 170 const SpellingNode *node_this = spl_trie_->root_; 194 node_this = spl_trie_->root_; 247 node_this = spl_trie_->root_;
|
spellingtrie.cpp | 61 root_ = NULL; 89 if (NULL != root_) { 90 free_son_trie(root_); 91 delete root_; 239 if (NULL == root_ || half_id >= kFullSplIdStart) 245 if (NULL == spl_id_start || NULL == root_ || half_id >= kFullSplIdStart) 253 if (NULL == root_ || full_id < kFullSplIdStart || 318 root_ = new SpellingNode(); 319 memset(root_, 0, sizeof(SpellingNode)); 331 root_->first_son = construct_spellings_subset(0, spelling_num_, 0, root_) [all...] |
dictbuilder.cpp | 598 dict_trie->root_ = new LmaNodeLE0[lma_nds_used_num_le0_]; 602 assert(NULL != dict_trie->root_); 609 memcpy(dict_trie->root_, lma_nodes_le0_,
|
/packages/inputmethods/PinyinIME/jni/include/ |
dicttrie.h | 62 LmaNodeLE0* root_; // Nodes for root and the first layer. member in class:ime_pinyin::DictTrie 66 // to the root_ buffer. 73 // root_[splid_le0_index_[splid - kFullSplIdStart]]
|
spellingtrie.h | 93 SpellingNode* root_; member in class:ime_pinyin::SpellingTrie
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
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/v8/test/mjsunit/tools/ |
splaytree.js | 83 tree.root_ = createSampleTree();
|
/sdk/emulator/qtools/ |
trace_reader.h | 212 void SetRoot(const char *root) { root_ = root; } 262 const char *root_; member in class:TraceReader 290 root_ = ""; 589 if (root_ && strcmp(root_, "/")) { 590 strcpy(full_path, root_); [all...] |