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
114 if (mRecycledLocation != null) {
115 throw new RuntimeException(toString() + " recycled twice!", mRecycledLocation);
117 mRecycledLocation = new RuntimeException("Last recycled here");
147 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 59 milliseconds