HomeSort by relevance Sort by last modified time
    Searched refs:mTotalWidth (Results 1 - 4 of 4) sorted by null

  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 63 private int mTotalWidth;
108 if (sx + getWidth() > mTotalWidth) {
133 return mTotalWidth;
161 mTotalWidth = 0;
214 mTotalWidth = x;
  /packages/apps/Gallery3D/src/com/cooliris/media/
TimeBar.java 49 private float mTotalWidth = 0f;
180 float markerX = (mTotalWidth == 0.0f) ? 0.0f : marker.x / mTotalWidth;
288 mTotalWidth = dx - MARKER_SPACING_PIXELS * App.PIXEL_DENSITY;
310 * (mTotalWidth - mKnob.getWidth()); }
313 * Math.min(1f, knobX / (mTotalWidth - mKnob.getWidth()))); }
316 * (mTotalWidth - mWidth);// - (1f - 2f * position) * MARKER_SPACING_PIXELS;
326 float centered = positionInv * -halfWidth + position * (mTotalWidth - halfWidth);
332 if (mTotalWidth == 0)
334 return ((scroll + halfWidth) / (mTotalWidth));
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CandidateView.java 87 private int mTotalWidth;
178 if (distanceX > 0 && scrollX + width > mTotalWidth) {
199 return mTotalWidth;
211 mTotalWidth = 0;
286 mTotalWidth = x;
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 118 private int mTotalWidth;
551 mTotalWidth = 0;
576 if (x > mTotalWidth) {
577 mTotalWidth = x;
632 return mTotalWidth;
753 if (x > mTotalWidth) {
754 mTotalWidth = x;

Completed in 80 milliseconds