Searched defs:mRecycledLocation (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
H A DInputEvent.java43 private RuntimeException mRecycledLocation; field in class:InputEvent
102 if (mRecycledLocation != null) {
103 throw new RuntimeException(toString() + " recycled twice!", mRecycledLocation);
105 mRecycledLocation = new RuntimeException("Last recycled here");
135 mRecycledLocation = null;
H A DDragEvent.java135 private RuntimeException mRecycledLocation; field in class:DragEvent
284 ev.mRecycledLocation = null;
410 if (mRecycledLocation != null) {
411 throw new RuntimeException(toString() + " recycled twice!", mRecycledLocation);
413 mRecycledLocation = new RuntimeException("Last recycled here");

Completed in 52 milliseconds