Lines Matching refs:csAP

21   CFX_ByteTextBuf csAP;  in GetAppStreamFromArray()  local
26 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " m\n"; in GetAppStreamFromArray()
29 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " l\n"; in GetAppStreamFromArray()
32 csAP << pPathData[i].point.x << " " << pPathData[i].point.y << " " in GetAppStreamFromArray()
44 return csAP.GetByteString(); in GetAppStreamFromArray()
166 CFX_ByteTextBuf csAP; in GetAP_Check() local
167 csAP << pts[0][0].x << " " << pts[0][0].y << " m\n"; in GetAP_Check()
177 csAP << pts[i][0].x + px1 * PWL_BEZIER << " " in GetAP_Check()
184 return csAP.GetByteString(); in GetAP_Check()
188 CFX_ByteTextBuf csAP; in GetAP_Circle() local
198 csAP << pt1.x << " " << pt1.y << " m\n"; in GetAP_Circle()
203 csAP << pt1.x << " " << pt1.y + py * PWL_BEZIER << " " in GetAP_Circle()
210 csAP << pt2.x + px * PWL_BEZIER << " " << pt2.y << " " << pt3.x << " " in GetAP_Circle()
216 csAP << pt3.x << " " << pt3.y - py * PWL_BEZIER << " " in GetAP_Circle()
223 csAP << pt4.x - px * PWL_BEZIER << " " << pt4.y << " " << pt1.x << " " in GetAP_Circle()
226 return csAP.GetByteString(); in GetAP_Circle()
230 CFX_ByteTextBuf csAP; in GetAP_Cross() local
232 csAP << crBBox.left << " " << crBBox.top << " m\n"; in GetAP_Cross()
233 csAP << crBBox.right << " " << crBBox.bottom << " l\n"; in GetAP_Cross()
234 csAP << crBBox.left << " " << crBBox.bottom << " m\n"; in GetAP_Cross()
235 csAP << crBBox.right << " " << crBBox.top << " l\n"; in GetAP_Cross()
237 return csAP.GetByteString(); in GetAP_Cross()
241 CFX_ByteTextBuf csAP; in GetAP_Diamond() local
251 csAP << pt1.x << " " << pt1.y << " m\n"; in GetAP_Diamond()
252 csAP << pt2.x << " " << pt2.y << " l\n"; in GetAP_Diamond()
253 csAP << pt3.x << " " << pt3.y << " l\n"; in GetAP_Diamond()
254 csAP << pt4.x << " " << pt4.y << " l\n"; in GetAP_Diamond()
255 csAP << pt1.x << " " << pt1.y << " l\n"; in GetAP_Diamond()
257 return csAP.GetByteString(); in GetAP_Diamond()
261 CFX_ByteTextBuf csAP; in GetAP_Square() local
263 csAP << crBBox.left << " " << crBBox.top << " m\n"; in GetAP_Square()
264 csAP << crBBox.right << " " << crBBox.top << " l\n"; in GetAP_Square()
265 csAP << crBBox.right << " " << crBBox.bottom << " l\n"; in GetAP_Square()
266 csAP << crBBox.left << " " << crBBox.bottom << " l\n"; in GetAP_Square()
267 csAP << crBBox.left << " " << crBBox.top << " l\n"; in GetAP_Square()
269 return csAP.GetByteString(); in GetAP_Square()
273 CFX_ByteTextBuf csAP; in GetAP_Star() local
291 csAP << px[0] << " " << py[0] << " m\n"; in GetAP_Star()
298 csAP << px[nNext] << " " << py[nNext] << " l\n"; in GetAP_Star()
301 return csAP.GetByteString(); in GetAP_Star()
306 CFX_ByteTextBuf csAP; in GetAP_HalfCircle() local
317 csAP << cos(fRotate) << " " << sin(fRotate) << " " << -sin(fRotate) << " " in GetAP_HalfCircle()
321 csAP << pt1.x << " " << pt1.y << " m\n"; in GetAP_HalfCircle()
326 csAP << pt1.x << " " << pt1.y + py * PWL_BEZIER << " " in GetAP_HalfCircle()
333 csAP << pt2.x + px * PWL_BEZIER << " " << pt2.y << " " << pt3.x << " " in GetAP_HalfCircle()
336 return csAP.GetByteString(); in GetAP_HalfCircle()