Lines Matching refs:holePath
417 void QGeoPolygon::addHole(const QVariant &holePath) in addHole() argument
421 if (holePath.canConvert<QVariantList>()) { in addHole()
422 const QVariantList qvlHolePath = holePath.toList(); in addHole()
437 void QGeoPolygon::addHole(const QList<QGeoCoordinate> &holePath) in addHole() argument
440 return d->addHole(holePath); in addHole()
453 for (const QGeoCoordinate &coords: d->holePath(index)) in hole()
463 const QList<QGeoCoordinate> QGeoPolygon::holePath(int index) const in holePath() function in QGeoPolygon
466 return d->holePath(index); in holePath()
577 void QGeoPolygonPrivate::addHole(const QList<QGeoCoordinate> &holePath) in addHole() argument
579 for (const QGeoCoordinate &holeVertex: holePath) in addHole()
583 m_holesList << holePath; in addHole()
587 const QList<QGeoCoordinate> QGeoPolygonPrivate::holePath(int index) const in holePath() function in QGeoPolygonPrivate
622 for (const QList<QGeoCoordinate> &holePath : qAsConst(m_holesList)) { in polygonContains() local
625 holePolygon.setPath(holePath); in polygonContains()
725 addHole(other.holePath(i)); in QGeoPolygonEager()