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

12 3 4 5

  /external/chromium_org/ui/views/focus/
focus_search.h 73 // the parent of |root_|. Subclasses can override this if they need custom
81 View* root() const { return root_; }
119 View* root_; member in class:views::FocusSearch
focus_search.cc 13 : root_(root),
27 if (!root_->has_children()) {
40 starting_view = reverse ? root_->child_at(root_->child_count() - 1) :
41 root_->child_at(0);
47 DCHECK(Contains(root_, starting_view));
71 if (v && v != root_ && !Contains(root_, v))
121 return Contains(root_, v) ? v->parent() : NULL;
186 while (parent && parent != root_) {
    [all...]
  /external/chromium_org/v8/tools/
splaytree.js 47 SplayTree.prototype.root_ = null;
54 return !this.root_;
69 this.root_ = new SplayTree.Node(key, value);
75 if (this.root_.key == key) {
79 if (key > this.root_.key) {
80 node.left = this.root_;
81 node.right = this.root_.right;
82 this.root_.right = null;
84 node.right = this.root_;
85 node.left = this.root_.left
    [all...]
  /external/v8/tools/
splaytree.js 47 SplayTree.prototype.root_ = null;
54 return !this.root_;
69 this.root_ = new SplayTree.Node(key, value);
75 if (this.root_.key == key) {
79 if (key > this.root_.key) {
80 node.left = this.root_;
81 node.right = this.root_.right;
82 this.root_.right = null;
84 node.right = this.root_;
85 node.left = this.root_.left
    [all...]
  /external/embunit/src/
TestRunner.c 43 static Test* root_; variable
57 stdimpl_print(Test_name(root_));
90 root_ = test;
  /external/chromium_org/content/shell/
shell_login_dialog_gtk.cc 42 root_ = gtk_message_dialog_new(parent_window,
48 GtkWidget* content_area = gtk_dialog_get_content_area(GTK_DIALOG(root_));
80 g_signal_connect(root_, "response", G_CALLBACK(OnResponseThunk), this);
82 gtk_widget_show_all(GTK_WIDGET(root_));
108 gtk_widget_destroy(root_);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
ASTTreeParser.stg 82 <ASTLabelType> root_<treeLevel>;
87 root_<treeLevel> = (<ASTLabelType>)(ADAPTOR->nilNode(ADAPTOR));
112 ADAPTOR->addChild(ADAPTOR, root_<enclosingTreeLevel>, root_<treeLevel>);
139 ADAPTOR->addChild(ADAPTOR, root_<treeLevel>, <label>_tree);
165 root_<treeLevel> = (<ASTLabelType>)ADAPTOR->becomeRoot(ADAPTOR, <label>_tree, root_<treeLevel>);
183 ADAPTOR->addChild(ADAPTOR, root_<treeLevel>, <label>_tree);
203 ADAPTOR->addChild(ADAPTOR, root_<treeLevel>, <label>_tree);
229 root_<treeLevel> = (<ASTLabelType>)ADAPTOR->becomeRoot(ADAPTOR, <label>_tree, root_<treeLevel>)
    [all...]
AST.stg 427 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)(ADAPTOR->nilNode(ADAPTOR));
430 ADAPTOR->addChild(ADAPTOR, root_<enclosingTreeLevel>, root_<treeLevel>);
443 ADAPTOR->addChild(ADAPTOR, root_<treeLevel>, <createRewriteNodeFromElement(...)>);<\n>
448 ADAPTOR->addChild(ADAPTOR, root_<treeLevel>, stream_<label> == NULL ? NULL : stream_<label>->nextNode(stream_<label>));<\n>
453 ADAPTOR->addChild(ADAPTOR, root_<treeLevel>, stream_<label> == NULL ? NULL : stream_<label>->nextNode(stream_<label>));<\n>
458 root_<treeLevel> = (<ASTLabelType>)(ADAPTOR->becomeRootToken(ADAPTOR, stream_<label> == NULL ? NULL : stream_<label>->nextToken(stream_<label>), root_<treeLevel>));<\n>
466 root_<treeLevel> = (<ASTLabelType>)(ADAPTOR->becomeRoot(ADAPTOR, <createRewriteNodeFromElement(...)>, root_<treeLevel>));<\n
    [all...]
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_manager.cc 37 root_(NULL),
48 root_(NULL),
55 if (root_)
56 root_->Destroy();
65 SetFocus(root_, false);
77 return root_;
122 SetFocus(root_, false);
163 SetFocus(root_, false);
188 root_ = node;
402 (!root_ || root_->renderer_id() != src.id))
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ASTTreeParser.stg 72 var root_<treeLevel>:<ASTLabelType> = <ASTLabelType>(adaptor.nil());
96 adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>);
123 adaptor.addChild(root_<treeLevel>, <label>_tree);
148 root_<treeLevel> = <ASTLabelType>(adaptor.becomeRoot(<label>_tree, root_<treeLevel>));
166 adaptor.addChild(root_<treeLevel>, <label>_tree);
186 adaptor.addChild(root_<treeLevel>, <label>_tree);
212 root_<treeLevel> = <ASTLabelType>(adaptor.becomeRoot(<label>_tree, root_<treeLevel>))
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
ASTTreeParser.stg 71 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.nil();
95 adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>);
122 adaptor.addChild(root_<treeLevel>, <label>_tree);
147 root_<treeLevel> = (<ASTLabelType>)adaptor.becomeRoot(<label>_tree, root_<treeLevel>);
165 adaptor.addChild(root_<treeLevel>, <label>_tree);
185 adaptor.addChild(root_<treeLevel>, <label>_tree);
211 root_<treeLevel> = (<ASTLabelType>)adaptor.becomeRoot(<label>_tree, root_<treeLevel>)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ASTTreeParser.stg 79 root_<treeLevel> = self._adaptor.nil()<\n>
106 self._adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>)<\n>
133 self._adaptor.addChild(root_<treeLevel>, <label>_tree)
160 root_<treeLevel> = self._adaptor.becomeRoot(<label>_tree, root_<treeLevel>)
178 self._adaptor.addChild(root_<treeLevel>, <label>_tree)
199 self._adaptor.addChild(root_<treeLevel>, <label>_tree)
224 root_<treeLevel> = self._adaptor.becomeRoot(<label>_tree, root_<treeLevel>
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
ASTTreeParser.stg 44 var root_<treeLevel> = this.adaptor.nil();
68 this.adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>);
95 this.adaptor.addChild(root_<treeLevel>, <label>_tree);
120 root_<treeLevel> = this.adaptor.becomeRoot(<label>_tree, root_<treeLevel>);
143 this.adaptor.addChild(root_<treeLevel>, <label>_tree);
169 root_<treeLevel> = this.adaptor.becomeRoot(<label>_tree, root_<treeLevel>);
184 this.adaptor.addChild(root_<treeLevel>, <label>.getTree())
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
ASTTreeParser.stg 73 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.nil();
97 adaptor.addChild(root_<enclosingTreeLevel>, root_<treeLevel>);
124 adaptor.addChild(root_<treeLevel>, <label>_tree);
149 root_<treeLevel> = (<ASTLabelType>)adaptor.becomeRoot(<label>_tree, root_<treeLevel>);
172 adaptor.addChild(root_<treeLevel>, <label>_tree);
198 root_<treeLevel> = (<ASTLabelType>)adaptor.becomeRoot(<label>_tree, root_<treeLevel>);
213 adaptor.addChild(root_<treeLevel>, <label>.getTree())
    [all...]
  /external/chromium/chrome/browser/chromeos/
customization_document.cc 98 root_.reset(static_cast<DictionaryValue*>(root.release()));
100 if (root_->GetString(kVersionAttr, &result) &&
105 root_.reset(NULL);
115 if (!root_.get() ||
116 !root_->GetDictionary(dictionary_name, &dictionary_content))
163 root_->GetString(kInitialLocaleAttr, &initial_locale_);
164 root_->GetString(kInitialTimezoneAttr, &initial_timezone_);
165 root_->GetString(kKeyboardLayoutAttr, &keyboard_layout_);
166 root_->GetString(kRegistrationUrlAttr, &registration_url_);
171 if (root_->GetList(kHwidMapAttr, &hwid_list))
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
managed_bookmarks_shim.h 50 scoped_ptr<BookmarkNode> root_; member in class:ManagedBookmarksShim
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_dev.h 30 ScopedMountNode root_; member in class:nacl_io::MountDev
  /external/chromium_org/third_party/libwebp/utils/
huffman.h 33 HuffmanTreeNode* root_; // all the nodes, starting at root. member in struct:HuffmanTree
huffman.c 40 HuffmanTreeNode* const children = tree->root_ + tree->num_nodes_;
55 tree->root_ = (HuffmanTreeNode*)WebPSafeMalloc((uint64_t)tree->max_nodes_,
56 sizeof(*tree->root_));
57 if (tree->root_ == NULL) return 0;
58 TreeNodeInit(tree->root_); // Initialize root.
65 free(tree->root_);
66 tree->root_ = NULL;
122 HuffmanTreeNode* node = tree->root_;
123 const HuffmanTreeNode* const max_node = tree->root_ + tree->max_nodes_;
  /external/v8/src/
splay-tree.h 61 SplayTree() : root_(NULL) { }
99 bool is_empty() { return root_ == NULL; }
156 void ResetRoot() { root_ = NULL; }
159 // Search for a node with a given key. If found, root_ points
163 // Inserts a node assuming that root_ is already set up.
166 // Removes root_ node.
196 Node* root_; member in class:v8::internal::SplayTree
  /external/webp/src/utils/
huffman.h 33 HuffmanTreeNode* root_; // all the nodes, starting at root. member in struct:HuffmanTree
huffman.c 40 HuffmanTreeNode* const children = tree->root_ + tree->num_nodes_;
55 tree->root_ = (HuffmanTreeNode*)WebPSafeMalloc((uint64_t)tree->max_nodes_,
56 sizeof(*tree->root_));
57 if (tree->root_ == NULL) return 0;
58 TreeNodeInit(tree->root_); // Initialize root.
65 free(tree->root_);
66 tree->root_ = NULL;
122 HuffmanTreeNode* node = tree->root_;
123 const HuffmanTreeNode* const max_node = tree->root_ + tree->max_nodes_;
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_manager.cc 47 root_ = CreateAccessibilityTree(NULL, src, 0);
49 SetFocus(root_, false);
71 root_->InternalReleaseReference(true);
75 return root_;
176 root_->InternalReleaseReference(true);
178 root_ = CreateAccessibilityTree(NULL, acc_obj, 0);
180 SetFocus(root_, false);
185 root_);
301 SetFocus(root_, false);
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
splay.js 141 SplayTree.prototype.root_ = null;
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...]
  /external/chromium_org/third_party/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...]

Completed in 778 milliseconds

12 3 4 5