Home
last modified time | relevance | path

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

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
DAssistVisualizer.java70 final int[] mTmpLocation = new int[2]; field in AssistVisualizer
181 getLocationOnScreen(mTmpLocation);
186 canvas.drawRect(te.bounds.left - mTmpLocation[0], te.bounds.top - mTmpLocation[1],
187 te.bounds.right - mTmpLocation[0], te.bounds.bottom - mTmpLocation[1],
193 canvas.translate(-mTmpLocation[0], -mTmpLocation[1]);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DForwardingListener.java65 private final int[] mTmpLocation = new int[2]; field in ForwardingListener
297 final int[] loc = mTmpLocation; in toLocalMotionEvent()
308 final int[] loc = mTmpLocation; in toGlobalMotionEvent()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DSingleRow.java27 private final Location mTmpLocation = new Location(0); field in SingleRow
36 return mTmpLocation; in getLocation()
/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java340 final int[] mTmpLocation = new int[2]; field in InputMethodService
1225 int[] loc = mTmpLocation; in onComputeInsets()
/frameworks/base/core/java/android/view/
DViewRootImpl.java231 final int[] mTmpLocation = new int[2]; field in ViewRootImpl
2220 host.getLocationInWindow(mTmpLocation); in performTraversals()
2221 mTransparentRegion.set(mTmpLocation[0], mTmpLocation[1], in performTraversals()
2222 mTmpLocation[0] + host.mRight - host.mLeft, in performTraversals()
2223 mTmpLocation[1] + host.mBottom - host.mTop); in performTraversals()
DView.java25450 final int[] mTmpLocation = new int[2];
26282 getLocationInWindow(mAttachInfo.mTmpLocation);
26283 return mAttachInfo.mTmpLocation[0] == insets.getStableInsetLeft()
26284 && mAttachInfo.mTmpLocation[1] == insets.getStableInsetTop();