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/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackStateAnimator.java91 private int[] mTmpLocation = new int[2]; field in StackStateAnimator
463 icon.getLocationOnScreen(mTmpLocation); in processAnimationEvents()
464 float iconPosition = mTmpLocation[0] - icon.getTranslationX() in processAnimationEvents()
466 mHostLayout.getLocationOnScreen(mTmpLocation); in processAnimationEvents()
467 targetLocation = iconPosition - mTmpLocation[0]; in processAnimationEvents()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSFragment.java96 private int[] mTmpLocation = new int[2]; field in QSFragment
446 mContainer.getLocationOnScreen(mTmpLocation); in updateMediaPositions()
447 float absoluteBottomPosition = mTmpLocation[1] + mContainer.getHeight(); in updateMediaPositions()
/frameworks/base/core/java/android/inputmethodservice/
DInputMethodService.java445 final int[] mTmpLocation = new int[2]; field in InputMethodService
1690 int[] loc = mTmpLocation; in onComputeInsets()
/frameworks/base/core/java/android/view/
DViewRootImpl.java359 final int[] mTmpLocation = new int[2]; field in ViewRootImpl
2946 host.getLocationInWindow(mTmpLocation); in performTraversals()
2947 mTransparentRegion.set(mTmpLocation[0], mTmpLocation[1], in performTraversals()
2948 mTmpLocation[0] + host.mRight - host.mLeft, in performTraversals()
2949 mTmpLocation[1] + host.mBottom - host.mTop); in performTraversals()
DView.java29032 final int[] mTmpLocation = new int[2]; field in View.AttachInfo
30102 getLocationInWindow(mAttachInfo.mTmpLocation); in shouldDrawRoundScrollbar()
30103 return mAttachInfo.mTmpLocation[0] == insets.getStableInsetLeft() in shouldDrawRoundScrollbar()
30104 && mAttachInfo.mTmpLocation[1] == insets.getStableInsetTop(); in shouldDrawRoundScrollbar()