HomeSort by relevance Sort by last modified time
    Searched defs:mTotalHeight (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
SwipableOverlayView.java 127 private int mTotalHeight;
207 mTotalHeight = getMeasuredHeight();
210 mTotalHeight += params.topMargin + params.bottomMargin;
330 boolean isVisibleInitially = mInitialTranslationY < mTotalHeight;
331 float percentageVisible = 1.0f - (getTranslationY() / mTotalHeight);
343 boolean isNearTopOfPage = finalOffsetY < (mTotalHeight * FULL_THRESHOLD);
364 boolean isNearTopOfPage = finalOffsetY < (mTotalHeight * FULL_THRESHOLD);
365 boolean isVisibleEnough = getTranslationY() < mTotalHeight * FULL_THRESHOLD;
379 translation = Math.max(0.0f, Math.min(mTotalHeight, translation));
397 setTranslationY(mTotalHeight);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 112 private int mTotalHeight;
609 mTotalHeight = y + mDefaultHeight;
689 return mTotalHeight;
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 129 private int mTotalHeight;
597 mTotalHeight = y + mDefaultHeight;
655 return mTotalHeight;
816 mTotalHeight = y - mDefaultVerticalGap;

Completed in 51 milliseconds