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

  /external/webkit/Source/WebCore/html/
HTMLFormCollection.h 61 mutable int currentPos;
  /external/webkit/Source/WebCore/platform/
ScrollAnimator.cpp 64 float* currentPos = (orientation == HorizontalScrollbar) ? &m_currentPosX : &m_currentPosY;
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;
Scrollbar.h 64 float currentPos() const { return m_currentPos; }
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Gradient_Delegate.java 101 // from 0 to SIZE (100%), or currentPos in the loop below will never equal 1.0
108 float currentPos = (float)i/GRADIENT_SIZE;
109 while (currentPos > mPositions[nextPos]) {
113 float percent = (currentPos - mPositions[prevPos]) /
  /external/webkit/Source/WebCore/platform/text/brew/
TextBreakIteratorBrew.cpp 57 currentPos = 0;
64 currentPos = position;
69 currentPos = position;
73 int currentPos;
104 currentPos = 0;
105 return currentPos;
110 if (currentPos == length) {
111 currentPos = -1;
112 return currentPos;
115 while (currentPos < length)
    [all...]
  /external/webkit/Source/WebCore/platform/text/wince/
TextBreakIteratorWinCE.cpp 57 currentPos = 0;
61 currentPos = 0;
62 return currentPos;
66 currentPos = length;
67 return currentPos;
73 currentPos = position;
78 currentPos = position;
82 int currentPos;
109 if (currentPos == length) {
110 currentPos = -1
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderMarquee.cpp 297 int currentPos = (isHorizontal() ? m_layer->scrollXOffset() : m_layer->scrollYOffset());
298 newPos = currentPos + (addIncrement ? increment : -increment);
  /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);
  /packages/inputmethods/LatinIME/native/src/
binary_format.h 96 int currentPos = pos;
97 int32_t character = dict[currentPos++];
100 currentPos += MULTIPLE_BYTE_CHARACTER_ADDITIONAL_SIZE;
102 character = dict[currentPos++];
104 return currentPos;
122 int currentPos = pos;
123 uint8_t flags = getFlagsAndForwardPointer(dict, &currentPos);
125 currentPos += attributeAddressSize(flags);
126 flags = getFlagsAndForwardPointer(dict, &currentPos);
128 currentPos += attributeAddressSize(flags)
    [all...]
  /external/icu4c/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/webkit/Source/WebCore/dom/
Position.cpp 425 Position currentPos = *this;
426 while (!currentPos.atStartOfTree()) {
427 currentPos = currentPos.previous();
429 if (currentPos.deprecatedNode()->rootEditableElement() != fromRootEditableElement)
433 if (currentPos.isCandidate())
434 return currentPos;
435 } else if (rendersInDifferentPosition(currentPos))
436 return currentPos;
453 Position currentPos = *this
    [all...]
  /frameworks/base/libs/rs/
rsFont.cpp 655 float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert;
670 (*currentPos++) = x1;
671 (*currentPos++) = y1;
672 (*currentPos++) = z1;
673 (*currentPos++) = u1;
674 (*currentPos++) = v1;
676 (*currentPos++) = x2;
677 (*currentPos++) = y2;
678 (*currentPos++) = z2;
679 (*currentPos++) = u2
    [all...]
  /frameworks/media/libvideoeditor/vss/3gpwriter/inc/
M4MP4W_Types.h 203 M4OSA_UInt32 currentPos; /* Init to 0 */
245 M4OSA_UInt32 currentPos ; /* Init to 0*/
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 659 long currentPos = getFilePointer(), eof = length();
660 int newCount = (int) ((currentPos + count > eof) ? eof - currentPos : count);
661 seek(currentPos + newCount);
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
FusionDictionary.java 561 Position currentPos = mPositions.getLast();
562 mCurrentString.setLength(mCurrentString.length() - currentPos.length);
565 if (currentPos.pos.hasNext()) {
566 final CharGroup currentGroup = currentPos.pos.next();
567 currentPos.length = currentGroup.mChars.length;
571 currentPos = new Position(currentGroup.mChildren.mData);
572 mPositions.addLast(currentPos);
579 currentPos = mPositions.getLast();
  /external/antlr/src/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/base/libs/hwui/
FontRenderer.cpp 624 float* currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert;
626 (*currentPos++) = x1;
627 (*currentPos++) = y1;
628 (*currentPos++) = z1;
629 (*currentPos++) = u1;
630 (*currentPos++) = v1;
632 (*currentPos++) = x2;
633 (*currentPos++) = y2;
634 (*currentPos++) = z2;
635 (*currentPos++) = u2
    [all...]
  /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...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java     [all...]

Completed in 3383 milliseconds