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

1 23 4 5 6

  /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_org/cc/output/
bsp_tree.h 36 scoped_ptr<BspNode>& root() { return root_; }
40 if (root_) {
41 WalkInOrderRecursion<ActionHandlerType>(action_handler, root_.get());
48 scoped_ptr<BspNode> root_; member in class:cc::BspTree
bsp_tree.cc 28 root_ = scoped_ptr<BspNode>(new BspNode(list->take_front()));
29 BuildTree(root_.get(), list);
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_capture_client.h 49 aura::Window* root_; member in class:views::DesktopCaptureClient
  /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...]
  /external/chromium_org/v8/benchmarks/
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-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/chromium_org/third_party/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/chromium_org/remoting/host/
desktop_resizer_linux.cc 152 Window root_; member in class:remoting::DesktopResizerLinux
162 root_(RootWindow(display_, screen_)),
165 XRRSelectInput(display_, root_, RRScreenChangeNotifyMask);
208 XRRGetScreenSizeRange(display_, root_,
267 XRRSetScreenSize(display_, root_, resolution.dimensions().width(),
291 XRRCreateMode(display_, root_, &mode);
293 if (!resources_.Refresh(display_, root_)) {
308 resources_.Refresh(display_, root_);
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator.cc 152 : root_(NULL),
165 root_ = PartitionTreeNode::CreateRootNode(size_vector_, num_partitions_);
170 delete root_;
174 assert(root_);
177 root_->set_min_parent_size(min_size);
178 root_->set_max_parent_size(max_size);
183 assert(root_);
185 PartitionTreeNode* opt = root_->GetOptimalNode(max_size, penalty);
  /external/chromium_org/chrome/browser/chromeos/
mobile_config.cc 247 if (root_.get() &&
248 root_->GetBoolean(kExcludeDealsAttr, &exclude_deals) &&
258 if (root_.get() && root_->GetDictionary(kCarriersAttr, &carriers)) {
289 if (root_.get() && root_->GetDictionary(kInitialLocalesAttr,
340 global_config_root.reset(root_.release());
347 root_.reset(NULL);
350 local_config_root_.reset(root_.release());
351 root_.reset(global_config_root.release())
    [all...]
  /external/chromium_org/ui/views/controls/tree/
tree_view.cc 124 root_.RemoveAll();
125 ConfigureInternalNode(model_->GetRoot(), &root_);
126 LoadChildren(&root_);
127 root_.set_is_expanded(true);
129 selected_node_ = &root_;
130 else if (root_.child_count())
131 selected_node_ = root_.GetChild(0);
221 if (model_node && model_node == root_.model_node() && !root_shown_)
230 if (selected_node_ == &root_ && !root_shown_)
232 if (selected_node_ && selected_node_ != &root_)
    [all...]
  /external/chromium_org/chromecast/service/
cast_service_simple.cc 42 explicit FillLayout(aura::Window* root) : root_(root) {}
50 child->SetBounds(root_->bounds());
65 aura::Window* root_; member in class:chromecast::__anon10698::FillLayout
  /external/chromium_org/content/shell/browser/
shell_platform_data_aura.cc 29 : root_(root) {
40 child->SetBounds(root_->bounds());
58 aura::Window* root_; member in class:content::__anon12495::FillLayout
  /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...]
  /external/chromium_org/base/debug/
trace_event_argument.h 51 scoped_ptr<base::Value> root_; member in class:base::debug::TracedValue
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.h 34 ScopedNode root_; member in class:nacl_io::DevFs
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs.h 47 ScopedNode root_; member in class:nacl_io::MemFs
  /external/chromium_org/third_party/libwebp/utils/
huffman.h 41 HuffmanTreeNode* root_; // all the nodes, starting at root. member in struct:HuffmanTree
  /external/chromium_org/v8/src/
splay-tree.h 39 : root_(NULL), allocator_(allocator) {}
92 bool is_empty() { return root_ == NULL; }
154 void ResetRoot() { root_ = NULL; }
157 // Search for a node with a given key. If found, root_ points
161 // Inserts a node assuming that root_ is already set up.
164 // Removes root_ node.
194 Node* root_; member in class:v8::internal::SplayTree
  /external/webp/src/utils/
huffman.h 41 HuffmanTreeNode* root_; // all the nodes, starting at root. member in struct:HuffmanTree
  /external/chromium_org/content/browser/frame_host/
frame_tree.h 56 FrameTreeNode* root() const { return root_.get(); }
152 // Must be declared before |root_| so that it is deleted afterward. Otherwise
163 scoped_ptr<FrameTreeNode> root_; member in class:content::FrameTree

Completed in 1082 milliseconds

1 23 4 5 6