Searched refs:currentPos (Results 1 - 25 of 35) sorted by relevance

12

/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/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;
H A DScrollbarThemeClient.h71 virtual float currentPos() const = 0;
H A DScrollbarTheme.cpp242 float overhangAtStart = -scrollbar->currentPos();
243 float overhangAtEnd = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize();
255 float pos = std::max(0.0f, scrollbar->currentPos()) * (trackLength(scrollbar) - thumbLength(scrollbar)) / size;
267 if (scrollbar->currentPos() < 0)
268 overhang = -scrollbar->currentPos();
269 else if (scrollbar->visibleSize() + scrollbar->currentPos() > scrollbar->totalSize())
270 overhang = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize();
H A DScrollAnimatorNone.h95 PerAxisData(ScrollAnimatorNone* parent, float* currentPos, int visibleLength);
H A DScrollbarThemeAura.cpp121 } else if (!useMockTheme() && ((checkMin && (scrollbar->currentPos() <= 0))
122 || (checkMax && scrollbar->currentPos() >= scrollbar->maximum()))) {
/external/javassist/src/main/javassist/expr/
H A DNewArray.java81 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);
H A DMethodCall.java35 int pos = currentPos;
86 int pos = currentPos;
148 return iterator.byteAt(currentPos) == INVOKESPECIAL
181 int pos = currentPos;
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);
H A DNewExpr.java44 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;
H A DCast.java65 int pos = currentPos;
92 int pos = currentPos;
H A DInstanceof.java68 int pos = currentPos;
95 int pos = currentPos;
H A DFieldAccess.java96 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/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/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/accessibility/
H A DAXScrollbar.cpp94 return m_scrollbar->currentPos() / m_scrollbar->maximum();
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarThemeClientImpl.h67 virtual float currentPos() const OVERRIDE;
H A DWebScrollbarThemeClientImpl.cpp165 float WebScrollbarThemeClientImpl::currentPos() const function in class:blink::WebScrollbarThemeClientImpl
/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/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/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/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/chromium_org/v8/benchmarks/
H A Dnavier-stokes.js262 var currentPos = j * rowSize;
269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
270 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);
/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());

Completed in 450 milliseconds

12