Home
last modified time | relevance | path

Searched refs:RangeIter (Results 1 – 7 of 7) sorted by relevance

/external/skia/include/core/
DSkPath.h1532 class RangeIter {
1534 RangeIter() = default;
1535 RangeIter(const uint8_t* verbs, const SkPoint* points, const SkScalar* weights) in RangeIter() function
1539 bool operator!=(const RangeIter& that) const {
1542 bool operator==(const RangeIter& that) const {
1545 RangeIter& operator++() {
1553 RangeIter operator++(int) {
1554 RangeIter copy = *this;
1658 RangeIter fIter;
1659 RangeIter fEnd;
/external/skia/src/core/
DSkPathPriv.h152 using RangeIter = SkPath::RangeIter; variable
174 SkPath::RangeIter begin() { return {fVerbsBegin, fPoints, fWeights}; } in begin()
175 SkPath::RangeIter end() { return {fVerbsEnd, nullptr, nullptr}; } in end()
DSkScan_Hairline.cpp570 SkPathPriv::RangeIter iter = SkPathPriv::Iterate(path).begin(); in hair_path()
571 SkPathPriv::RangeIter end = SkPathPriv::Iterate(path).end(); in hair_path()
DSkContourMeasure.cpp188 SkPathPriv::RangeIter fIter;
/external/skia/src/gpu/tessellate/
DGrStrokeIterator.h344 SkPathPriv::RangeIter fIter;
345 SkPathPriv::RangeIter fEnd;
/external/skia/tests/
DStrokeIndirectTest.cpp186 static SkPoint get_contour_closing_control_point(SkPathPriv::RangeIter iter, in get_contour_closing_control_point()
187 const SkPathPriv::RangeIter& end) { in get_contour_closing_control_point()
DPathTest.cpp3051 SkPathPriv::RangeIter iter = iterate.begin(); in test_range_iter()
3783 static void check_move(skiatest::Reporter* reporter, SkPathPriv::RangeIter* iter, in check_move()
3791 static void check_line(skiatest::Reporter* reporter, SkPathPriv::RangeIter* iter, in check_line()
3799 static void check_quad(skiatest::Reporter* reporter, SkPathPriv::RangeIter* iter, in check_quad()
3809 static void check_done(skiatest::Reporter* reporter, SkPath* p, SkPathPriv::RangeIter* iter) { in check_done()
3814 SkPathPriv::RangeIter* iter) { in check_done_and_reset()
3821 SkPathPriv::RangeIter iter = SkPathPriv::Iterate(*p).begin(); in check_path_is_move_and_reset()
3828 SkPathPriv::RangeIter iter = SkPathPriv::Iterate(*p).begin(); in check_path_is_line_and_reset()
3836 SkPathPriv::RangeIter iter = SkPathPriv::Iterate(*p).begin(); in check_path_is_line()
3844 SkPathPriv::RangeIter iter = SkPathPriv::Iterate(*p).begin(); in check_path_is_line_pair_and_reset()
[all …]