Home | History | Annotate | Download | only in method

Lines Matching defs:DragState

88         DragState[] ds;
92 ds = buffer.getSpans(0, buffer.length(), DragState.class);
98 buffer.setSpan(new DragState(event.getX(), event.getY(),
104 ds = buffer.getSpans(0, buffer.length(), DragState.class);
117 ds = buffer.getSpans(0, buffer.length(), DragState.class);
182 DragState[] ds = buffer.getSpans(0, buffer.length(), DragState.class);
191 DragState[] ds = buffer.getSpans(0, buffer.length(), DragState.class);
195 private static class DragState implements NoCopySpan {
203 public DragState(float x, float y, int scrollX, int scrollY) {