HomeSort by relevance Sort by last modified time
    Searched refs:newOffset (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/core/jni/android/graphics/
Utils.cpp 46 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
47 if (-1 == newOffset) {
51 amount = newOffset - oldOffset;
Typeface.cpp 94 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
95 if (-1 == newOffset)
98 amount = newOffset - oldOffset;
  /libcore/luni/src/main/java/java/text/
CollationElementIterator.java 169 * If {@code newOffset} corresponds to a character which is part of a
180 * @param newOffset
185 public void setOffset(int newOffset) {
186 this.icuIterator.setOffset(newOffset);
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 68 private int newOffset;
494 System.out.println(" Replaced "+replacementInstruction.toString(newOffset));
555 newOffset = 0;
569 if (newOffset > oldOffset)
577 instructionOffsetMap[oldOffset] = newOffset;
579 return newOffset;
591 instructionOffsetMap[oldOffset] = newOffset;
597 newOffset += preInstruction.length(newOffset);
605 newOffset += replacementInstruction.length(newOffset)
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 73 public void putTypeListOffset(int oldOffset, int newOffset) {
74 if (oldOffset <= 0 || newOffset <= 0) {
77 typeListOffsets.put(oldOffset, newOffset);
80 public void putAnnotationOffset(int oldOffset, int newOffset) {
81 if (oldOffset <= 0 || newOffset <= 0) {
84 annotationOffsets.put(oldOffset, newOffset);
87 public void putAnnotationSetOffset(int oldOffset, int newOffset) {
88 if (oldOffset <= 0 || newOffset <= 0) {
91 annotationSetOffsets.put(oldOffset, newOffset);
94 public void putAnnotationDirectoryOffset(int oldOffset, int newOffset) {
    [all...]
  /libcore/luni/src/main/java/java/io/
PushbackInputStream.java 181 int copiedBytes = 0, copyLength = 0, newOffset = offset;
186 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
187 newOffset += copyLength;
196 int inCopied = in.read(buffer, newOffset, length - copiedBytes);
PushbackReader.java 190 int newOffset = offset;
195 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
196 newOffset += copyLength;
205 int inCopied = in.read(buffer, newOffset, count - copiedChars);
  /build/tools/zipalign/
ZipAlign.cpp 76 long newOffset = pEntry->getFileOffset() + bias;
77 padding = (alignment - (newOffset % alignment)) % alignment;
  /frameworks/base/libs/utils/
Asset.cpp 317 off64_t newOffset;
321 newOffset = offset;
324 newOffset = curPosn + offset;
327 newOffset = maxPosn + offset;
336 if (newOffset < 0 || newOffset > maxPosn) {
338 (long) newOffset, (long) maxPosn);
342 return newOffset;
  /external/icu4c/i18n/unicode/
coleitr.h 269 * @param newOffset the new offset.
274 void setOffset(int32_t newOffset, UErrorCode& status);
  /external/webkit/Source/WebCore/rendering/
RenderListBox.cpp 463 int newOffset = (offsetY - borderTop() - paddingTop()) / itemHeight() + m_indexOffset;
464 return newOffset < numItems() ? newOffset : -1;
503 int newOffset = scrollToward(scrollPoint);
504 if (newOffset < 0)
560 int newOffset;
562 newOffset = index;
564 newOffset = index - numVisibleItems() + 1;
566 ScrollableArea::scrollToYOffsetWithoutAnimation(newOffset);
609 void RenderListBox::scrollTo(int newOffset)
    [all...]
RenderListBox.h 124 void scrollTo(int newOffset);
RenderLayer.cpp     [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 874 offset = newOffset(i, offset, where, gapLength, exclusive);
882 offset = newOffset(i, offset, where, gapLength, exclusive);
900 int defaultbyte = newOffset(i, ByteArray.read32bit(code, i2),
911 int offset = newOffset(i, ByteArray.read32bit(code, i0),
    [all...]
  /dalvik/vm/
Profile.cpp 738 int oldOffset, newOffset;
763 newOffset = oldOffset + state->recordSize;
764 if (newOffset > state->bufferSize) {
768 } while (android_atomic_release_cas(oldOffset, newOffset,
  /external/icu4c/i18n/
coleitr.cpp 160 void CollationElementIterator::setOffset(int32_t newOffset,
163 ucol_setOffset(m_data_, newOffset, &status);
  /external/webkit/Source/JavaScriptCore/runtime/
Structure.cpp 700 unsigned newOffset;
703 newOffset = m_propertyTable->getDeletedOffset();
705 newOffset = m_propertyTable->size() + m_anonymousSlotCount;
706 ASSERT(newOffset >= m_anonymousSlotCount);
708 m_propertyTable->add(PropertyMapEntry(globalData, this, rep, newOffset, attributes, specificValue));
711 return newOffset;
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 375 IntSize newOffset = m_scrollOffset;
376 newOffset.setWidth(horizontalOffset - m_scrollOrigin.x());
377 newOffset.setHeight(verticalOffset - m_scrollOrigin.y());
379 scrollTo(newOffset);
382 void ScrollView::scrollTo(const IntSize& newOffset)
384 IntSize scrollDelta = newOffset - m_scrollOffset;
387 m_scrollOffset = newOffset;
    [all...]
ScrollView.h 69 virtual void scrollTo(const IntSize& newOffset);
  /dalvik/libdex/
DexSwapVerify.cpp     [all...]
  /external/icu4c/common/
rbbi.cpp 795 int32_t newOffset = (int32_t)UTEXT_GETNATIVEINDEX(fText);
796 if (newOffset != offset) {
    [all...]
  /external/webkit/Source/WebCore/page/
FrameView.cpp     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /external/proguard/lib/
proguard.jar 

Completed in 1383 milliseconds

1 2