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

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSingleRow.java25 private final Location mTmpLocation = new Location(0); field in class:SingleRow
35 return mTmpLocation;
/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/v7/appcompat/src/android/support/v7/widget/
H A DForwardingListener.java70 private final int[] mTmpLocation = new int[2]; field in class:ForwardingListener
329 final int[] loc = mTmpLocation;
340 final int[] loc = mTmpLocation;
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java327 final int[] mTmpLocation = new int[2]; field in class:InputMethodService
1193 int[] loc = mTmpLocation;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java173 final int[] mTmpLocation = new int[2]; field in class:ViewRootImpl
2076 host.getLocationInWindow(mTmpLocation);
2077 mTransparentRegion.set(mTmpLocation[0], mTmpLocation[1],
2078 mTmpLocation[0] + host.mRight - host.mLeft,
2079 mTmpLocation[1] + host.mBottom - host.mTop);
H A DView.java23073 final int[] mTmpLocation = new int[2]; field in class:View.AttachInfo
23930 getLocationOnScreen(mAttachInfo.mTmpLocation);
23931 return mAttachInfo.mTmpLocation[0] == insets.getStableInsetLeft()
23932 && mAttachInfo.mTmpLocation[1] == insets.getStableInsetTop();

Completed in 317 milliseconds