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

1 2

  /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 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/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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
SHA1.java 21 private int currentPos;
42 currentPos = 0;
58 int idx = currentPos >> 2;
60 switch (currentPos & 3)
65 currentPos += 4;
67 if (currentPos == 64)
70 currentPos = 0;
76 currentPos += 3;
78 if (currentPos == 64)
81 currentPos = 0
    [all...]
  /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);
  /frameworks/base/libs/hwui/
GradientCache.cpp 183 int currentPos = 1;
201 if (pos > positions[currentPos]) {
206 start = positions[currentPos];
208 currentPos++;
210 endA = (colors[currentPos] >> 24) & 0xff;
211 endR = (colors[currentPos] >> 16) & 0xff;
212 endG = (colors[currentPos] >> 8) & 0xff;
213 endB = (colors[currentPos] >> 0) & 0xff;
214 distance = positions[currentPos] - start;
FontRenderer.cpp 401 float* currentPos = mTextMesh + mCurrentQuadIndex * vertsPerQuad * floatsPerVert;
403 (*currentPos++) = x1;
404 (*currentPos++) = y1;
405 (*currentPos++) = u1;
406 (*currentPos++) = v1;
408 (*currentPos++) = x2;
409 (*currentPos++) = y2;
410 (*currentPos++) = u2;
411 (*currentPos++) = v2;
413 (*currentPos++) = x3
    [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/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/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/av/libvideoeditor/vss/3gpwriter/inc/
M4MP4W_Types.h 203 M4OSA_UInt32 currentPos; /* Init to 0 */
245 M4OSA_UInt32 currentPos ; /* Init to 0*/
  /frameworks/rs/
rsFont.cpp 675 float *currentPos = mTextMeshPtr + mCurrentQuadIndex * vertsPerQuad * floatsPerVert;
686 (*currentPos++) = x1;
687 (*currentPos++) = y1;
688 (*currentPos++) = z1;
689 (*currentPos++) = 0;
690 (*currentPos++) = u1;
691 (*currentPos++) = v1;
693 (*currentPos++) = x2;
694 (*currentPos++) = y2;
695 (*currentPos++) = z2
    [all...]
  /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/native/jni/src/
binary_format.h 204 int currentPos = pos;
205 int32_t character = dict[currentPos++];
208 currentPos += MULTIPLE_BYTE_CHARACTER_ADDITIONAL_SIZE;
210 character = dict[currentPos++];
212 return currentPos;
230 int currentPos = pos;
231 uint8_t flags = BinaryFormat::getFlagsAndForwardPointer(dict, &currentPos);
233 currentPos += attributeAddressSize(flags);
234 flags = BinaryFormat::getFlagsAndForwardPointer(dict, &currentPos);
236 currentPos += attributeAddressSize(flags)
    [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());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
PanelController.java 424 int currentPos = -1;
426 currentPos = current.getPosition();
428 ViewPropertyAnimator anim1 = panel.select(currentPos, HORIZONTAL_MOVE);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java     [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...]
  /external/zxing/core/
core.jar 

Completed in 1582 milliseconds

1 2