Home | History | Annotate | Download | only in pathops

Lines Matching refs:loop

764                 // it contains spans of segments in test's loop but not including 'this'
958 // loop looking for a pair of angle parts that are too close to be sorted
1115 // if the spans don't match, add the mssing pt to the segment and loop it in the opposite span
1555 int loop = 0;
1561 for (int check = 1; check < loop - 1; ++check) {
1564 for (int inner = check + 1; inner < loop; ++inner) {
1567 SkDebugf("*** bad coincident end loop ***\n");
1572 ++loop;
1624 int loop = 0;
1630 for (int check = 1; check < loop - 1; ++check) {
1633 for (int inner = check + 1; inner < loop; ++inner) {
1636 SkDebugf("*** bad coincident loop ***\n");
1641 ++loop;
1711 int loop = 0;
1714 for (int check = 1; check < loop - 1; ++check) {
1717 for (int inner = check + 1; inner < loop; ++inner) {
1721 SkDebugf("*** bad ptT loop ***\n");
1723 return loop;
1727 // there's nothing wrong with extremely large loop counts -- but this may appear to hang
1728 // by taking a very long time to figure out that no loop entry is a duplicate
1729 // -- and it's likely that a large loop count is indicative of a bug somewhere
1730 if (++loop > 1000) {
1731 SkDebugf("*** loop count exceeds 1000 ***\n");