| /external/javassist/src/main/javassist/bytecode/ |
| LineNumberAttribute.java | 46 return ByteArray.readU16bit(info, 0); 57 return ByteArray.readU16bit(info, i * 4 + 2); 68 return ByteArray.readU16bit(info, i * 4 + 4); 176 int pc = ByteArray.readU16bit(info, pos); 178 ByteArray.write16bit(pc + gapLength, info, pos);
|
| ByteArray.java | 21 public class ByteArray {
|
| ConstantAttribute.java | 56 return ByteArray.readU16bit(get(), 0);
|
| LocalVariableTypeAttribute.java | 38 ByteArray.write16bit(0, info, 0);
|
| SourceFileAttribute.java | 56 return getConstPool().getUtf8Info(ByteArray.readU16bit(get(), 0));
|
| AnnotationsAttribute.java | 156 return ByteArray.readU16bit(info, 0); 328 int num = ByteArray.readU16bit(info, pos); 340 int type = ByteArray.readU16bit(info, pos); 341 int numPairs = ByteArray.readU16bit(info, pos + 2); 353 int nameIndex = ByteArray.readU16bit(info, pos); 364 int typeNameIndex = ByteArray.readU16bit(info, pos + 1); 365 int constNameIndex = ByteArray.readU16bit(info, pos + 3); 370 int index = ByteArray.readU16bit(info, pos + 1); 377 int num = ByteArray.readU16bit(info, pos + 1); 381 int index = ByteArray.readU16bit(info, pos + 1) [all...] |
| EnclosingMethodAttribute.java | 81 return ByteArray.readU16bit(get(), 0); 88 return ByteArray.readU16bit(get(), 2);
|
| /external/webkit/Source/WebCore/platform/graphics/ |
| ImageBuffer.h | 37 #include <wtf/ByteArray.h> 89 PassRefPtr<ByteArray> getUnmultipliedImageData(const IntRect&) const; 90 PassRefPtr<ByteArray> getPremultipliedImageData(const IntRect&) const; 92 void putUnmultipliedImageData(ByteArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint); 93 void putPremultipliedImageData(ByteArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint);
|
| /dalvik/dx/src/com/android/dx/cf/direct/ |
| AttributeFactory.java | 25 import com.android.dx.util.ByteArray; 82 ByteArray bytes = cf.getBytes(); 124 ByteArray bytes = cf.getBytes();
|
| /cts/tools/dx-tests/src/dxconvext/ |
| ClassFileParser.java | 24 import com.android.dx.util.ByteArray; 132 public void startParsingMember(ByteArray bytes, int offset, 134 // ByteArray ba = bytes.slice(offset, bytes.size()); 152 public void endParsingMember(ByteArray bytes, int offset, 154 ByteArray ba = bytes.slice(offset, bytes.size()); 170 public void parsed(ByteArray bytes, int offset, int len, 176 ByteArray ba = bytes.slice(offset, offset + len); 188 private void check(ByteArray ba) { 203 private String dumpBytes(ByteArray ba) { 216 private String dumpReadableString(ByteArray ba) [all...] |
| /external/webkit/Source/JavaScriptCore/runtime/ |
| JSByteArray.h | 31 #include <wtf/ByteArray.h> 78 JSByteArray(ExecState*, Structure*, WTF::ByteArray* storage); 93 WTF::ByteArray* storage() const { return m_storage.get(); } 108 RefPtr<WTF::ByteArray> m_storage;
|
| /external/webkit/Source/WebCore/platform/graphics/filters/ |
| FEGaussianBlur.cpp | 35 #include <wtf/ByteArray.h> 77 inline void boxBlur(ByteArray* srcPixelArray, ByteArray* dstPixelArray, 176 ByteArray* srcPixelArray = createPremultipliedImageResult(); 193 RefPtr<ByteArray> tmpImageData = ByteArray::create(paintSize.width() * paintSize.height() * 4); 194 ByteArray* tmpPixelArray = tmpImageData.get(); 206 ByteArray* auxPixelArray = tmpPixelArray; 215 ByteArray* auxPixelArray = tmpPixelArray;
|
| FEConvolveMatrix.h | 87 ByteArray* srcPixelArray; 88 ByteArray* dstPixelArray;
|
| FEBlend.cpp | 34 #include <wtf/ByteArray.h> 108 ByteArray* dstPixelArray = createPremultipliedImageResult(); 113 RefPtr<ByteArray> srcPixelArrayA = in->asPremultipliedImage(effectADrawingRect); 116 RefPtr<ByteArray> srcPixelArrayB = in2->asPremultipliedImage(effectBDrawingRect);
|
| FEDisplacementMap.cpp | 34 #include <wtf/ByteArray.h> 105 ByteArray* dstPixelArray = createPremultipliedImageResult(); 110 RefPtr<ByteArray> srcPixelArrayA = in->asPremultipliedImage(effectADrawingRect); 113 RefPtr<ByteArray> srcPixelArrayB = in2->asUnmultipliedImage(effectBDrawingRect);
|
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| StringDataItem.java | 21 import com.android.dexgen.util.ByteArray; 72 ByteArray bytes = value.getBytes();
|
| /dalvik/dx/src/com/android/dx/dex/file/ |
| StringDataItem.java | 21 import com.android.dx.util.ByteArray; 72 ByteArray bytes = value.getBytes();
|
| /dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
| CstUtf8.java | 19 import com.android.dexgen.util.ByteArray; 36 private final ByteArray bytes; 79 public static String utf8BytesToString(ByteArray bytes) { 186 this.bytes = new ByteArray(stringToUtf8Bytes(string)); 194 public CstUtf8(ByteArray bytes) { 346 public ByteArray getBytes() {
|
| /dalvik/dexgen/src/com/android/dexgen/util/ |
| ByteArray.java | 29 public final class ByteArray { 48 public ByteArray(byte[] bytes, int start, int end) { 75 public ByteArray(byte[] bytes) { 96 public ByteArray slice(int start, int end) { 98 return new ByteArray(bytes, start + this.start, end + this.start);
|
| /dalvik/dx/src/com/android/dx/command/dump/ |
| BaseDumper.java | 23 import com.android.dx.util.ByteArray; 126 public void parsed(ByteArray bytes, int offset, int len, String human) { 146 public void startParsingMember(ByteArray bytes, int offset, String name, 152 public void endParsingMember(ByteArray bytes, int offset, String name, 173 protected final void setAt(ByteArray arr, int offset) {
|
| BlockDumper.java | 42 import com.android.dx.util.ByteArray; 109 ByteArray ba = new ByteArray(bytes); 137 public void parsed(ByteArray bytes, int offset, int len, String human) { 153 public void startParsingMember(ByteArray bytes, int offset, String name, 181 public void endParsingMember(ByteArray bytes, int offset, String name, 213 ByteArray bytes = code.getBytes(); 289 ByteArray bytes = code.getBytes();
|
| /dalvik/dx/src/com/android/dx/rop/cst/ |
| CstString.java | 20 import com.android.dx.util.ByteArray; 37 private final ByteArray bytes; 79 public static String utf8BytesToString(ByteArray bytes) { 186 this.bytes = new ByteArray(stringToUtf8Bytes(string)); 194 public CstString(ByteArray bytes) { 346 public ByteArray getBytes() {
|
| /dalvik/dx/src/com/android/dx/util/ |
| ByteArray.java | 29 public final class ByteArray { 48 public ByteArray(byte[] bytes, int start, int end) { 75 public ByteArray(byte[] bytes) { 96 public ByteArray slice(int start, int end) { 98 return new ByteArray(bytes, start + this.start, end + this.start);
|
| /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
| AbstractSessionContext.java | 49 private final Map<ByteArray, SSLSession> sessions 50 = new LinkedHashMap<ByteArray, SSLSession>() { 53 Map.Entry<ByteArray, SSLSession> eldest) { 260 ByteArray key = new ByteArray(sessionId); 276 ByteArray key = new ByteArray(id);
|
| /external/webkit/Source/WebCore/platform/graphics/wince/ |
| ImageBufferWinCE.cpp | 131 static PassRefPtr<ByteArray> getImageData(const IntRect& rect, const SharedBitmap* bitmap) 133 RefPtr<ByteArray> imageData = ByteArray::create(rect.width() * rect.height() * 4); 180 PassRefPtr<ByteArray> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const 185 PassRefPtr<ByteArray> ImageBuffer::getPremultipliedImageData(const IntRect& rect) const 191 static void putImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, SharedBitmap* bitmap) 235 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) 240 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
|