HomeSort by relevance Sort by last modified time
    Searched full:newoffset (Results 1 - 25 of 57) sorted by null

1 2 3

  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 76 public void putTypeListOffset(int oldOffset, int newOffset) {
77 if (oldOffset <= 0 || newOffset <= 0) {
80 typeListOffsets.put(oldOffset, newOffset);
83 public void putAnnotationOffset(int oldOffset, int newOffset) {
84 if (oldOffset <= 0 || newOffset <= 0) {
87 annotationOffsets.put(oldOffset, newOffset);
90 public void putAnnotationSetOffset(int oldOffset, int newOffset) {
91 if (oldOffset <= 0 || newOffset <= 0) {
94 annotationSetOffsets.put(oldOffset, newOffset);
97 public void putAnnotationDirectoryOffset(int oldOffset, int newOffset) {
    [all...]
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
phasebeam.rs 56 static float newOffset = 0.5;
111 newOffset = xOffset*2;
114 if(newOffset != oldOffset) {
132 if(newOffset==oldOffset) {
156 beam->offsetX = newOffset;
158 particle->offsetX = newOffset;
172 oldOffset = 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...]
  /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;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 76 int newoffset = (lastUsed+1)*slotsize;
77 fastArray[newoffset] = w0;
78 fastArray[newoffset+1] = w1;
79 fastArray[newoffset+2] = w2;
80 fastArray[newoffset+3] = w3;
87 int newoffset = (lastUsed+1)*slotsize; local
88 int chunkpos = newoffset >> lowbits;
89 int slotpos = (newoffset & lowmask);
  /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/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);
  /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;
  /external/emma/core/java12/com/vladium/jcd/cls/
FieldCollection.java 110 final int newoffset = m_fields.size (); // use size() if class becomes non-final local
113 return newoffset;
InterfaceCollection.java 83 final int newoffset = m_interfaces.size (); // use size() if class becomes non-final local
86 return newoffset;
MethodCollection.java 110 final int newoffset = m_methods.size (); // use size() if class becomes non-final local
113 return newoffset;
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
DeclaredExceptionTable.java 81 final int newoffset = m_exceptions.size (); // use size() if class becomes non-final local
84 return newoffset;
ExceptionHandlerTable.java 87 final int newoffset = m_exceptions.size (); // use size() if class becomes non-final local
90 return newoffset;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
VDMXParser.cpp 87 void setOffset(size_t newoffset)
89 m_offset = newoffset;
  /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;
  /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;
  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 172 void setOffset(int64_t NewOffset) { PtrInfo.Offset = NewOffset; }
  /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;
  /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/webkit/Source/WebCore/platform/
ScrollView.cpp 386 IntSize newOffset = m_scrollOffset;
387 newOffset.setWidth(horizontalOffset - m_scrollOrigin.x());
388 newOffset.setHeight(verticalOffset - m_scrollOrigin.y());
390 scrollTo(newOffset);
393 void ScrollView::scrollTo(const IntSize& newOffset)
395 IntSize scrollDelta = newOffset - m_scrollOffset;
398 m_scrollOffset = newOffset;
    [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...]

Completed in 442 milliseconds

1 2 3