Home | History | Annotate | Download | only in graphics

Lines Matching refs:pos

1565      * the pos array.
1573 * @param pos Array of [x,y] positions, used to position each
1578 public void drawPosText(char[] text, int index, int count, float[] pos, Paint paint) {
1579 if (index < 0 || index + count > text.length || count*2 > pos.length) {
1582 native_drawPosText(mNativeCanvas, text, index, count, pos,
1588 * the pos array.
1594 * @param pos Array of [x,y] positions, used to position each character
1598 public void drawPosText(String text, float[] pos, Paint paint) {
1599 if (text.length()*2 > pos.length) {
1602 native_drawPosText(mNativeCanvas, text, pos, paint.mNativePaint);
1832 int count, float[] pos,
1835 String text, float[] pos,