/external/icu/icu4c/source/tools/toolutil/ |
D | ucbuf.c | 41 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/ |
D | ucbuf.c | 40 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/ |
D | Position.cpp | 489 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/ |
D | NewArray.java | 81 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()
|
D | Expr.java | 45 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()
|
D | MethodCall.java | 35 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()
|
D | FieldAccess.java | 96 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()
|
D | NewExpr.java | 105 int methodIndex = iterator.u16bitAt(currentPos + 1); // constructor in getSignature() 114 int index = iterator.u16bitAt(currentPos + 1); in getConstructor() 177 pos = currentPos; in replace()
|
D | Instanceof.java | 68 int pos = currentPos; in getType() 95 int pos = currentPos; in replace()
|
D | Cast.java | 65 int pos = currentPos; in getType() 92 int pos = currentPos; in replace()
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
D | ScrollAnimator.cpp | 56 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()
|
D | ScrollbarTheme.cpp | 244 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()
|
D | ScrollbarThemeAura.cpp | 125 } else if (!useMockTheme() && ((checkMin && (scrollbar->currentPos() <= 0)) in paintButton() 126 || (checkMax && scrollbar->currentPos() >= scrollbar->maximum()))) { in paintButton()
|
D | ScrollbarThemeClient.h | 71 virtual float currentPos() const = 0;
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 38 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/ |
D | video_player.js | 244 var handler = function(currentPos, event) { argument 245 console.log('loaded: ', currentPos, this.currentPos_); 246 if (currentPos === this.currentPos_)
|
/external/lzma/CPP/7zip/Compress/ |
D | Bcj2Coder.cpp | 175 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/ |
D | FileStreams.cpp | 359 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/ |
D | Profiler.cs | 78 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/ |
D | Profiler.cs | 78 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/ |
D | AXScrollbar.cpp | 94 return m_scrollbar->currentPos() / m_scrollbar->maximum(); in valueForRange()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderMarquee.cpp | 307 …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/ |
D | Profiler.java | 133 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/ |
D | WebScrollbarThemeClientImpl.h | 68 virtual float currentPos() const OVERRIDE;
|
/external/chromium_org/v8/benchmarks/ |
D | navier-stokes.js | 262 var currentPos = j * rowSize; 269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]); 270 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);
|