Lines Matching defs:param
109 * @param startPoint Indicates the coordinates of the start point.
138 * @param endPoint Indicates the end point of the straight line.
139 * @param paint Indicates the straight line style. For details, see {@link Paint}.
148 * @param startPoint Indicates the coordinates of the start point.
149 * @param endPoint Indicates the coordinates of the end point.
150 * @param paint Indicates the straight line style. For details, see {@link Paint}.
163 * @param control1 Indicates the coordinates of the first control point of the cubic Bezier curve.
164 * @param control2 Indicates the coordinates of the second control point of the cubic Bezier curve.
165 * @param endPoint Indicates the coordinates of the end point of the cubic Bezier curve.
166 * @param paint Indicates the curve style. For details, see {@link Paint}.
177 * @param startPoint Indicates the coordinates of the start point of the cubic Bezier curve.
178 * @param control1 Indicates the coordinates of the first control point of the cubic Bezier curve.
179 * @param control2 Indicates the coordinates of the second control point of the cubic Bezier curve.
180 * @param endPoint Indicates the coordinates of the end point of the cubic Bezier curve.
181 * @param paint Indicates the curve style. For details, see {@link Paint}.
191 * @param startPoint Indicates the coordinates of the point at the upper left corner of the rectangle.
192 * @param height Indicates the height of the rectangle.
193 * @param width Indicates the width of the rectangle.
194 * @param paint Indicates the rectangle style. For details, see {@link Paint}.
203 * @param startPoint starting point
204 * @param height
205 * @param width
206 * @param paint paint brush
212 * @param startPoint starting point
213 * @param height
214 * @param width
222 * @param center Indicates the coordinates of the circle center.
223 * @param radius Indicates the radius of the circle.
224 * @param paint Indicates the circle style. For details, see {@link Paint}.
236 * @param center Indicates the coordinates of the sector's center.
237 * @param radius Indicates the radius of the sector.
238 * @param startAngle Indicates the start angle of the sector. Value <b>0</b> indicates the 12-o'clock direction,
240 * @param endAngle Indicates the end angle of the sector. Value <b>0</b> indicates the 12-o'clock direction,
242 * @param paint Indicates the sector style. For details, see {@link Paint}.
255 * @param center Indicates the coordinates of the arc's center.
256 * @param radius Indicates the radius of the arc.
257 * @param startAngle Indicates the start angle of the arc. Value <b>0</b> indicates the 12-o'clock direction,
259 * @param endAngle Indicates the end angle of the arc. Value <b>0</b> indicates the 12-o'clock direction,
261 * @param paint Indicates the arc style. For details, see {@link Paint}.
271 * @param startPoint Indicates the coordinates of the start point.
272 * @param image Indicates the pointer to the image source.
273 * @param paint Indicates the image style. For details, see {@link Paint}.
299 void* param;
310 * @param startPoint Indicates the coordinates of the start point.
311 * @param text Indicates the pointer to the text content.
312 * @param maxWidth Indicates the maximum width of the text that can be displayed. If the maximum width is
314 * @param fontStyle Indicates the text layout and font style. For details, see {@link FontStyle}.
315 * @param paint Indicates the text style. For details, see {@link Paint}.
336 * @param point Indicates the specified point to move to.
345 * @param point Indicates the coordinates of the specified point.
354 * @param center Indicates the coordinates of the arc's center point.
355 * @param radius Indicates the radius of the arc.
356 * @param startAngle Indicates the start angle of the arc.
359 * @param endAngle Indicates the end angle of the arc.
370 * @param point Indicates the coordinates of the rectangle's upper left corner.
371 * @param height Indicates the height of the rectangle.
372 * @param width Indicates the width of the rectangle.
389 * @param paint Indicates the path style. For details, see {@link Paint}.
398 * @param paint fill paint
443 void* param,
451 static void DeleteImageParam(void* param);
452 static void DeletePathParam(void* param);
553 static void DeleteLineParam(void* param)
555 LineParam* lineParam = static_cast<LineParam*>(param);
559 static void DeleteCurveParam(void* param)
561 CurveParam* curveParam = static_cast<CurveParam*>(param);
565 static void DeleteRectParam(void* param)
567 RectParam* rectParam = static_cast<RectParam*>(param);
571 static void DeleteCircleParam(void* param)
573 CircleParam* circleParam = static_cast<CircleParam*>(param);
577 static void DeleteArcParam(void* param)
579 ArcParam* arcParam = static_cast<ArcParam*>(param);
583 static void DeleteLabel(void* param)
585 UILabel* label = static_cast<UILabel*>(param);
589 static void DeleteImageView(void* param)
591 UIExtendImageView* imageView = static_cast<UIExtendImageView*>(param);
595 static void DeleteTextParam(void* param)
597 TextParam* textParam = static_cast<TextParam*>(param);
602 void* param,
608 void* param,
614 void* param,
620 void* param,
626 void* param,
632 void* param,
639 void* param,
647 void* param,
653 void* param,
665 void* param,
675 static void DoDrawText(BufferInfo& gfxDstBuffer, void* param, const Paint& paint, const Rect& rect,