Searched defs:mTmpLocation (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DAssistVisualizer.java70 final int[] mTmpLocation = new int[2]; field in class: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/v17/leanback/src/android/support/v17/leanback/widget/
H A DSingleRow.java27 private final Location mTmpLocation = new Location(0); field in class:SingleRow
36 return mTmpLocation;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DForwardingListener.java65 private final int[] mTmpLocation = new int[2]; field in class:ForwardingListener
297 final int[] loc = mTmpLocation;
308 final int[] loc = mTmpLocation;
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java340 final int[] mTmpLocation = new int[2]; field in class:InputMethodService
1225 int[] loc = mTmpLocation;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java231 final int[] mTmpLocation = new int[2]; field in class:ViewRootImpl
2220 host.getLocationInWindow(mTmpLocation);
2221 mTransparentRegion.set(mTmpLocation[0], mTmpLocation[1],
2222 mTmpLocation[0] + host.mRight - host.mLeft,
2223 mTmpLocation[1] + host.mBottom - host.mTop);
H A DView.java25450 final int[] mTmpLocation = new int[2]; field in class:View.AttachInfo
26282 getLocationInWindow(mAttachInfo.mTmpLocation);
26283 return mAttachInfo.mTmpLocation[0] == insets.getStableInsetLeft()
26284 && mAttachInfo.mTmpLocation[1] == insets.getStableInsetTop();

Completed in 539 milliseconds