OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRecycledLocation
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/view/
InputEvent.java
43
private RuntimeException
mRecycledLocation
;
114
if (
mRecycledLocation
!= null) {
115
throw new RuntimeException(toString() + " recycled twice!",
mRecycledLocation
);
117
mRecycledLocation
= new RuntimeException("Last recycled here");
147
mRecycledLocation
= null;
DragEvent.java
135
private RuntimeException
mRecycledLocation
;
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 67 milliseconds