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

1 2

  /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/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...]
  /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/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...]
  /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;
ScrollAnimatorWin.h 51 PerAxisData(ScrollAnimatorWin* parent, float* currentPos);
ScrollAnimatorWin.cpp 53 ScrollAnimatorWin::PerAxisData::PerAxisData(ScrollAnimatorWin* parent, float* currentPos)
54 : m_currentPos(currentPos)
  /external/javassist/src/main/javassist/expr/
NewArray.java 81 int atype = iterator.byteAt(currentPos + 1);
86 int index = iterator.u16bitAt(currentPos + 1);
127 int index = iterator.u16bitAt(currentPos + 1);
143 return iterator.byteAt(currentPos + 3);
175 int pos = currentPos;
182 index = iterator.byteAt(currentPos + 1); // atype
198 index = iterator.u16bitAt(currentPos + 1);
200 dim = iterator.byteAt(currentPos + 3);
MethodCall.java 35 int pos = currentPos;
86 int pos = currentPos;
148 return iterator.byteAt(currentPos) == INVOKESPECIAL
181 int pos = currentPos;
Expr.java 45 int currentPos;
58 currentPos = pos;
138 int pos = currentPos;
186 return currentPos;
195 return thisMethod.getLineNumber(currentPos);
319 oldIterator.move(currentPos);
NewExpr.java 44 int pos = currentPos;
105 int methodIndex = iterator.u16bitAt(currentPos + 1); // constructor
114 int index = iterator.u16bitAt(currentPos + 1);
134 int index = iterator.u16bitAt(currentPos + 1);
177 pos = currentPos;
Cast.java 65 int pos = currentPos;
92 int pos = currentPos;
Instanceof.java 68 int pos = currentPos;
95 int pos = currentPos;
FieldAccess.java 96 int index = iterator.u16bitAt(currentPos + 1);
104 int index = iterator.u16bitAt(currentPos + 1);
135 int index = iterator.u16bitAt(currentPos + 1);
152 int pos = currentPos;
  /external/webkit/Source/WebCore/accessibility/
AccessibilityScrollbar.cpp 92 return m_scrollbar->currentPos() / m_scrollbar->maximum();
  /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...]
  /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...]
  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk2.cpp 114 gtk_adjustment_set_value(adjustment, scrollbar->currentPos());
137 if ((BackButtonStartPart == part && scrollbar->currentPos())
138 || (BackButtonEndPart == part && scrollbar->currentPos())
139 || (ForwardButtonEndPart == part && scrollbar->currentPos() != scrollbar->maximum())
140 || (ForwardButtonStartPart == part && scrollbar->currentPos() != scrollbar->maximum())) {
ScrollbarThemeGtk3.cpp 127 if ((BackButtonStartPart == part && scrollbar->currentPos())
128 || (BackButtonEndPart == part && scrollbar->currentPos())
129 || (ForwardButtonEndPart == part && scrollbar->currentPos() != scrollbar->maximum())
130 || (ForwardButtonStartPart == part && scrollbar->currentPos() != scrollbar->maximum())) {
  /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]) /
  /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/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...]
  /external/webkit/Source/WebCore/platform/mac/
ScrollbarThemeMac.mm 433 if (scrollbar->currentPos() < 0) {
436 overhang = -scrollbar->currentPos();
437 } else if (scrollbar->visibleSize() + scrollbar->currentPos() > scrollbar->totalSize()) {
440 overhang = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize();
445 value = scrollbar->currentPos() / maximum;
476 if (scrollbar->currentPos() < 0) {
478 maximum = (scrollbar->totalSize() - scrollbar->currentPos()) - scrollbar->visibleSize();
480 } else if (scrollbar->visibleSize() + scrollbar->currentPos() > scrollbar->totalSize()) {
482 maximum = scrollbar->currentPos();
487 position = scrollbar->currentPos();
    [all...]

Completed in 1209 milliseconds

1 2