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 off_t newOffset = fAsset->seek(size, SEEK_CUR);
47 if (-1 == newOffset) {
51 amount = newOffset - oldOffset;
Typeface.cpp 94 off_t newOffset = fAsset->seek(size, SEEK_CUR);
95 if (-1 == newOffset)
98 amount = newOffset - oldOffset;
  /libcore/luni/src/main/java/java/text/
CollationElementIterator.java 168 * If {@code newOffset} corresponds to a character which is part of a
179 * @param newOffset
184 public void setOffset(int newOffset) {
185 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...]
  /libcore/luni/src/main/java/java/io/
PushbackReader.java 200 int newOffset = offset;
205 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
206 newOffset += copyLength;
215 int inCopied = in.read(buffer, newOffset, count - copiedChars);
PushbackInputStream.java 186 int copiedBytes = 0, copyLength = 0, newOffset = offset;
191 System.arraycopy(buf, pos, buffer, newOffset, copyLength);
192 newOffset += copyLength;
201 int inCopied = in.read(buffer, newOffset, length - copiedBytes);
  /external/webkit/WebCore/svg/
SVGTextContentElement.cpp 73 unsigned int newOffset = textBox->start() + (it - start) + startOffset;
77 newOffset = textBox->start() + textBox->end() - newOffset;
83 textLength += textBox->calculateGlyphHeight(style, newOffset, 0);
85 textLength += textBox->calculateGlyphWidth(style, newOffset, 0, charsConsumed, glyphName);
190 unsigned int newOffset = textBox->start() + (it - start) + startOffset;
194 newOffset = textBox->start() + textBox->end() - newOffset;
202 m_queryPointResult.move(it->x, it->y + textBox->calculateGlyphHeight(style, newOffset, extraCharactersAvailable));
204 m_queryPointResult.move(it->x + textBox->calculateGlyphWidth(style, newOffset, extraCharactersAvailable, charsConsumed, glyphName), it->y)
    [all...]
  /external/webkit/WebCore/rendering/
RenderListBox.cpp 398 int newOffset = (offsetY - borderTop() - paddingTop()) / itemHeight() + m_indexOffset;
399 return newOffset < numItems() ? newOffset : -1;
438 int newOffset = scrollToward(scrollPoint);
439 if (newOffset < 0)
495 int newOffset;
497 newOffset = index;
499 newOffset = index - numVisibleItems() + 1;
501 m_indexOffset = newOffset;
528 int newOffset = m_vBar->value()
    [all...]
SVGInlineTextBox.cpp 139 unsigned int newOffset = textBox->start() + (it - start) + startOffset;
140 FloatRect glyphRect = chunkCtm.mapRect(textBox->calculateGlyphBoundaries(style, newOffset, *it));
145 newOffset = textBox->start() + textBox->end() - newOffset;
154 closestOffset = newOffset;
203 unsigned int newOffset = textBox->start() + (it - start) + startOffset;
204 m_selectionRect.unite(textBox->calculateGlyphBoundaries(style, newOffset, *it));
SVGCharacterLayoutInfo.cpp 225 bool SVGCharacterLayoutInfo::nextPathLayoutPointAndAngle(float glyphAdvance, float extraAdvance, float newOffset)
230 if (newOffset != FLT_MIN)
231 currentOffset = startOffset + newOffset;
SVGCharacterLayoutInfo.h 100 bool nextPathLayoutPointAndAngle(float glyphAdvance, float extraAdvance, float newOffset);
SVGRootInlineBox.cpp     [all...]
  /build/tools/zipalign/
ZipAlign.cpp 76 long newOffset = pEntry->getFileOffset() + bias;
77 padding = (alignment - (newOffset % alignment)) % alignment;
  /frameworks/base/libs/utils/
Asset.cpp 300 off_t newOffset;
304 newOffset = offset;
307 newOffset = curPosn + offset;
310 newOffset = maxPosn + offset;
319 if (newOffset < 0 || newOffset > maxPosn) {
321 (long) newOffset, (long) maxPosn);
325 return newOffset;
  /external/chromium/third_party/icu/public/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);
  /dalvik/vm/
Profile.c 679 int oldOffset, newOffset;
700 newOffset = oldOffset + TRACE_REC_SIZE;
701 if (newOffset > state->bufferSize) {
705 } 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/WebCore/platform/
ScrollView.cpp 252 IntSize newOffset = m_scrollOffset;
255 newOffset.setWidth(scrollbar->value());
257 newOffset.setHeight(scrollbar->value());
260 IntSize scrollDelta = newOffset - m_scrollOffset;
263 m_scrollOffset = newOffset;
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Structure.cpp 835 unsigned newOffset;
837 newOffset = m_propertyTable->deletedOffsets->last();
840 newOffset = m_propertyTable->keyCount + m_anonymousSlotCount;
841 m_propertyTable->entries()[entryIndex - 1].offset = newOffset;
843 ASSERT(newOffset >= m_anonymousSlotCount);
850 return newOffset;
    [all...]
  /external/chromium/third_party/icu/source/i18n/
coleitr.cpp 162 void CollationElementIterator::setOffset(int32_t newOffset,
165 ucol_setOffset(m_data_, newOffset, &status);
  /dalvik/libdex/
DexSwapVerify.c     [all...]
  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 442 int newOffset = getOffset(time + zoneOffset);
444 if (newOffset != offset) {
445 time += offset - newOffset;
    [all...]
  /external/chromium/third_party/icu/source/common/
rbbi.cpp 791 int32_t newOffset = (int32_t)UTEXT_GETNATIVEINDEX(fText);
792 if (newOffset != offset) {
    [all...]
  /external/icu4c/common/
rbbi.cpp 793 int32_t newOffset = (int32_t)UTEXT_GETNATIVEINDEX(fText);
794 if (newOffset != offset) {
    [all...]

Completed in 434 milliseconds

1 2