Lines Matching refs:SpatialIndex

39 using namespace SpatialIndex::RTree;
40 using namespace SpatialIndex;
42 SpatialIndex::RTree::Data::Data(uint32_t len, byte* pData, Region& r, id_type id) in Data()
52 SpatialIndex::RTree::Data::~Data() in ~Data()
57 SpatialIndex::RTree::Data* SpatialIndex::RTree::Data::clone() in clone()
62 id_type SpatialIndex::RTree::Data::getIdentifier() const in getIdentifier()
67 void SpatialIndex::RTree::Data::getShape(IShape** out) const in getShape()
72 void SpatialIndex::RTree::Data::getData(uint32_t& len, byte** data) const in getData()
84 uint32_t SpatialIndex::RTree::Data::getByteArraySize() in getByteArraySize()
93 void SpatialIndex::RTree::Data::loadFromByteArray(const byte* ptr) in loadFromByteArray()
114 void SpatialIndex::RTree::Data::storeToByteArray(byte** data, uint32_t& len) in storeToByteArray()
142 SpatialIndex::ISpatialIndex* SpatialIndex::RTree::returnRTree(SpatialIndex::IStorageManager& sm, To… in returnRTree()
144 SpatialIndex::ISpatialIndex* si = new SpatialIndex::RTree::RTree(sm, ps); in returnRTree()
148 SpatialIndex::ISpatialIndex* SpatialIndex::RTree::createNewRTree( in createNewRTree()
149 SpatialIndex::IStorageManager& sm, in createNewRTree()
189 SpatialIndex::ISpatialIndex* SpatialIndex::RTree::createAndBulkLoadNewRTree( in createAndBulkLoadNewRTree()
192 SpatialIndex::IStorageManager& sm, in createAndBulkLoadNewRTree()
197 SpatialIndex::RTree::RTreeVariant rv, in createAndBulkLoadNewRTree()
200SpatialIndex::ISpatialIndex* tree = createNewRTree(sm, fillFactor, indexCapacity, leafCapacity, di… in createAndBulkLoadNewRTree()
205 SpatialIndex::RTree::BulkLoader bl; in createAndBulkLoadNewRTree()
220 SpatialIndex::ISpatialIndex* SpatialIndex::RTree::createAndBulkLoadNewRTree( in createAndBulkLoadNewRTree()
223 SpatialIndex::IStorageManager& sm, in createAndBulkLoadNewRTree()
325SpatialIndex::ISpatialIndex* tree = createNewRTree(sm, fillFactor, indexCapacity, leafCapacity, di… in createAndBulkLoadNewRTree()
330 SpatialIndex::RTree::BulkLoader bl; in createAndBulkLoadNewRTree()
345 SpatialIndex::ISpatialIndex* SpatialIndex::RTree::loadRTree(IStorageManager& sm, id_type indexIdent… in loadRTree()
357 SpatialIndex::RTree::RTree::RTree(IStorageManager& sm, Tools::PropertySet& ps) : in RTree()
398 SpatialIndex::RTree::RTree::~RTree() in ~RTree()
411 void SpatialIndex::RTree::RTree::insertData(uint32_t len, const byte* pData, const IShape& shape, i… in insertData()
435 bool SpatialIndex::RTree::RTree::deleteData(const IShape& shape, id_type id) in deleteData()
451 void SpatialIndex::RTree::RTree::containsWhatQuery(const IShape& query, IVisitor& v) in containsWhatQuery()
507 void SpatialIndex::RTree::RTree::intersectsWithQuery(const IShape& query, IVisitor& v) in intersectsWithQuery()
513 void SpatialIndex::RTree::RTree::pointLocationQuery(const Point& query, IVisitor& v) in pointLocationQuery()
520 void SpatialIndex::RTree::RTree::nearestNeighborQuery(uint32_t k, const IShape& query, IVisitor& v,… in nearestNeighborQuery()
586 void SpatialIndex::RTree::RTree::nearestNeighborQuery(uint32_t k, const IShape& query, IVisitor& v) in nearestNeighborQuery()
594 void SpatialIndex::RTree::RTree::selfJoinQuery(const IShape& query, IVisitor& v) in selfJoinQuery()
608 void SpatialIndex::RTree::RTree::queryStrategy(IQueryStrategy& qs) in queryStrategy()
624 void SpatialIndex::RTree::RTree::getIndexProperties(Tools::PropertySet& out) const in getIndexProperties()
694 void SpatialIndex::RTree::RTree::addCommand(ICommand* pCommand, CommandType ct) in addCommand()
710 bool SpatialIndex::RTree::RTree::isIndexValid() in isIndexValid()
802 void SpatialIndex::RTree::RTree::getStatistics(IStatistics** out) const in getStatistics()
807 void SpatialIndex::RTree::RTree::initNew(Tools::PropertySet& ps) in initNew()
979 void SpatialIndex::RTree::RTree::initOld(Tools::PropertySet& ps) in initOld()
1084 void SpatialIndex::RTree::RTree::storeHeader() in storeHeader()
1144 void SpatialIndex::RTree::RTree::loadHeader() in loadHeader()
1192 void SpatialIndex::RTree::RTree::insertData_impl(uint32_t dataLength, byte* pData, Region& mbr, id_… in insertData_impl()
1224 void SpatialIndex::RTree::RTree::insertData_impl(uint32_t dataLength, byte* pData, Region& mbr, id_… in insertData_impl()
1242 bool SpatialIndex::RTree::RTree::deleteData_impl(const Region& mbr, id_type id) in deleteData_impl()
1266 SpatialIndex::id_type SpatialIndex::RTree::RTree::writeNode(Node* n) in writeNode()
1317 SpatialIndex::RTree::NodePtr SpatialIndex::RTree::RTree::readNode(id_type page) in readNode()
1370 void SpatialIndex::RTree::RTree::deleteNode(Node* n) in deleteNode()
1391 void SpatialIndex::RTree::RTree::rangeQuery(RangeQueryType type, const IShape& query, IVisitor& v) in rangeQuery()
1436 void SpatialIndex::RTree::RTree::selfJoinQuery(id_type id1, id_type id2, const Region& r, IVisitor&… in selfJoinQuery()
1478 void SpatialIndex::RTree::RTree::visitSubTree(NodePtr subTree, IVisitor& v) in visitSubTree()
1507 std::ostream& SpatialIndex::RTree::operator<<(std::ostream& os, const RTree& t) in operator <<()