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

1 2 3 4

  /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);
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 62 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
63 if (-1 == newOffset) {
67 amount = newOffset - oldOffset;
Typeface.cpp 114 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
115 if (-1 == newOffset)
118 amount = newOffset - oldOffset;
  /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 95 public void putTypeListOffset(int oldOffset, int newOffset) {
96 if (oldOffset <= 0 || newOffset <= 0) {
99 typeListOffsets.put(oldOffset, newOffset);
102 public void putAnnotationOffset(int oldOffset, int newOffset) {
103 if (oldOffset <= 0 || newOffset <= 0) {
106 annotationOffsets.put(oldOffset, newOffset);
109 public void putAnnotationSetOffset(int oldOffset, int newOffset) {
110 if (oldOffset <= 0 || newOffset <= 0) {
113 annotationSetOffsets.put(oldOffset, newOffset);
116 public void putAnnotationSetRefListOffset(int oldOffset, int newOffset) {
    [all...]
  /libcore/luni/src/main/java/java/io/
PushbackInputStream.java 171 int copiedBytes = 0, copyLength = 0, newOffset = byteOffset;
175 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
176 newOffset += copyLength;
185 int inCopied = in.read(buffer, newOffset, byteCount - copiedBytes);
PushbackReader.java 179 int newOffset = offset;
184 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
185 newOffset += copyLength;
194 int inCopied = in.read(buffer, newOffset, count - copiedChars);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 299 int newOffset = 0;
300 for (Node* node = anchorNode->firstChild(); node && newOffset < offset; node = node->nextSibling())
301 newOffset++;
303 return newOffset;
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
HttpZipLocator.java 204 int newOffset = offset + CENHDR + nameLen + extraLen + commentLen;
209 return newOffset;
215 return newOffset;
222 return newOffset;
239 return newOffset;
  /build/tools/zipalign/
ZipAlign.cpp 76 long newOffset = pEntry->getFileOffset() + bias;
77 padding = (alignment - (newOffset % alignment)) % alignment;
  /frameworks/base/libs/androidfw/
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/chromium_org/third_party/icu/source/i18n/unicode/
coleitr.h 269 * @param newOffset the new offset.
274 void setOffset(int32_t newOffset, UErrorCode& status);
  /external/icu4c/i18n/unicode/
coleitr.h 269 * @param newOffset the new offset.
274 void setOffset(int32_t newOffset, UErrorCode& status);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.cpp 490 int newOffset = (offset.height() - borderTop() - paddingTop()) / itemHeight() + m_indexOffset;
491 return newOffset < numItems() ? newOffset : -1;
530 int newOffset = scrollToward(scrollPoint);
531 if (newOffset < 0)
592 int newOffset;
594 newOffset = index;
596 newOffset = index - numVisibleItems() + 1;
598 scrollToOffsetWithoutAnimation(VerticalScrollbar, newOffset);
640 void RenderListBox::scrollTo(int newOffset)
    [all...]
RenderListBox.h 136 void scrollTo(int newOffset);
  /frameworks/base/tools/aapt/
StringPool.cpp 287 size_t newOffset;
291 newOffset = newEntries.add(oldEnt);
292 newEntries.editItemAt(newOffset).indices.clear();
296 newOffset = origOffsetToNewOffset.valueAt(newIndexOfOffset);
299 newEntries.editItemAt(newOffset).indices.add(i);
301 newEntryArray.add(newOffset);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SplitView.js 424 var newOffset = (this._isVertical ? event.pageX : event.pageY) + this._dragOffset;
425 var newSize = (this._secondIsSidebar ? this.totalSize() - newOffset : newOffset);
  /frameworks/base/media/java/android/media/
MediaCodec.java 130 int newOffset, int newSize, long newTimeUs, int newFlags) {
131 offset = newOffset;
  /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...]
  /external/chromium_org/third_party/icu/source/i18n/
coleitr.cpp 160 void CollationElementIterator::setOffset(int32_t newOffset,
163 ucol_setOffset(m_data_, newOffset, &status);
  /external/icu4c/i18n/
coleitr.cpp 161 void CollationElementIterator::setOffset(int32_t newOffset,
164 ucol_setOffset(m_data_, newOffset, &status);
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CitiesActivity.java 193 int newOffset = timezone.getOffset(currentTime);
194 if (offset != newOffset) {
195 offset = newOffset;
  /dalvik/vm/
Profile.cpp 937 int oldOffset, newOffset;
947 newOffset = oldOffset + state->recordSize;
948 if (newOffset > state->bufferSize) {
952 } while (android_atomic_release_cas(oldOffset, newOffset,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollView.h 57 virtual void scrollTo(const IntSize& newOffset);
  /frameworks/support/v4/java/android/support/v4/widget/
DrawerLayout.java 698 final float newOffset;
701 newOffset = (float) (childWidth + childLeft) / childWidth;
704 newOffset = (float) (width - childLeft) / childWidth;
707 final boolean changeOffset = newOffset != lp.onScreen;
746 setDrawerViewOffset(child, newOffset);
    [all...]

Completed in 3024 milliseconds

1 2 3 4