Lines Matching refs:pt
212 auto pt = pts.begin(); in getValue() local
229 outPts.push(*pt); in getValue()
231 for (++pt, ++out, ++in; pt < pts.end(); ++pt, ++out, ++in) { in getValue()
233 outPts.push(*(pt - 1) + *(out - 1)); in getValue()
234 outPts.push(*pt + *in); in getValue()
235 outPts.push(*pt); in getValue()
272 Point pt; in getValue() local
273 getValue(pt); in getValue()
274 pts.push(pt); in getValue()
318 bool LottieParser::getValue(Point& pt) in getValue() argument
324 auto ptr = (float*)(&pt); in getValue()
352 void LottieParser::getInterpolatorPoint(Point& pt) in getInterpolatorPoint() argument
356 if (KEY_AS("x")) getValue(pt.x); in getInterpolatorPoint()
357 else if (KEY_AS("y")) getValue(pt.y); in getInterpolatorPoint()