/packages/wallpapers/PhaseBeam/src/com/android/phasebeam/ |
phasebeam.rs | 56 static float newOffset = 0.5; 112 newOffset = xOffset*2; 115 if(newOffset != oldOffset) { 133 if(newOffset==oldOffset) { 157 beam->offsetX = newOffset; 159 particle->offsetX = newOffset; 173 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...] |
/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...] |
/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/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/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;
|
/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 | 154 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;
|
/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...] |
/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/icu4c/i18n/ |
coleitr.cpp | 160 void CollationElementIterator::setOffset(int32_t newOffset, 163 ucol_setOffset(m_data_, newOffset, &status);
|
/external/icu4c/i18n/unicode/ |
coleitr.h | 269 * @param newOffset the new offset. 274 void setOffset(int32_t newOffset, UErrorCode& status);
|