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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimator.cpp 56 float& currentPos = (orientation == HorizontalScrollbar) ? m_currentPosX : m_currentPosY;
57 float newPos = clampScrollPosition(orientation, currentPos + step * delta);
58 if (currentPos == newPos)
60 currentPos = newPos;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Gradient_Delegate.java 102 // from 0 to SIZE (100%), or currentPos in the loop below will never equal 1.0
109 float currentPos = (float)i/GRADIENT_SIZE;
110 while (currentPos > mPositions[nextPos]) {
114 float percent = (currentPos - mPositions[prevPos]) /
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMarquee.cpp 307 int currentPos = (isHorizontal() ? layer()->scrollableArea()->scrollXOffset() : layer()->scrollableArea()->scrollYOffset());
308 newPos = currentPos + (addIncrement ? increment : -increment);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeClientImpl.cpp 167 float WebScrollbarThemeClientImpl::currentPos() const
  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 359 UInt64 currentPos;
360 if (!File.Seek(0, FILE_CURRENT, currentPos))
364 result = result && File.Seek(currentPos, currentPos2);
  /external/javassist/src/main/javassist/expr/
Expr.java 45 int currentPos;
58 currentPos = pos;
138 int pos = currentPos;
186 return currentPos;
195 return thisMethod.getLineNumber(currentPos);
319 oldIterator.move(currentPos);
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 175 UInt64 currentPos = (nowPos64 + bufferPos);
176 while (subStreamEndPos < currentPos)
206 UInt64 dest64 = (currentPos + 5) + Int64(Int32(src));
  /frameworks/base/core/java/android/bluetooth/le/
ScanRecord.java 180 int currentPos = 0;
190 while (currentPos < scanRecord.length) {
192 int length = scanRecord[currentPos++] & 0xFF;
199 int fieldType = scanRecord[currentPos++] & 0xFF;
202 advertiseFlag = scanRecord[currentPos] & 0xFF;
206 parseServiceUuid(scanRecord, currentPos,
211 parseServiceUuid(scanRecord, currentPos, dataLength,
216 parseServiceUuid(scanRecord, currentPos, dataLength,
222 extractBytes(scanRecord, currentPos, dataLength));
225 txPowerLevel = scanRecord[currentPos];
    [all...]
  /frameworks/base/libs/hwui/
GradientCache.cpp 264 int currentPos = 1;
271 if (pos > positions[currentPos]) {
273 startPos = positions[currentPos];
275 currentPos++;
277 (this->*split)(colors[currentPos], end);
278 distance = positions[currentPos] - startPos;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v2/
patricia_trie_policy.cpp 154 int currentPos = pos;
157 ::readChildrenPositionAndAdvancePosition(mDictRoot, flags, &currentPos);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ucbuf.c 40 UChar* currentPos;
173 if(buf->currentPos<buf->bufLimit){
174 offset = (int32_t)(buf->bufLimit-buf->currentPos);
175 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar));
310 buf->currentPos = pTarget;
327 if(buf->currentPos>=buf->bufLimit){
337 return *(buf->currentPos++);
347 if(buf->currentPos+1>=buf->bufLimit){
356 if(UTF_IS_LEAD(*(buf->currentPos))){
357 retVal=UTF16_GET_PAIR_VALUE(buf->currentPos[0],buf->currentPos[1])
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.c 41 UChar* currentPos;
174 if(buf->currentPos<buf->bufLimit){
175 offset = (int32_t)(buf->bufLimit-buf->currentPos);
176 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar));
311 buf->currentPos = pTarget;
328 if(buf->currentPos>=buf->bufLimit){
338 return *(buf->currentPos++);
348 if(buf->currentPos+1>=buf->bufLimit){
357 if(U16_IS_LEAD(*(buf->currentPos))){
358 retVal=U16_GET_SUPPLEMENTARY(buf->currentPos[0],buf->currentPos[1])
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 78 protected Stack<int> currentPos = new Stack<int>();
152 currentPos.Push(pos);
175 descriptor.pos = currentPos.Peek();
657 currentPos.Peek());
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 78 protected Stack<int> currentPos = new Stack<int>();
162 currentPos.Push(pos);
188 descriptor.pos = currentPos.Peek();
717 currentPos.Peek());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 489 Position currentPos = *this;
490 while (!currentPos.atStartOfTree()) {
491 currentPos = currentPos.previous();
493 if (currentPos.deprecatedNode()->rootEditableElement() != fromRootEditableElement)
497 if (currentPos.isCandidate())
498 return currentPos;
499 } else if (rendersInDifferentPosition(currentPos))
500 return currentPos;
568 PositionIterator currentPos = lastVisible
    [all...]
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 655 long currentPos = getFilePointer(), eof = length();
656 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos : count);
657 seek(currentPos + newCount);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
PlayerActivity.java 243 int currentPos = 0;
244 currentPos = mVideoView.getCurrentPosition();
245 updateSeekbar(currentPos, mDuration);
335 int currentPos = 0;
350 currentPos = mVideoView.getCurrentPosition();
351 currentPos -= delta;
352 if (currentPos > 0)
353 play(currentPos);
356 currentPos = mVideoView.getCurrentPosition();
357 currentPos += delta
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 133 protected Stack<Integer> currentPos = new Stack();
210 currentPos.push(pos);
231 descriptor.pos = (Integer)currentPos.peek();
728 currentPos.peek());
  /frameworks/rs/
rsFont.cpp 678 float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert;
689 (*currentPos++) = x1;
690 (*currentPos++) = y1;
691 (*currentPos++) = z1;
692 (*currentPos++) = 0;
693 (*currentPos++) = u1;
694 (*currentPos++) = v1;
696 (*currentPos++) = x2;
697 (*currentPos++) = y2;
698 (*currentPos++) = z2
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 670 Position currentPos = mPositions.getLast();
671 mCurrentString.setLength(currentPos.length);
674 if (currentPos.pos.hasNext()) {
675 final PtNode currentPtNode = currentPos.pos.next();
676 currentPos.length = mCurrentString.length();
681 currentPos = new Position(currentPtNode.mChildren.mData);
682 currentPos.length = mCurrentString.length();
683 mPositions.addLast(currentPos);
693 currentPos = mPositions.getLast();
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 38 protected int currentPos;
51 currentPos = mark = 0;
68 currentPos = index;
170 public boolean hasNext() { return currentPos < endPos; }
183 int pos = currentPos;
184 currentPos = nextOpcode(bytecode, pos);
197 return currentPos;
319 return insert0(currentPos, code, false);
392 return insert0(currentPos, code, true);
455 // currentPos will change
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-cipher-1.7.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/plexus/plexus-cipher/1.7/
plexus-cipher-1.7.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/plexus/plexus-cipher/1.4/
plexus-cipher-1.4.jar 
  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientEditTextView.java 502 int currentPos = location[1] + height;
507 if (currentPos > desiredPos) {
508 mScrollView.scrollBy(0, currentPos - desiredPos);
    [all...]

Completed in 859 milliseconds

1 2