Searched refs:NodeBase (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/ui/gfx/geometry/
H A Dr_tree_base.h28 class NodeBase;
32 typedef ScopedVector<NodeBase> Nodes;
39 class GFX_EXPORT NodeBase { class in class:gfx::RTreeBase
41 virtual ~NodeBase();
54 virtual scoped_ptr<NodeBase> RemoveAndReturnLastChild() = 0;
67 NodeBase* parent() { return parent_; }
68 const NodeBase* parent() const { return parent_; }
69 void set_parent(NodeBase* parent) { parent_ = parent; }
74 NodeBase(const Rect& rect, NodeBase* paren
[all...]
H A Dr_tree_base.cc28 // RTreeBase::NodeBase --------------------------------------------------------
30 RTreeBase::NodeBase::~NodeBase() {
33 void RTreeBase::NodeBase::RecomputeBoundsUpToRoot() {
39 RTreeBase::NodeBase::NodeBase(const Rect& rect, NodeBase* parent) function in class:gfx::RTreeBase::NodeBase
44 void RTreeBase::NodeBase::RecomputeLocalBounds() {
49 RTreeBase::RecordBase::RecordBase(const Rect& rect) : NodeBase(rect, NULL) {
65 scoped_ptr<RTreeBase::NodeBase>
[all...]
H A Dr_tree.h93 scoped_ptr<NodeBase> record;
H A Dr_tree_unittest.cc42 void ValidateNode(const RTreeBase::NodeBase* node_base,
62 const RTreeBase::NodeBase* child_node = node->child(i);
103 typedef RTreeBase::NodeBase RTreeNodeBase;
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dast.py13 class NodeBase(object): class in inherits:object
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)
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
H A Dast_unittest.py27 class _TestNode(ast.NodeBase):
50 node1 = ast.NodeBase(filename="hello.mojom", lineno=123)
51 node2 = ast.NodeBase()
66 # |NodeBase|'s |__eq__()| should compare types (and a subclass's |__eq__()|
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DLinkedHashSet.h146 typedef LinkedHashSetNodeBase NodeBase; typedef in class:WTF::LinkedHashSet
267 NodeBase m_anchor;
273 typedef LinkedHashSetNodeBase NodeBase; typedef in struct:WTF::LinkedHashSetTranslator
279 static void translate(Node& location, ValuePeekInType key, NodeBase* anchor)
H A DListHashSet.h251 typedef ListHashSetNodeBase<ValueArg> NodeBase; typedef in struct:WTF::ListHashSetAllocator
293 return static_cast<Node*>(fastMalloc(sizeof(NodeBase)));
349 AlignedBuffer<sizeof(NodeBase) * m_poolSize, WTF_ALIGN_OF(NodeBase)> m_pool;
/external/llvm/include/llvm/ADT/
H A DIntervalMap.h186 //--- IntervalMapImpl::NodeBase ---//
213 class NodeBase { class in namespace:llvm::IntervalMapImpl
226 void copy(const NodeBase<T1, T2, M> &Other, unsigned i, argument
285 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize,
296 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize,
309 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) {
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> {

Completed in 410 milliseconds