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

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.cpp 193 int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()->thumbPosition(scrollbar);
195 return scrollbar->pressedPos() >= thumbPos && scrollbar->pressedPos() < thumbPos + thumbLength;
294 int thumbPos = theme()->thumbPosition(this);
298 delta = std::min(trackLen - thumbLen - thumbPos, delta);
300 delta = std::max(-thumbPos, delta);
305 float newPosition = static_cast<float>(thumbPos + delta) * (maxPos - minPos) / (trackLen - thumbLen) + minPos;
ScrollbarTheme.cpp 326 int thumbPos = thumbPosition(scrollbar);
328 thumbRect = IntRect(trackRect.x() + thumbPos, trackRect.y(), thumbLength(scrollbar), scrollbar->height());
329 beforeThumbRect = IntRect(trackRect.x(), trackRect.y(), thumbPos + thumbRect.width() / 2, trackRect.height());
332 thumbRect = IntRect(trackRect.x(), trackRect.y() + thumbPos, scrollbar->width(), thumbLength(scrollbar));
333 beforeThumbRect = IntRect(trackRect.x(), trackRect.y(), trackRect.width(), thumbPos + thumbRect.height() / 2);
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 323 int thumbPos = (int) ((1.0f - scale) * available);
335 thumb.setBounds(leftBound, thumbPos, rightBound, thumbPos + thumbHeight);
337 int thumbPos = (int) (scale * available);
349 thumb.setBounds(thumbPos, topBound, thumbPos + thumbWidth, bottomBound);
  /packages/apps/Camera/src/com/android/camera/ui/
Switch.java 404 final int thumbPos = (int) (mThumbPosition + 0.5f);
405 int thumbLeft = switchInnerLeft - mTempRect.left + thumbPos;
406 int thumbRight = switchInnerLeft + thumbPos + mThumbWidth + mTempRect.right;
  /packages/apps/Camera2/src/com/android/camera/ui/
Switch.java 395 final int thumbPos = (int) (mThumbPosition + 0.5f);
396 int thumbLeft = switchInnerLeft - mTempRect.left + thumbPos;
397 int thumbRight = switchInnerLeft + thumbPos + mThumbWidth + mTempRect.right;
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 458 final int thumbPos = (int) (scale * available + 0.5f);
470 final int left = (isLayoutRtl() && mMirrorForRtl) ? available - thumbPos : thumbPos;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 231 milliseconds