| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/ |
| H A D | qgeopath.cpp | 454 if (m_path.size() != otherPath.m_path.size()) in operator ==() 456 return m_width == otherPath.m_width && m_path == otherPath.m_path; in operator ==() 461 return m_path; in path() 483 if (!m_path.size()) in lineContains() 485 else if (m_path.size() == 1) in lineContains() 486 return (m_path[0].distanceTo(coordinate) <= lineRadius); in lineContains() 494 if (m_path.size()) { in lineContains() 495 a = QWebMercator::coordToMercator(m_path[0]); in lineContains() 499 for (int i = 1; i < m_path.size(); i++) { in lineContains() 500 b = QWebMercator::coordToMercator(m_path[i]); in lineContains() [all …]
|
| H A D | qgeopath_p.h | 63 inline static void computeBBox( const QList<QGeoCoordinate> &m_path, in computeBBox() argument 71 if (m_path.isEmpty()) { in computeBBox() 81 m_minLati = m_maxLati = m_path.at(0).latitude(); in computeBBox() 84 m_deltaXs.resize(m_path.size()); in computeBBox() 87 for (int i = 1; i < m_path.size(); i++) { in computeBBox() 88 const QGeoCoordinate &geoFrom = m_path.at(i-1); in computeBBox() 89 const QGeoCoordinate &geoTo = m_path.at(i); in computeBBox() 115 m_bbox = QGeoRectangle(QGeoCoordinate(m_maxLati, m_path.at(minId).longitude()), in computeBBox() 116 QGeoCoordinate(m_minLati, m_path.at(maxId).longitude())); in computeBBox() 119 inline static void updateBBox( const QList<QGeoCoordinate> &m_path, in updateBBox() argument [all …]
|
| H A D | qgeopolygon.cpp | 526 inline static void translatePoly( QList<QGeoCoordinate> &m_path, in translatePoly() argument 538 for (QGeoCoordinate &p: m_path) { in translatePoly() 559 computeBBox(m_path, m_deltaXs, m_minX, m_maxX, m_minLati, m_maxLati, m_bbox); in translate() 560 …translatePoly(m_path, m_holesList, m_bbox, degreesLatitude, degreesLongitude, m_maxLati, m_minLati… in translate() 571 if (m_path.size() != otherPath.m_path.size() in operator ==() 574 return m_path == otherPath.m_path && m_holesList == otherPath.m_holesList; in operator ==() 644 for (const QGeoCoordinate &c : m_path) { in updateClipperPath() 675 …translatePoly(m_path, m_holesList, m_bbox, degreesLatitude, degreesLongitude, m_maxLati, m_minLati… in translate() 690 m_path.append(coordinate); in addCoordinate() 697 computeBBox(m_path, m_deltaXs, m_minX, m_maxX, m_minLati, m_maxLati, m_bbox); in computeBoundingBox() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/qsg/ |
| H A D | qmappolylineobjectqsg.cpp | 78 geopathProjected_.reserve(m_path.path().size()); in projectPath() 79 for (const QGeoCoordinate &c : m_path.path()) in projectPath() 89 if (m_path.path().length() == 0) { // Possibly cleared in updateGeometry() 96 m_borderGeometry.setPreserveGeometry(true, m_path.boundingGeoRectangle().topLeft()); in updateGeometry() 98 m_borderGeometry.updateSourcePoints(*m_map, m_path); in updateGeometry() 162 return m_path.path(); in path() 167 m_path.setPath(path); in setPath() 197 return m_path; in geoShape()
|
| H A D | qmappolygonobjectqsg.cpp | 111 if (shape == m_path) in setGeoShape() 114 m_path = QGeoPathEager(shape); in setGeoShape() 129 if (m_path.path().length() == 0) { // Possibly cleared in updateGeometry() 143 m_geometry.setPreserveGeometry(true, m_path.boundingGeoRectangle().topLeft()); in updateGeometry() 144 m_borderGeometry.setPreserveGeometry(true, m_path.boundingGeoRectangle().topLeft()); in updateGeometry() 146 m_geometry.updateSourcePoints(*m_map, m_path); in updateGeometry() 147 m_borderGeometry.updateSourcePoints(*m_map, m_path); in updateGeometry()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/labs/ |
| H A D | qmappolygonobject.cpp | 73 m_path.setPath(other.path()); // to stay on the safe side in QMapPolygonObjectPrivateDefault() 76 m_path.addHole(poly.holePath(i)); in QMapPolygonObjectPrivateDefault() 94 return m_path.path(); in path() 99 m_path.setPath(path); in setPath() 139 return m_path; in geoShape() 144 if (shape == m_path) in setGeoShape() 149 m_path.addHole(poly.holePath(i)); in setGeoShape()
|
| H A D | qmappolylineobject.cpp | 79 m_path.setPath(other.path()); in QMapPolylineObjectPrivateDefault() 91 return m_path.path(); in path() 96 m_path.setPath(path); in setPath()
|
| H A D | qmappolylineobject_p_p.h | 99 QGeoPath m_path; // small overhead compared to plain QList<QGeoCoordinate>
|
| H A D | qmappolygonobject_p_p.h | 105 QGeoPolygon m_path; // small overhead compared to plain QList<QGeoCoordinate>
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeoroutesegment.cpp | 385 m_path(other.m_path), in QGeoRouteSegmentPrivateDefault() 448 return m_path; in path() 453 m_path = path; in setPath()
|
| H A D | qgeoroute.cpp | 545 m_path(other.m_path), in QGeoRoutePrivateDefault() 621 m_path = path; in setPath() 626 return m_path; in path()
|
| H A D | qgeoroutesegment_p.h | 137 QList<QGeoCoordinate> m_path; variable
|
| H A D | qgeoroute_p.h | 180 QList<QGeoCoordinate> m_path; variable
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | selftest-rtl.h | 87 char *m_path;
|
| H A D | line-map.h | 1728 const diagnostic_path *get_path () const { return m_path; } in get_path() 1729 void set_path (const diagnostic_path *path) { m_path = path; } in set_path() 1756 const diagnostic_path *m_path; variable
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | selftest-rtl.h | 87 char *m_path;
|
| H A D | line-map.h | 1728 const diagnostic_path *get_path () const { return m_path; } in get_path() 1729 void set_path (const diagnostic_path *path) { m_path = path; } in set_path() 1756 const diagnostic_path *m_path; variable
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/ |
| H A D | 0001-CVE-2021-42574.patch | 2143 const diagnostic_path *get_path () const { return m_path; } 2144 void set_path (const diagnostic_path *path) { m_path = path; } 2164 const diagnostic_path *m_path; 2277 - m_path (NULL) 2278 + m_path (NULL),
|