/external/proguard/src/proguard/classfile/editor/ |
D | CodeAttributeEditor.java | 68 private int newOffset; field in CodeAttributeEditor 494 System.out.println(" Replaced "+replacementInstruction.toString(newOffset)); in performSimpleReplacements() 555 newOffset = 0; in mapInstructions() 569 if (newOffset > oldOffset) in mapInstructions() 577 instructionOffsetMap[oldOffset] = newOffset; in mapInstructions() 579 return newOffset; in mapInstructions() 591 instructionOffsetMap[oldOffset] = newOffset; in mapInstruction() 597 newOffset += preInstruction.length(newOffset); in mapInstruction() 605 newOffset += replacementInstruction.length(newOffset); in mapInstruction() 611 newOffset += instruction.length(newOffset); in mapInstruction() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderListBox.cpp | 500 int newOffset = (offset.height() - borderTop() - paddingTop()) / itemHeight() + m_indexOffset; in listIndexAtOffset() local 501 return newOffset < numItems() ? newOffset : -1; in listIndexAtOffset() 540 int newOffset = scrollToward(scrollPoint); in panScroll() local 541 if (newOffset < 0) in panScroll() 602 int newOffset; in scrollToRevealElementAtListIndex() local 604 newOffset = index; in scrollToRevealElementAtListIndex() 606 newOffset = index - numVisibleItems() + 1; in scrollToRevealElementAtListIndex() 608 scrollToOffsetWithoutAnimation(VerticalScrollbar, newOffset); in scrollToRevealElementAtListIndex() 645 void RenderListBox::scrollTo(int newOffset) in scrollTo() argument 647 if (newOffset == m_indexOffset) in scrollTo() [all …]
|
D | RenderLayerScrollableArea.cpp | 1258 LayoutSize newOffset = offsetFromResizeCorner(document.view()->windowToContents(pos)); in resize() local 1259 newOffset.setWidth(newOffset.width() / zoomFactor); in resize() 1260 newOffset.setHeight(newOffset.height() / zoomFactor); in resize() 1268 newOffset.setWidth(-newOffset.width()); in resize() 1272 …LayoutSize difference = (currentSize + newOffset - adjustedOldOffset).expandedTo(minimumSize) - cu… in resize()
|
D | RenderListBox.h | 137 void scrollTo(int newOffset);
|
D | RenderFlexibleBox.cpp | 1369 LayoutUnit newOffset = contentExtent - originalOffset - lineCrossAxisExtent; in flipForWrapReverse() local 1370 adjustAlignmentForChild(child, newOffset - originalOffset); in flipForWrapReverse()
|
D | RenderLayer.cpp | 1017 LayoutSize newOffset = toRenderBoxModelObject(renderer())->offsetForInFlowPosition(); in updateLayerPosition() local 1018 positionOrOffsetChanged = newOffset != m_offsetForInFlowPosition; in updateLayerPosition() 1019 m_offsetForInFlowPosition = newOffset; in updateLayerPosition()
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/ |
D | HttpZipLocator.java | 204 int newOffset = offset + CENHDR + nameLen + extraLen + commentLen; 209 return newOffset; 215 return newOffset; 222 return newOffset; 239 return newOffset;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Position.h | 300 int newOffset = 0; in minOffsetForNode() local 301 …for (Node* node = anchorNode->firstChild(); node && newOffset < offset; node = node->nextSibling()) in minOffsetForNode() 302 newOffset++; in minOffsetForNode() 304 return newOffset; in minOffsetForNode()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | SplitView.js | 420 var newOffset = (this._isVertical ? event.pageX : event.pageY) + this._dragOffset; 421 var newSize = (this._secondIsSidebar ? this.totalSize() - newOffset : newOffset);
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 874 offset = newOffset(i, offset, where, gapLength, exclusive); in insertGap2() 882 offset = newOffset(i, offset, where, gapLength, exclusive); in insertGap2() 900 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2), in insertGap2() 911 int offset = newOffset(i, ByteArray.read32bit(code, i0), in insertGap2() 932 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2), in insertGap2() 942 int offset = newOffset(i, in insertGap2() 973 private static int newOffset(int i, int offset, int where, in newOffset() method in CodeIterator
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
D | coleitr.h | 274 void setOffset(int32_t newOffset, UErrorCode& status);
|
/external/icu4c/i18n/unicode/ |
D | coleitr.h | 274 void setOffset(int32_t newOffset, UErrorCode& status);
|
/external/icu4c/i18n/ |
D | coleitr.cpp | 161 void CollationElementIterator::setOffset(int32_t newOffset, in setOffset() argument 164 ucol_setOffset(m_data_, newOffset, &status); in setOffset()
|
D | calendar.cpp | 2018 int32_t newOffset = get(UCAL_DST_OFFSET, status) + get(UCAL_ZONE_OFFSET, status); in add() local 2019 if (newOffset != prevOffset) { in add() 2032 int32_t adjAmount = prevOffset - newOffset; in add()
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | coleitr.cpp | 160 void CollationElementIterator::setOffset(int32_t newOffset, in setOffset() argument 163 ucol_setOffset(m_data_, newOffset, &status); in setOffset()
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
D | ScrollView.cpp | 273 void ScrollView::scrollTo(const IntSize& newOffset) in scrollTo() argument 275 IntSize scrollDelta = newOffset - m_scrollOffset; in scrollTo() 278 m_scrollOffset = newOffset; in scrollTo()
|
D | ScrollView.h | 59 virtual void scrollTo(const IntSize& newOffset);
|
/external/chromium_org/third_party/sqlite/src/src/ |
D | os_unix.c | 2935 i64 newOffset; in seekAndRead() local 2945 newOffset = lseek(id->h, offset, SEEK_SET); in seekAndRead() 2946 SimulateIOError( newOffset-- ); in seekAndRead() 2947 if( newOffset!=offset ){ in seekAndRead() 2948 if( newOffset == -1 ){ in seekAndRead() 3013 i64 newOffset; in seekAndWrite() local 3021 newOffset = lseek(id->h, offset, SEEK_SET); in seekAndWrite() 3022 SimulateIOError( newOffset-- ); in seekAndWrite() 3023 if( newOffset!=offset ){ in seekAndWrite() 3024 if( newOffset == -1 ){ in seekAndWrite()
|
/external/chromium_org/third_party/icu/source/common/ |
D | rbbi.cpp | 795 int32_t newOffset = (int32_t)UTEXT_GETNATIVEINDEX(fText); in preceding() local 796 if (newOffset != offset) { in preceding()
|
/external/icu4c/common/ |
D | rbbi.cpp | 856 int32_t newOffset = (int32_t)UTEXT_GETNATIVEINDEX(fText); in preceding() local 857 if (newOffset != offset) { in preceding()
|
/external/chromium_org/net/third_party/nss/ssl/ |
D | ssl3ext.c | 595 unsigned int newOffset = offset + 1 + (unsigned int) data[offset]; in ssl3_ValidateNextProtoNego() local 599 if (newOffset > length || data[offset] == 0) { in ssl3_ValidateNextProtoNego() 603 offset = newOffset; in ssl3_ValidateNextProtoNego()
|
/external/skia/src/animator/ |
D | SkScriptTokenizer.cpp | 1019 size_t newOffset = getTokenOffset(); in processLogicalOp() local 1026 branch.fOffset = newOffset; in processLogicalOp()
|
/external/chromium_org/third_party/skia/src/animator/ |
D | SkScriptTokenizer.cpp | 1019 size_t newOffset = getTokenOffset(); in processLogicalOp() local 1026 branch.fOffset = newOffset; in processLogicalOp()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | FrameView.cpp | 2550 void FrameView::scrollTo(const IntSize& newOffset) in scrollTo() argument 2553 ScrollView::scrollTo(newOffset); in scrollTo()
|
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_bar_controller.mm | 2538 int newOffset = 2546 newOffset = targetFrame.origin.x + NSWidth(targetFrame) + 2549 BookmarkButton* newButton = [self buttonForNode:node xOffset:&newOffset];
|