HomeSort by relevance Sort by last modified time
    Searched defs:root_ (Results 1 - 25 of 41) sorted by null

1 2

  /external/v8/benchmarks/spinning-balls/
splay-tree.js 46 SplayTree.prototype.root_ = null; method in class:SplayTree
53 return !this.root_;
67 this.root_ = new SplayTree.Node(key, value);
73 if (this.root_.key == key) {
77 if (key > this.root_.key) {
78 node.left = this.root_;
79 node.right = this.root_.right;
80 this.root_.right = null;
82 node.right = this.root_;
83 node.left = this.root_.left
    [all...]
  /external/libchrome/base/containers/
linked_list.h 145 // list (root_.next() will point back to the start of the list,
146 // and root_->previous() wraps around to the end of the list).
147 LinkedList() : root_(&root_, &root_) {}
151 e->InsertBefore(&root_);
155 return root_.next();
159 return root_.previous();
163 return &root_;
169 LinkNode<T> root_; member in class:base::LinkedList
    [all...]
  /external/v8/tools/
splaytree.js 47 SplayTree.prototype.root_ = null; method in class:SplayTree
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/benchmarks/
splay.js 141 SplayTree.prototype.root_ = null; method in class:SplayTree
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/v8/src/crankshaft/
typing.h 46 FunctionLiteral* root_; member in class:v8::internal::final
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator.h 128 PartitionTreeNode* root_; member in class:webrtc::Vp8PartitionAggregator
  /external/gemmlowp/profiling/
profiler.h 174 Node root_; member in class:gemmlowp::ProfileTreeView
181 printf("%.2f%% %s\n", 100.0f * node->weight / root_.weight, node->label);
211 AddStackToNode(stack, &root_, 0);
223 node == &root_ ? "other (outside of any label)" : "other";
229 void AddOtherNodes() { AddOtherChildrenToNode(&root_); }
238 void Sort() { SortNode(&root_); }
253 static_cast<int>(root_.weight));
254 PrintNode(&root_, 0);
  /external/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
  /art/runtime/
gc_root.h 194 mirror::CompressedReference<mirror::Object>* roots[1] = { &root_ };
207 return &root_;
212 return root_.IsNull();
222 // Root visitors take pointers to root_ and place them in CompressedReference** arrays. We use a
225 mutable mirror::CompressedReference<mirror::Object> root_; member in class:art::GcRoot
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Api.cs 727 root_ = other.root_;
749 private string root_ = ""; field in class:Google.Protobuf.WellKnownTypes.Mixin
755 get { return root_; }
757 root_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
  /external/protobuf/src/google/protobuf/util/
field_mask_util.cc 197 if (root_.children.empty()) {
200 MergeMessage(&root_, source, options, destination);
236 Node root_; member in class:google::protobuf::util::__anon29121::FieldMaskTree
252 MergeToFieldMask("", &root_, mask);
278 Node* node = &root_;
280 if (!new_branch && node != &root_ && node->children.empty()) {
304 const Node* node = &root_;
307 if (node != &root_) {
  /external/protobuf/src/google/protobuf/util/internal/
default_value_objectwriter.h 226 // Writes the root_ node to ow_ and resets the root_ and current_ pointer to
256 google::protobuf::scoped_ptr<Node> root_; member in class:google::protobuf::util::converter::DefaultValueObjectWriter
257 // The stack to hold the path of Nodes from current_ to root_;
  /external/v8/src/profiler/
allocation-tracker.h 60 AllocationTraceNode* root() { return &root_; }
66 AllocationTraceNode root_; member in class:v8::internal::AllocationTraceTree
  /external/v8/src/ast/
ast-traversal-visitor.h 35 DCHECK_NOT_NULL(root_);
36 Visit(root_);
57 AstNode* root_; member in class:v8::internal::AstTraversalVisitor
94 : root_(root), depth_(0) {
101 : root_(root), depth_(0) {
  /system/update_engine/
omaha_request_params.h 332 // When reading files, prepend root_ to the paths. Useful for testing.
333 std::string root_; member in class:chromeos_update_engine::OmahaRequestParams
  /build/kati/
find.cc 778 const DirentNode* r = root_->FindDir(d);
795 root_.reset(ConstructDirectoryTree(""));
796 if (!root_) {
1023 unique_ptr<DirentNode> root_; member in class:__anon1405::FindEmulatorImpl
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BytesTrie.java 47 pos_=root_=offset;
66 pos_=root_;
94 state.root=root_;
110 if(bytes_==state.bytes && bytes_!=null && root_==state.root) {
203 return nextImpl(root_, inByte);
1033 private int root_; field in class:BytesTrie
    [all...]
CharsTrie.java 50 pos_=root_=offset;
69 pos_=root_;
97 state.root=root_;
113 if(chars_==state.chars && chars_!=null && root_==state.root) {
146 return nextImpl(root_, inUnit);
990 private int root_; field in class:CharsTrie
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrie.java 47 pos_=root_=offset;
68 pos_=root_;
99 state.root=root_;
116 if(bytes_==state.bytes && bytes_!=null && root_==state.root) {
219 return nextImpl(root_, inByte);
1068 private int root_; field in class:BytesTrie
    [all...]
CharsTrie.java 50 pos_=root_=offset;
71 pos_=root_;
102 state.root=root_;
119 if(chars_==state.chars && chars_!=null && root_==state.root) {
154 return nextImpl(root_, inUnit);
1016 private int root_; field in class:CharsTrie
    [all...]
  /external/protobuf/src/google/protobuf/
api.pb.h 424 ::google::protobuf::internal::ArenaStringPtr root_; member in class:google::protobuf::Mixin
    [all...]
  /external/v8/src/asmjs/
asm-typer.h 327 FunctionLiteral* root_; member in class:v8::internal::wasm::final
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
api.pb.h 424 ::google::protobuf::internal::ArenaStringPtr root_; member in class:google::protobuf::Mixin
    [all...]
  /art/compiler/optimizing/
code_generator_mips.cc 978 mips_codegen->Move32(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), root_); variable
994 const Location root_; member in class:art::mips::ReadBarrierForRootSlowPathMIPS
    [all...]
code_generator_mips64.cc 915 root_, variable
932 const Location root_; member in class:art::mips64::ReadBarrierForRootSlowPathMIPS64
    [all...]

Completed in 421 milliseconds

1 2