Searched defs:currentPos (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollAnimator.cpp54 float& currentPos = (orientation == HorizontalScrollbar) ? m_currentPosX : m_currentPosY; local
55 float newPos = clampScrollPosition(orientation, currentPos + step * delta);
56 if (currentPos == newPos)
58 currentPos = newPos;
/external/lzma/CPP/7zip/Common/
H A DFileStreams.cpp359 UInt64 currentPos; local
360 if (!File.Seek(0, FILE_CURRENT, currentPos))
364 result = result && File.Seek(currentPos, currentPos2);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMarquee.cpp305 int currentPos = (isHorizontal() ? layer()->scrollableArea()->scrollXOffset() : layer()->scrollableArea()->scrollYOffset()); local
306 newPos = currentPos + (addIncrement ? increment : -increment);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarThemeClientImpl.cpp165 float WebScrollbarThemeClientImpl::currentPos() const function in class:blink::WebScrollbarThemeClientImpl
/external/javassist/src/main/javassist/expr/
H A DExpr.java45 int currentPos; field in class:Expr
58 currentPos = pos;
138 int pos = currentPos;
186 return currentPos;
195 return thisMethod.getLineNumber(currentPos);
319 oldIterator.move(currentPos);
/external/lzma/CPP/7zip/Compress/
H A DBcj2Coder.cpp175 UInt64 currentPos = (nowPos64 + bufferPos); local
176 while (subStreamEndPos < currentPos)
206 UInt64 dest64 = (currentPos + 5) + Int64(Int32(src));
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ducbuf.c41 UChar* currentPos; member in struct:UCHARBUF
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[
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Ducbuf.c41 UChar* currentPos; member in struct:UCHARBUF
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[
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.cpp540 PositionIterator currentPos = lastVisible; local
544 for (; !currentPos.atStart(); currentPos.decrement()) {
545 Node* currentNode = currentPos.node();
571 lastVisible = currentPos;
576 if (isStreamer(currentPos))
577 lastVisible = currentPos;
581 if (endsOfNodeAreVisuallyDistinctPositions(currentNode) && currentPos.atStartOfNode())
586 if (currentPos.atEndOfNode())
602 unsigned textOffset = currentPos
663 PositionIterator currentPos = lastVisible; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DProfiler.cs78 protected Stack<int> currentPos = new Stack<int>(); field in class:Antlr.Runtime.Debug.Profiler
152 currentPos.Push(pos);
175 descriptor.pos = currentPos.Peek();
657 currentPos.Peek());
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DProfiler.cs78 protected Stack<int> currentPos = new Stack<int>(); field in class:Antlr.Runtime.Debug.Profiler
162 currentPos.Push(pos);
188 descriptor.pos = currentPos.Peek();
717 currentPos.Peek());
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DProfiler.java133 protected Stack<Integer> currentPos = new Stack(); field in class:Profiler
210 currentPos.push(pos);
231 descriptor.pos = (Integer)currentPos.peek();
728 currentPos.peek());
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java38 protected int currentPos; field in class:CodeIterator
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 wil
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A Dhtmlediting.cpp925 Position currentPos = position; local
926 while (!currentPos.atStartOfTree()) {
927 currentPos = currentPos.previous();
929 if (currentPos.anchorNode()->rootEditableElement() != fromRootEditableElement)
933 if (currentPos.isCandidate())
934 return currentPos;
935 } else if (position.rendersInDifferentPosition(currentPos)) {
936 return currentPos;
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 581 milliseconds