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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMarquee.cpp 290 int newPos;
292 newPos = m_end;
306 newPos = currentPos + (addIncrement ? increment : -increment);
308 newPos = std::min(newPos, endPoint);
310 newPos = std::max(newPos, endPoint);
313 if (newPos == endPoint) {
322 layer()->scrollableArea()->scrollToXOffset(newPos);
324 layer()->scrollableArea()->scrollToYOffset(newPos);
    [all...]
  /external/lzma/CPP/7zip/Common/
LimitedStreams.cpp 34 UInt64 newPos = _startOffset + _virtPos;
35 if (newPos != _physPos)
37 _physPos = newPos;
75 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock;
76 if (newPos != _physPos)
78 _physPos = newPos;
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
FragmentStatePagerAdapter2.java 138 final int newPos = getItemPosition(f);
140 if (newPos != POSITION_NONE) {
141 final int pos = (newPos >= 0) ? newPos : oldPos;
  /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/support/v7/appcompat/src/android/support/v7/internal/widget/
AdapterViewCompat.java 927 int newPos;
937 newPos = findSyncPosition();
938 if (newPos >= 0) {
940 int selectablePos = lookForSelectablePosition(newPos, true);
941 if (selectablePos == newPos) {
943 setNextSelectedPositionInt(newPos);
950 newPos = getSelectedItemPosition();
953 if (newPos >= count) {
954 newPos = count - 1;
956 if (newPos < 0)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/list/
SwipeHelper.java 137 private ObjectAnimator createTranslationAnimation(View v, float newPos) {
139 mSwipeDirection == X ? "translationX" : "translationY", newPos);
143 private ObjectAnimator createDismissAnimation(View v, float newPos, int duration) {
144 ObjectAnimator anim = createTranslationAnimation(v, newPos);
276 float newPos = determinePos(animView, velocity);
277 int duration = determineDuration(animView, newPos, velocity);
280 ObjectAnimator anim = createDismissAnimation(animView, newPos, duration);
300 private int determineDuration(View animView, float newPos, float velocity) {
305 (int) (Math.abs(newPos - animView.getTranslationX()) * 1000f / Math
314 float newPos = 0
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeHelper.java 115 private ObjectAnimator createTranslationAnimation(View v, float newPos) {
117 mSwipeDirection == X ? "translationX" : "translationY", newPos);
121 private ObjectAnimator createDismissAnimation(View v, float newPos, int duration) {
122 ObjectAnimator anim = createTranslationAnimation(v, newPos);
269 float newPos = determinePos(animView, velocity);
270 int duration = determineDuration(animView, newPos, velocity);
273 ObjectAnimator anim = createDismissAnimation(animView, newPos, duration);
293 private static int determineDuration(View animView, float newPos, float velocity) {
298 (int) (Math.abs(newPos - animView.getTranslationX()) * 1000f / Math
307 final float newPos;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimator.cpp 55 float newPos = clampScrollPosition(orientation, currentPos + step * delta);
56 if (currentPos == newPos)
58 currentPos = newPos;
  /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);
  /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/pdfium/core/src/fxcrt/
fxcrt_windows.cpp 120 LARGE_INTEGER newPos = {0, 0};
121 if (!::SetFilePointerEx(m_hFile, dist, &newPos, FILE_CURRENT)) {
124 return (FX_FILESIZE)newPos.QuadPart;
133 LARGE_INTEGER newPos = {0, 0};
134 if (!::SetFilePointerEx(m_hFile, dist, &newPos, FILE_BEGIN)) {
137 return (FX_FILESIZE)newPos.QuadPart;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
SwipeHelper.java 123 private ObjectAnimator createTranslationAnimation(View v, float newPos) {
125 mSwipeDirection == X ? View.TRANSLATION_X : View.TRANSLATION_Y, newPos);
222 float newPos;
227 newPos = -getSize(view);
229 newPos = getSize(view);
234 (int) (Math.abs(newPos - getTranslation(view)) *
240 ValueAnimator anim = createTranslationAnimation(view, newPos);
  /frameworks/base/core/java/android/widget/
AdapterView.java     [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_table.js 51 * @param {Array.<number>} newPos Positions of each column dividers.
53 FileTableColumnModel.prototype.applyColumnPositions_ = function(newPos) {
55 for (var i = 0; i < newPos.length - 2; i++) {
56 if (newPos[i + 1] - newPos[i] < FileTableColumnModel.MIN_WIDTH_) {
57 newPos[i + 1] = newPos[i] + FileTableColumnModel.MIN_WIDTH_;
60 for (var i = newPos.length - 1; i >= 2; i--) {
61 if (newPos[i] - newPos[i - 1] < FileTableColumnModel.MIN_WIDTH_)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
FragmentStatePagerAdapter2.java 221 final int newPos = getItemPosition(f);
223 if (newPos != POSITION_NONE) {
224 final int pos = (newPos >= 0) ? newPos : oldPos;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
AbstractDictDecoder.java 92 public void setPosition(int newPos) {
DictDecoder.java 97 * @param newPos the new position
99 public void setPosition(final int newPos);
BinaryDictDecoderUtils.java 88 public void position(int newPos) {
89 mBuffer.position(newPos);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 127 private ObjectAnimator createTranslationAnimation(View v, float newPos) {
129 mSwipeDirection == X ? "translationX" : "translationY", newPos);
313 float newPos;
322 newPos = -getSize(animView);
324 newPos = getSize(animView);
331 (int) (Math.abs(newPos - getTranslation(animView)) * 1000f / Math
342 ObjectAnimator anim = createTranslationAnimation(animView, newPos);
  /external/zlib/src/contrib/minizip/
iowin32.c 240 static BOOL MySetFilePointerEx(HANDLE hFile, LARGE_INTEGER pos, LARGE_INTEGER *newPos, DWORD dwMoveMethod)
243 return SetFilePointerEx(hFile, pos, newPos, dwMoveMethod);
251 if ((newPos != NULL) && (fOk))
253 newPos->LowPart = dwNewPos;
254 newPos->HighPart = lHigh;
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 734 float newPos = std::max<float>(std::min<float>(currentPos + (step * delta), m_scrollableArea->maximumScrollPosition(orientation)), m_scrollableArea->minimumScrollPosition(orientation));
735 if (currentPos == newPos)
741 newPoint = orientation == HorizontalScrollbar ? NSMakePoint(newPos, targetOrigin.y) : NSMakePoint(targetOrigin.x, newPos);
743 newPoint = orientation == HorizontalScrollbar ? NSMakePoint(newPos, m_currentPosY) : NSMakePoint(m_currentPosX, newPos);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiPalettesView.java 253 final Pair<Integer, Integer> newPos =
255 setCurrentCategoryId(newPos.first /* categoryId */, false /* force */);
256 mEmojiCategory.setCurrentCategoryPageId(newPos.second /* categoryPageId */);
270 final Pair<Integer, Integer> newPos =
272 final int newCategoryId = newPos.first;
279 newCategorySize, newPos.second, positionOffset);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
MainPanel.java 132 private boolean isRightAnimation(int newPos) {
133 if (newPos < mCurrentSelected) {
  /external/fonttools/Lib/fontTools/ttLib/tables/
ttProgram.py 198 newPos = m.regs[0][1]
199 assert newPos >= pos
200 return newPos
  /packages/apps/Camera/src/com/android/camera/ui/
Switch.java 261 float newPos = Math.max(0,
263 if (newPos != mThumbPosition) {
264 mThumbPosition = newPos;

Completed in 543 milliseconds

1 2 3 4