Home
last modified time | relevance | path

Searched refs:TextHistoryEvent (Results 1 – 1 of 1) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowCanvas.java35 private List<TextHistoryEvent> drawnTextEventHistory = new ArrayList<>();
78 drawnTextEventHistory.add(new TextHistoryEvent(x, y, paint, text)); in drawText()
84 new TextHistoryEvent(x, y, paint, text.subSequence(start, end).toString())); in drawText()
89 drawnTextEventHistory.add(new TextHistoryEvent(x, y, paint, new String(text, index, count))); in drawText()
94 drawnTextEventHistory.add(new TextHistoryEvent(x, y, paint, text.substring(start, end))); in drawText()
330 public TextHistoryEvent getDrawnTextEvent(int i) { in getDrawnTextEvent()
461 public static class TextHistoryEvent { class in ShadowCanvas
467 private TextHistoryEvent(float x, float y, Paint paint, String text) { in TextHistoryEvent() method in ShadowCanvas.TextHistoryEvent