HomeSort by relevance Sort by last modified time
    Searched refs:root_ (Results 26 - 50 of 51) sorted by null

12 3

  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
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_.left
    [all...]
  /external/webkit/PerformanceTests/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/PerformanceTests/SunSpider/tests/v8-v5/
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/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTTreeParser.stg 74 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.Nil();
98 adaptor.AddChild(root_<enclosingTreeLevel>, root_<treeLevel>);
125 adaptor.AddChild(root_<treeLevel>, <label>_tree);
150 root_<treeLevel> = (<ASTLabelType>)adaptor.BecomeRoot(<label>_tree, root_<treeLevel>);
168 adaptor.AddChild(root_<treeLevel>, <label>_tree);
188 adaptor.AddChild(root_<treeLevel>, <label>_tree);
214 root_<treeLevel> = (<ASTLabelType>)adaptor.BecomeRoot(<label>_tree, root_<treeLevel>)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTTreeParser.stg 75 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.Nil();
99 adaptor.AddChild(root_<enclosingTreeLevel>, root_<treeLevel>);
126 adaptor.AddChild(root_<treeLevel>, <label>_tree);
151 root_<treeLevel> = (<ASTLabelType>)adaptor.BecomeRoot(<label>_tree, root_<treeLevel>);
169 adaptor.AddChild(root_<treeLevel>, <label>_tree);
189 adaptor.AddChild(root_<treeLevel>, <label>_tree);
215 root_<treeLevel> = (<ASTLabelType>)adaptor.BecomeRoot(<label>_tree, root_<treeLevel>)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTTreeParser.stg 117 <ASTLabelType> *root_<treeLevel> = [[[treeAdaptor class] newEmptyTree] retain];
141 [treeAdaptor addChild:root_<treeLevel> toTree:root_<enclosingTreeLevel>];
170 [treeAdaptor addChild:<label>_tree toTree:root_<treeLevel>];
197 root_<treeLevel> = (<ASTLabelType> *)[treeAdaptor becomeRoot:<label>_tree old:root_<treeLevel>];
217 [adaptor addChild:<label>_tree toTree:root_<treeLevel>];
238 [adaptor addChild:<label>_tree toTree:root_<treeLevel>];
267 root_<treeLevel> = (<ASTLabelType> *)[adaptor becomeRoot:<label>_tree old:root_<treeLevel>]
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
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...]
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...]
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_,
  /external/chromium/chrome/browser/ui/views/
wrench_menu.h 73 scoped_ptr<views::MenuItemView> root_; member in class:WrenchMenu
wrench_menu.cc 571 DCHECK(!root_.get());
572 root_.reset(new MenuItemView(this));
573 root_->set_has_icons(true); // We have checks, radios and icons, set this
576 PopulateMenu(root_.get(), model, &next_id);
589 root_->RunMenuAt(host->GetWindow()->GetNativeWindow(), host, bounds,
709 root_->Cancel();
  /external/chromium/crypto/
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::__anon3883::NSSInitSingleton
  /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/chromium/chrome/browser/chromeos/
customization_document.h 39 bool IsReady() const { return root_.get(); }
51 scoped_ptr<DictionaryValue> root_; member in class:chromeos::CustomizationDocument
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_manager.h 160 BrowserAccessibility* root_; member in class:BrowserAccessibilityManager
  /external/chromium/chrome/browser/bookmarks/
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
bookmark_model.cc 124 root_(GURL()),
371 return GetNodeByID(&root_, id);
377 if (!loaded_ || parent == &root_ || !IsValidIndex(parent, index, true)) {
575 root_.Add(bookmark_bar_node_, 0);
576 root_.Add(other_node_, 1);
581 PopulateNodesByURL(&root_);
  /packages/inputmethods/PinyinIME/jni/include/
spellingtrie.h 93 SpellingNode* root_; member in class:ime_pinyin::SpellingTrie
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]]
  /external/v8/tools/
profile.js 374 counters.root_ = root;
527 this.root_ = new CallTree.Node(
548 return this.root_;
561 var curr = this.root_;
578 return this.root_.findOrAddChild(label);
619 this.root_.computeTotalWeight();
641 pairsToProcess.concat([{node: this.root_, param: null}]);
668 traverse(this.root_);
  /external/openfst/src/include/fst/
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
    [all...]
  /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...]
  /external/v8/test/mjsunit/tools/
splaytree.js 83 tree.root_ = createSampleTree();
  /external/v8/src/
profile-generator.h 191 ProfileNode* root() const { return root_; }
196 root_->Print(0);
204 ProfileNode* root_; member in class:v8::internal::ProfileTree
    [all...]

Completed in 1095 milliseconds

12 3