Home
last modified time | relevance | path

Searched refs:newPos (Results 1 – 7 of 7) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
DEmojiPalettesView.java253 final Pair<Integer, Integer> newPos = in onPageSelected() local
255 setCurrentCategoryId(newPos.first /* categoryId */, false /* force */); in onPageSelected()
256 mEmojiCategory.setCurrentCategoryPageId(newPos.second /* categoryPageId */); in onPageSelected()
270 final Pair<Integer, Integer> newPos = in onPageScrolled() local
272 final int newCategoryId = newPos.first; in onPageScrolled()
279 newCategorySize, newPos.second, positionOffset); in onPageScrolled()
/packages/modules/StatsD/statsd/src/matchers/
Dmatcher_util.cpp177 int newPos = values[i].mField.getPosAtDepth(depth); in matchesSimple() local
178 if (newPos != currentPos) { in matchesSimple()
181 currentPos = newPos; in matchesSimple()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
DMainPanel.java132 private boolean isRightAnimation(int newPos) { in isRightAnimation() argument
133 if (newPos < mCurrentSelected) { in isRightAnimation()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictDecoderUtils.java93 public void position(int newPos) { in position() argument
94 mBuffer.position(newPos); in position()
DAbstractDictDecoder.java92 public void setPosition(int newPos) { in setPosition() argument
DDictDecoder.java99 public void setPosition(final int newPos); in setPosition() argument
/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java482 int newPos = mScroller.getCurrX(); in computeScrollHelper() local
483 if (oldPos != newPos) { in computeScrollHelper()
488 if (newPos < mMinScroll && oldPos >= mMinScroll) { in computeScrollHelper()
491 } else if (newPos > mMaxScroll && oldPos <= mMaxScroll) { in computeScrollHelper()
501 if (newPos == finalPos && mEdgeGlowLeft.isFinished() && mEdgeGlowRight.isFinished()) { in computeScrollHelper()