Home | History | Annotate | Download | only in context

Lines Matching refs:RTree

26 #define LOG_TAG "RTree"
31 #include "RTree.h"
45 namespace RTree {
98 // RTree
111 // is strongly impacted by a choice of a good M value (RTree::m_maxChildren).
116 // To find the leaf node N where we can insert a new element (RTree::insert(),
135 RTree::RTree(android::LinearAllocator* allocator, int M)
144 RTree::~RTree()
151 void RTree::insert(WebCore::IntRect& bounds, WebCore::RecordingData* payload)
158 void RTree::search(WebCore::IntRect& clip, Vector<WebCore::RecordingData*>&list)
163 void RTree::remove(WebCore::IntRect& clip)
168 void RTree::display()
175 void* RTree::allocateNode()
180 void RTree::deleteNode(Node* n)
250 Node::Node(RTree* t, int minx, int miny, int maxx, int maxy, WebCore::RecordingData* payload)
598 } // Namespace RTree