HomeSort by relevance Sort by last modified time
    Searched defs:newPos (Results 1 - 25 of 41) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/
ScrollAnimator.cpp 65 float newPos = std::max(std::min(*currentPos + (step * multiplier), static_cast<float>(m_scrollableArea->scrollSize(orientation))), 0.0f);
66 if (*currentPos == newPos)
68 *currentPos = newPos;
ScrollAnimatorWin.cpp 85 float newPos = std::max(std::min(data->m_desiredPos + (step * multiplier), static_cast<float>(m_scrollableArea->scrollSize(orientation))), 0.0f);
86 if (newPos == data->m_desiredPos)
88 data->m_desiredPos = newPos;
135 float animationStep = fabs(newPos - *data->m_currentPos);
  /frameworks/base/core/java/android/webkit/
WebBackForwardList.java 114 final int newPos = mCurrentIndex;
115 if (newPos != size) {
116 for (int i = size - 1; i >= newPos; i--) {
  /frameworks/wilhelm/tests/listening/
seekTorture.c 124 SLmillisecond newPos = duration * ((rand() & 65535) / 65536.0);
125 printf("seek %u\n", (unsigned) newPos);
126 result = (*playerSeek)->SetPosition(playerSeek, newPos, SL_SEEKMODE_ACCURATE);
131 printf("now %u\n", (unsigned) newPos);
  /external/webkit/Source/WebCore/rendering/
RenderMarquee.cpp 282 int newPos;
284 newPos = m_end;
298 newPos = currentPos + (addIncrement ? increment : -increment);
300 newPos = min(newPos, endPoint);
302 newPos = max(newPos, endPoint);
305 if (newPos == endPoint) {
314 m_layer->scrollToXOffset(newPos);
316 m_layer->scrollToYOffset(newPos);
    [all...]
  /external/javassist/src/main/javassist/expr/
NewExpr.java 28 int newPos;
37 newPos = np;
141 int op = iterator.byteAt(newPos + 3);
145 && iterator.byteAt(newPos + 4) == Opcode.SWAP)
165 int pos = newPos;
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_file.c 632 off_t newPos;
656 newPos = lseek( (int)handle, (off_t)value, SEEK_SET);
657 if ( newPos == (off_t)-1 )
664 if ( newPos > sbuf.st_size )
666 availableSize -= (int)(newPos - sbuf.st_size);
  /packages/inputmethods/LatinIME/native/jni/src/
binary_format.h 237 int newPos = pos;
238 newPos = skipShortcuts(dict, flags, newPos);
239 newPos = skipBigrams(dict, flags, newPos);
240 return newPos;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 116 private ObjectAnimator createTranslationAnimation(View v, float newPos) {
118 mSwipeDirection == X ? "translationX" : "translationY", newPos);
262 float newPos;
268 newPos = -getSize(animView);
270 newPos = getSize(animView);
275 (int) (Math.abs(newPos - getTranslation(animView)) * 1000f / Math
282 ObjectAnimator anim = createTranslationAnimation(animView, newPos);
  /external/icu4c/i18n/
tmutfmt.cpp 244 int32_t newPos = -1;
314 newPos = pos.getIndex();
348 pos.setIndex(newPos);
    [all...]
  /frameworks/base/core/java/android/os/
Bundle.java     [all...]
  /frameworks/base/core/java/android/widget/
AdapterView.java     [all...]
Gallery.java 587 int newPos = mFirstPosition + newSelectedChildIndex;
589 if (newPos != mSelectedPosition) {
590 setSelectedPositionInt(newPos);
591 setNextSelectedPositionInt(newPos);
    [all...]
Switch.java 613 float newPos = Math.max(0,
615 if (newPos != mThumbPosition) {
616 mThumbPosition = newPos;
AbsListView.java     [all...]
  /packages/apps/Music/src/com/android/music/
VerticalTextSpinner.java 91 VerticalTextSpinner spinner, int oldPos, int newPos, String[] items);
351 int newPos = getNewIndex(1);
352 if (newPos >= 0) {
353 mCurrentSelectedPos = newPos;
358 if (newPos < 0 || ((newPos >= mTextList.length - 1) && !mWrapAround)) {
364 int newPos = getNewIndex(-1);
365 if (newPos >= 0) {
366 mCurrentSelectedPos = newPos;
371 if (newPos < 0 || (newPos == 0 && !mWrapAround))
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Mesh.java 274 VertexBuffer newPos = oldPos.clone();
276 clone.setBuffer(newPos);
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 711 int newPos = cygwinPath.find('/', oldPos);
713 if (newPos == -1) {
725 wstring pathComponent = cygwinPath.substr(oldPos, newPos - oldPos);
732 oldPos = newPos + 1;
    [all...]
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/app/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib2/libs/
android-support-v4.jar 

Completed in 2486 milliseconds

1 2