/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/webkit/Source/WebCore/rendering/ |
D | RenderListBox.cpp | 463 int newOffset = (offsetY - borderTop() - paddingTop()) / itemHeight() + m_indexOffset; in listIndexAtOffset() local 464 return newOffset < numItems() ? newOffset : -1; in listIndexAtOffset() 503 int newOffset = scrollToward(scrollPoint); in panScroll() local 504 if (newOffset < 0) in panScroll() 560 int newOffset; in scrollToRevealElementAtListIndex() local 562 newOffset = index; in scrollToRevealElementAtListIndex() 564 newOffset = index - numVisibleItems() + 1; in scrollToRevealElementAtListIndex() 566 ScrollableArea::scrollToYOffsetWithoutAnimation(newOffset); in scrollToRevealElementAtListIndex() 609 void RenderListBox::scrollTo(int newOffset) in scrollTo() argument 611 if (newOffset == m_indexOffset) in scrollTo() [all …]
|
D | RenderListBox.h | 124 void scrollTo(int newOffset);
|
D | RenderLayer.cpp | 1628 IntSize newOffset = offsetFromResizeCorner(document->view()->windowToContents(evt.pos())); in resize() local 1629 newOffset.setWidth(newOffset.width() / zoomFactor); in resize() 1630 newOffset.setHeight(newOffset.height() / zoomFactor); in resize() 1638 …IntSize difference = (currentSize + newOffset - adjustedOldOffset).expandedTo(minimumSize) - curre… in resize()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Structure.cpp | 700 unsigned newOffset; in putSpecificValue() local 703 newOffset = m_propertyTable->getDeletedOffset(); in putSpecificValue() 705 newOffset = m_propertyTable->size() + m_anonymousSlotCount; in putSpecificValue() 706 ASSERT(newOffset >= m_anonymousSlotCount); in putSpecificValue() 708 …m_propertyTable->add(PropertyMapEntry(globalData, this, rep, newOffset, attributes, specificValue)… in putSpecificValue() 711 return newOffset; in putSpecificValue()
|
/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/webkit/Source/WebCore/platform/ |
D | ScrollView.cpp | 375 IntSize newOffset = m_scrollOffset; in setScrollOffset() local 376 newOffset.setWidth(horizontalOffset - m_scrollOrigin.x()); in setScrollOffset() 377 newOffset.setHeight(verticalOffset - m_scrollOrigin.y()); in setScrollOffset() 379 scrollTo(newOffset); in setScrollOffset() 382 void ScrollView::scrollTo(const IntSize& newOffset) in scrollTo() argument 384 IntSize scrollDelta = newOffset - m_scrollOffset; in scrollTo() 387 m_scrollOffset = newOffset; in scrollTo()
|
D | ScrollView.h | 69 virtual void scrollTo(const IntSize& newOffset);
|
/external/icu4c/i18n/unicode/ |
D | coleitr.h | 274 void setOffset(int32_t newOffset, UErrorCode& status);
|
/external/icu4c/i18n/ |
D | coleitr.cpp | 160 void CollationElementIterator::setOffset(int32_t newOffset, in setOffset() argument 163 ucol_setOffset(m_data_, newOffset, &status); in setOffset()
|
/external/icu4c/common/ |
D | rbbi.cpp | 795 int32_t newOffset = (int32_t)UTEXT_GETNATIVEINDEX(fText); in preceding() local 796 if (newOffset != offset) { in preceding()
|
/external/skia/src/animator/ |
D | SkScriptTokenizer.cpp | 1011 size_t newOffset = getTokenOffset(); in processLogicalOp() local 1018 branch.fOffset = newOffset; in processLogicalOp()
|
/external/webkit/Source/WebCore/page/ |
D | FrameView.cpp | 2161 void FrameView::scrollTo(const IntSize& newOffset) in scrollTo() argument 2164 ScrollView::scrollTo(newOffset); in scrollTo()
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_bar_controller.mm | 2539 int newOffset = 0; 2546 newOffset = targetFrame.origin.x + NSWidth(targetFrame) + 2549 BookmarkButton* newButton = [self buttonForNode:node xOffset:&newOffset];
|
/external/sqlite/dist/ |
D | sqlite3.c | 25700 i64 newOffset; 25710 newOffset = lseek(id->h, offset, SEEK_SET); 25711 SimulateIOError( newOffset-- ); 25712 if( newOffset!=offset ){ 25713 if( newOffset == -1 ){ 25778 i64 newOffset; 25786 newOffset = lseek(id->h, offset, SEEK_SET); 25787 if( newOffset!=offset ){ 25788 if( newOffset == -1 ){
|
D | sqlite3.c.orig | 25693 i64 newOffset; 25703 newOffset = lseek(id->h, offset, SEEK_SET); 25704 SimulateIOError( newOffset-- ); 25705 if( newOffset!=offset ){ 25706 if( newOffset == -1 ){ 25771 i64 newOffset; 25779 newOffset = lseek(id->h, offset, SEEK_SET); 25780 if( newOffset!=offset ){ 25781 if( newOffset == -1 ){
|