Lines Matching refs:dest

1265     public void getCursorPath(int point, Path dest,
1267 dest.reset();
1296 dest.moveTo(h1, top);
1297 dest.lineTo(h1, bottom);
1299 dest.moveTo(h1, top);
1300 dest.lineTo(h1, (top + bottom) >> 1);
1302 dest.moveTo(h2, (top + bottom) >> 1);
1303 dest.lineTo(h2, bottom);
1307 dest.moveTo(h2, bottom);
1308 dest.lineTo(h2 - dist, bottom + dist);
1309 dest.lineTo(h2, bottom);
1310 dest.lineTo(h2 + dist, bottom + dist);
1312 dest.moveTo(h2, bottom);
1313 dest.lineTo(h2 - dist, bottom + dist);
1315 dest.moveTo(h2 - dist, bottom + dist - 0.5f);
1316 dest.lineTo(h2 + dist, bottom + dist - 0.5f);
1318 dest.moveTo(h2 + dist, bottom + dist);
1319 dest.lineTo(h2, bottom);
1323 dest.moveTo(h1, top);
1324 dest.lineTo(h1 - dist, top - dist);
1325 dest.lineTo(h1, top);
1326 dest.lineTo(h1 + dist, top - dist);
1328 dest.moveTo(h1, top);
1329 dest.lineTo(h1 - dist, top - dist);
1331 dest.moveTo(h1 - dist, top - dist + 0.5f);
1332 dest.lineTo(h1 + dist, top - dist + 0.5f);
1334 dest.moveTo(h1 + dist, top - dist);
1335 dest.lineTo(h1, top);
1340 int top, int bottom, Path dest) {
1366 dest.addRect(left, top, right, bottom, Path.Direction.CW);
1378 public void getSelectionPath(int start, int end, Path dest) {
1379 dest.reset();
1397 addSelection(startline, start, end, top, bottom, dest);
1402 top, getLineBottom(startline), dest);
1405 dest.addRect(getLineLeft(startline), top,
1408 dest.addRect(getLineRight(startline), top,
1414 dest.addRect(0, top, width, bottom, Path.Direction.CW);
1421 top, bottom, dest);
1424 dest.addRect(width, top, getLineRight(endline), bottom, Path.Direction.CW);
1426 dest.addRect(0, top, getLineLeft(endline), bottom, Path.Direction.CW);
1709 char[] dest, int destoff, TextUtils.TruncateAt method) {
1731 dest[destoff + a - start] = c;
1790 public void getChars(int start, int end, char[] dest, int destoff) {
1794 TextUtils.getChars(mText, start, end, dest, destoff);
1797 mLayout.ellipsize(start, end, i, dest, destoff, mMethod);