Home
last modified time | relevance | path

Searched refs:currentPos (Results 1 – 25 of 31) sorted by relevance

12

/external/icu/icu4c/source/tools/toolutil/
Ducbuf.c41 UChar* currentPos; member
174 if(buf->currentPos<buf->bufLimit){ in ucbuf_fillucbuf()
175 offset = (int32_t)(buf->bufLimit-buf->currentPos); in ucbuf_fillucbuf()
176 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar)); in ucbuf_fillucbuf()
311 buf->currentPos = pTarget; in ucbuf_fillucbuf()
328 if(buf->currentPos>=buf->bufLimit){ in ucbuf_getc()
338 return *(buf->currentPos++); in ucbuf_getc()
348 if(buf->currentPos+1>=buf->bufLimit){ in ucbuf_getc32()
357 if(U16_IS_LEAD(*(buf->currentPos))){ in ucbuf_getc32()
358 retVal=U16_GET_SUPPLEMENTARY(buf->currentPos[0],buf->currentPos[1]); in ucbuf_getc32()
[all …]
/external/chromium_org/third_party/icu/source/tools/toolutil/
Ducbuf.c40 UChar* currentPos; member
173 if(buf->currentPos<buf->bufLimit){ in ucbuf_fillucbuf()
174 offset = (int32_t)(buf->bufLimit-buf->currentPos); in ucbuf_fillucbuf()
175 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar)); in ucbuf_fillucbuf()
310 buf->currentPos = pTarget; in ucbuf_fillucbuf()
327 if(buf->currentPos>=buf->bufLimit){ in ucbuf_getc()
337 return *(buf->currentPos++); in ucbuf_getc()
347 if(buf->currentPos+1>=buf->bufLimit){ in ucbuf_getc32()
356 if(UTF_IS_LEAD(*(buf->currentPos))){ in ucbuf_getc32()
357 retVal=UTF16_GET_PAIR_VALUE(buf->currentPos[0],buf->currentPos[1]); in ucbuf_getc32()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DPosition.cpp489 Position currentPos = *this; in previousCharacterPosition() local
490 while (!currentPos.atStartOfTree()) { in previousCharacterPosition()
491 currentPos = currentPos.previous(); in previousCharacterPosition()
493 if (currentPos.deprecatedNode()->rootEditableElement() != fromRootEditableElement) in previousCharacterPosition()
497 if (currentPos.isCandidate()) in previousCharacterPosition()
498 return currentPos; in previousCharacterPosition()
499 } else if (rendersInDifferentPosition(currentPos)) in previousCharacterPosition()
500 return currentPos; in previousCharacterPosition()
568 PositionIterator currentPos = lastVisible; in upstream() local
572 for (; !currentPos.atStart(); currentPos.decrement()) { in upstream()
[all …]
/external/javassist/src/main/javassist/expr/
DNewArray.java81 int atype = iterator.byteAt(currentPos + 1); in getComponentType()
86 int index = iterator.u16bitAt(currentPos + 1); in getComponentType()
127 int index = iterator.u16bitAt(currentPos + 1); in getDimension()
143 return iterator.byteAt(currentPos + 3); in getCreatedDimensions()
175 int pos = currentPos; in replace2()
182 index = iterator.byteAt(currentPos + 1); // atype in replace2()
198 index = iterator.u16bitAt(currentPos + 1); in replace2()
200 dim = iterator.byteAt(currentPos + 3); in replace2()
DExpr.java45 int currentPos; field in Expr
58 currentPos = pos; in Expr()
138 int pos = currentPos; in mayThrow()
186 return currentPos; in indexOfBytecode()
195 return thisMethod.getLineNumber(currentPos); in getLineNumber()
319 oldIterator.move(currentPos); in runEditor()
DMethodCall.java35 int pos = currentPos; in getNameAndType()
86 int pos = currentPos; in getClassName()
148 return iterator.byteAt(currentPos) == INVOKESPECIAL in isSuper()
181 int pos = currentPos; in replace()
DFieldAccess.java96 int index = iterator.u16bitAt(currentPos + 1); in getClassName()
104 int index = iterator.u16bitAt(currentPos + 1); in getFieldName()
135 int index = iterator.u16bitAt(currentPos + 1); in getSignature()
152 int pos = currentPos; in replace()
DNewExpr.java105 int methodIndex = iterator.u16bitAt(currentPos + 1); // constructor in getSignature()
114 int index = iterator.u16bitAt(currentPos + 1); in getConstructor()
177 pos = currentPos; in replace()
DInstanceof.java68 int pos = currentPos; in getType()
95 int pos = currentPos; in replace()
DCast.java65 int pos = currentPos; in getType()
92 int pos = currentPos; in replace()
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollAnimator.cpp56 float& currentPos = (orientation == HorizontalScrollbar) ? m_currentPosX : m_currentPosY; in scroll() local
57 float newPos = clampScrollPosition(orientation, currentPos + step * delta); in scroll()
58 if (currentPos == newPos) in scroll()
60 currentPos = newPos; in scroll()
DScrollbarTheme.cpp244 float overhangAtStart = -scrollbar->currentPos(); in usedTotalSize()
245 … float overhangAtEnd = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize(); in usedTotalSize()
257 …float pos = std::max(0.0f, scrollbar->currentPos()) * (trackLength(scrollbar) - thumbLength(scroll… in thumbPosition()
269 if (scrollbar->currentPos() < 0) in thumbLength()
270 overhang = -scrollbar->currentPos(); in thumbLength()
271 else if (scrollbar->visibleSize() + scrollbar->currentPos() > scrollbar->totalSize()) in thumbLength()
272 overhang = scrollbar->currentPos() + scrollbar->visibleSize() - scrollbar->totalSize(); in thumbLength()
DScrollbarThemeAura.cpp125 } else if (!useMockTheme() && ((checkMin && (scrollbar->currentPos() <= 0)) in paintButton()
126 || (checkMax && scrollbar->currentPos() >= scrollbar->maximum()))) { in paintButton()
DScrollbarThemeClient.h71 virtual float currentPos() const = 0;
/external/javassist/src/main/javassist/bytecode/
DCodeIterator.java38 protected int currentPos; field in CodeIterator
51 currentPos = mark = 0; in begin()
68 currentPos = index; in move()
170 public boolean hasNext() { return currentPos < endPos; } in hasNext()
183 int pos = currentPos; in next()
184 currentPos = nextOpcode(bytecode, pos); in next()
197 return currentPos; in lookAhead()
319 return insert0(currentPos, code, false); in insert()
392 return insert0(currentPos, code, true); in insertEx()
481 return insertGapAt(currentPos, length, false).position; in insertGap()
[all …]
/external/chromium_org/ui/file_manager/video_player/js/
Dvideo_player.js244 var handler = function(currentPos, event) { argument
245 console.log('loaded: ', currentPos, this.currentPos_);
246 if (currentPos === this.currentPos_)
/external/lzma/CPP/7zip/Compress/
DBcj2Coder.cpp175 UInt64 currentPos = (nowPos64 + bufferPos); in CodeReal() local
176 while (subStreamEndPos < currentPos) in CodeReal()
206 UInt64 dest64 = (currentPos + 5) + Int64(Int32(src)); in CodeReal()
/external/lzma/CPP/7zip/Common/
DFileStreams.cpp359 UInt64 currentPos; in SetSize() local
360 if (!File.Seek(0, FILE_CURRENT, currentPos)) in SetSize()
364 result = result && File.Seek(currentPos, currentPos2); in SetSize()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DProfiler.cs78 protected Stack<int> currentPos = new Stack<int>(); field in Antlr.Runtime.Debug.Profiler
152 currentPos.Push(pos); in Location()
175 descriptor.pos = currentPos.Peek(); in EnterDecision()
657 currentPos.Peek()); in LocationDescription()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DProfiler.cs78 protected Stack<int> currentPos = new Stack<int>(); field in Antlr.Runtime.Debug.Profiler
162 currentPos.Push(pos); in Location()
188 descriptor.pos = currentPos.Peek(); in EnterDecision()
717 currentPos.Peek()); in LocationDescription()
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXScrollbar.cpp94 return m_scrollbar->currentPos() / m_scrollbar->maximum(); in valueForRange()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderMarquee.cpp307 …int currentPos = (isHorizontal() ? layer()->scrollableArea()->scrollXOffset() : layer()->scrollabl… in timerFired() local
308 newPos = currentPos + (addIncrement ? increment : -increment); in timerFired()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DProfiler.java133 protected Stack<Integer> currentPos = new Stack(); field in Profiler
210 currentPos.push(pos); in location()
231 descriptor.pos = (Integer)currentPos.peek(); in enterDecision()
728 currentPos.peek()); in locationDescription()
/external/chromium_org/third_party/WebKit/Source/platform/exported/
DWebScrollbarThemeClientImpl.h68 virtual float currentPos() const OVERRIDE;
/external/chromium_org/v8/benchmarks/
Dnavier-stokes.js262 var currentPos = j * rowSize;
269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
270 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);

12