Home
last modified time | relevance | path

Searched refs:queryBBox (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dgrid_index.cpp65 std::vector<T> GridIndex<T>::query(const BBox& queryBBox) const { in query()
67 query(queryBBox, [&](const T& t, const BBox&) -> bool { in query()
75 …::pair<T, typename GridIndex<T>::BBox>> GridIndex<T>::queryWithBoxes(const BBox& queryBBox) const { in queryWithBoxes()
77 query(queryBBox, [&](const T& t, const BBox& bbox) -> bool { in queryWithBoxes()
85 bool GridIndex<T>::hitTest(const BBox& queryBBox) const { in hitTest()
87 query(queryBBox, [&](const T&, const BBox&) -> bool { in hitTest()
105 bool GridIndex<T>::noIntersection(const BBox& queryBBox) const { in noIntersection()
106 …return queryBBox.max.x < 0 || queryBBox.min.x >= width || queryBBox.max.y < 0 || queryBBox.min.y >… in noIntersection()
110 bool GridIndex<T>::completeIntersection(const BBox& queryBBox) const { in completeIntersection()
111 …return queryBBox.min.x <= 0 && queryBBox.min.y <= 0 && width <= queryBBox.max.x && height <= query… in completeIntersection()
[all …]
H A Dgrid_index.hpp76 bool noIntersection(const BBox& queryBBox) const;
77 bool completeIntersection(const BBox& queryBBox) const;