Lines Matching refs:result
1176 static void sorted_merge(VertexList* front, VertexList* back, VertexList* result) {
1182 result->append(a);
1186 result->append(b);
1190 result->append(*front);
1191 result->append(*back);
1194 void GrTriangulator::SortedMerge(VertexList* front, VertexList* back, VertexList* result,
1197 sorted_merge<sweep_lt_horiz>(front, back, result);
1199 sorted_merge<sweep_lt_vert>(front, back, result);
1203 for (Vertex* v = result->fHead; v; v = v->fNext) {
1300 auto result = SimplifyResult::kAlreadySimple;
1321 result = SimplifyResult::kFoundSelfIntersection;
1329 result = SimplifyResult::kFoundSelfIntersection;
1348 return result;