Searched refs:NodeBase (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/ui/gfx/geometry/ |
D | r_tree_base.h | 28 class NodeBase; 32 typedef ScopedVector<NodeBase> Nodes; 39 class GFX_EXPORT NodeBase { 41 virtual ~NodeBase(); 54 virtual scoped_ptr<NodeBase> RemoveAndReturnLastChild() = 0; 67 NodeBase* parent() { return parent_; } in parent() 68 const NodeBase* parent() const { return parent_; } in parent() 69 void set_parent(NodeBase* parent) { parent_ = parent; } in set_parent() 74 NodeBase(const Rect& rect, NodeBase* parent); 88 NodeBase* parent_; [all …]
|
D | r_tree_base.cc | 30 RTreeBase::NodeBase::~NodeBase() { in ~NodeBase() 33 void RTreeBase::NodeBase::RecomputeBoundsUpToRoot() { in RecomputeBoundsUpToRoot() 39 RTreeBase::NodeBase::NodeBase(const Rect& rect, NodeBase* parent) in NodeBase() function in gfx::RTreeBase::NodeBase 44 void RTreeBase::NodeBase::RecomputeLocalBounds() { in RecomputeLocalBounds() 49 RTreeBase::RecordBase::RecordBase(const Rect& rect) : NodeBase(rect, NULL) { in RecordBase() 65 scoped_ptr<RTreeBase::NodeBase> 67 return scoped_ptr<NodeBase>(); in RemoveAndReturnLastChild() 77 RTreeBase::Node::Node() : NodeBase(Rect(), NULL), level_(0) { in Node() 86 new_parent->AddChild(scoped_ptr<NodeBase>(this)); in ConstructParent() 130 scoped_ptr<RTreeBase::NodeBase> RTreeBase::Node::RemoveChild( in RemoveChild() [all …]
|
D | r_tree.h | 93 scoped_ptr<NodeBase> record; in Insert()
|
D | r_tree_unittest.cc | 42 void ValidateNode(const RTreeBase::NodeBase* node_base, in ValidateNode() 62 const RTreeBase::NodeBase* child_node = node->child(i); in CheckBoundsConsistent() 103 typedef RTreeBase::NodeBase RTreeNodeBase;
|
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/ |
D | ast.py | 13 class NodeBase(object): class 29 class NodeListBase(NodeBase): 82 class Definition(NodeBase): 89 NodeBase.__init__(self, **kwargs) 96 class Attribute(NodeBase): 171 class Import(NodeBase): 234 class Module(NodeBase): 251 class Mojom(NodeBase): 274 class Ordinal(NodeBase): 287 class Parameter(NodeBase):
|
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/ |
D | ast_unittest.py | 27 class _TestNode(ast.NodeBase): 50 node1 = ast.NodeBase(filename="hello.mojom", lineno=123) 51 node2 = ast.NodeBase()
|
/external/llvm/include/llvm/ADT/ |
D | IntervalMap.h | 213 class NodeBase { 226 void copy(const NodeBase<T1, T2, M> &Other, unsigned i, in copy() 285 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToLeftSib() 296 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToRightSib() 309 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { in adjustFromLeftSib() 443 typedef NodeBase<std::pair<KeyT, KeyT>, ValT, LeafSize> LeafBase; 559 class LeafNode : public NodeBase<std::pair<KeyT, KeyT>, ValT, N> { 697 class BranchNode : public NodeBase<NodeRef, KeyT, N> {
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | LinkedHashSet.h | 146 typedef LinkedHashSetNodeBase NodeBase; typedef 267 NodeBase m_anchor; 273 typedef LinkedHashSetNodeBase NodeBase; typedef 279 static void translate(Node& location, ValuePeekInType key, NodeBase* anchor) in translate()
|
D | ListHashSet.h | 251 typedef ListHashSetNodeBase<ValueArg> NodeBase; typedef 293 return static_cast<Node*>(fastMalloc(sizeof(NodeBase))); in allocateNode() 349 AlignedBuffer<sizeof(NodeBase) * m_poolSize, WTF_ALIGN_OF(NodeBase)> m_pool;
|