HomeSort by relevance Sort by last modified time
    Searched refs:ByteArray (Results 51 - 75 of 124) sorted by null

1 23 4 5

  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 33 import com.android.dx.util.ByteArray;
63 ByteArray ba = new ByteArray(bytes);
93 public void parsed(ByteArray bytes, int offset, int len, String human) {
98 public void startParsingMember(ByteArray bytes, int offset, String name,
103 public void endParsingMember(ByteArray bytes, int offset, String name,
SsaDumper.java 38 import com.android.dx.util.ByteArray;
83 public void endParsingMember(ByteArray bytes, int offset, String name,
  /external/javassist/src/main/javassist/bytecode/stackmap/
Tracer.java 18 import javassist.bytecode.ByteArray;
195 doLDC(ByteArray.readU16bit(code, pos + 1));
551 visitBranch(pos, code, ByteArray.readS16bit(code, pos + 1));
562 visitBranch(pos, code, ByteArray.readS16bit(code, pos + 1));
565 visitGoto(pos, code, ByteArray.readS16bit(code, pos + 1));
576 int low = ByteArray.read32bit(code, pos2);
577 int high = ByteArray.read32bit(code, pos2 + 4);
579 visitTableSwitch(pos, code, n, pos2 + 8, ByteArray.read32bit(code, pos2 - 4));
584 int n = ByteArray.read32bit(code, pos2);
585 visitLookupSwitch(pos, code, n, pos2 + 4, ByteArray.read32bit(code, pos2 - 4))
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 165 numOfEntries = ByteArray.readU16bit(data, 0);
205 int offset = ByteArray.readU16bit(info, pos + 1);
210 int offset = ByteArray.readU16bit(info, pos + 1);
238 offset = ByteArray.readU16bit(info, pos + 1);
245 data = ByteArray.readU16bit(info, pos + 2);
279 int offset = ByteArray.readU16bit(info, pos + 1);
287 data[i] = ByteArray.readU16bit(info, p + 1);
313 int offset = ByteArray.readU16bit(info, pos + 1);
314 int numOfLocals = ByteArray.readU16bit(info, pos + 3);
318 int numOfItems = ByteArray.readU16bit(info, p)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 37 import com.android.dx.util.ByteArray;
83 private final ByteArray bytes;
176 public DirectClassFile(ByteArray bytes, String filePath,
205 this(new ByteArray(bytes), filePath, strictParse);
231 * Gets the {@link ByteArray} that this instance's data comes from.
235 public ByteArray getBytes() {
564 private final ByteArray bytes;
582 public DcfTypeList(ByteArray bytes, int offset, int size,
MemberListParser.java 28 import com.android.dx.util.ByteArray;
118 ByteArray bytes = cf.getBytes();
177 ByteArray bytes = cf.getBytes();
AttributeListParser.java 23 import com.android.dx.util.ByteArray;
126 ByteArray bytes = cf.getBytes();
StdAttributeFactory.java 56 import com.android.dx.util.ByteArray;
217 ByteArray bytes = cf.getBytes();
321 ByteArray bytes = cf.getBytes();
355 ByteArray bytes = cf.getBytes();
384 ByteArray bytes = cf.getBytes();
412 ByteArray bytes = cf.getBytes();
469 ByteArray bytes = cf.getBytes();
510 ByteArray bytes = cf.getBytes();
533 ByteArray bytes = cf.getBytes();
558 private LocalVariableList parseLocalVariables(ByteArray bytes
    [all...]
AnnotationParser.java 43 import com.android.dx.util.ByteArray;
59 private final ByteArray bytes;
65 private final ByteArray.MyDataInputStream input;
110 // ByteArray.MyDataInputStream should never throw.
134 // ByteArray.MyDataInputStream should never throw.
159 // ByteArray.MyDataInputStream should never throw.
CodeObserver.java 31 import com.android.dx.util.ByteArray;
43 private final ByteArray bytes;
54 public CodeObserver(ByteArray bytes, ParseObserver observer) {
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEComposite.cpp 34 #include <wtf/ByteArray.h>
153 inline void arithmetic(ByteArray* srcPixelArrayA, ByteArray* srcPixelArrayB,
211 ByteArray* dstPixelArray = createPremultipliedImageResult();
216 RefPtr<ByteArray> srcPixelArray = in->asPremultipliedImage(effectADrawingRect);
FEColorMatrix.cpp 33 #include <wtf/ByteArray.h>
128 void effectType(ByteArray* pixelArray, const Vector<float>& values)
175 RefPtr<ByteArray> pixelArray = resultImage->getUnmultipliedImageData(imageRect);
FEMorphology.cpp 33 #include <wtf/ByteArray.h>
112 ByteArray* dstPixelArray = createPremultipliedImageResult();
125 RefPtr<ByteArray> srcPixelArray = in->asPremultipliedImage(effectDrawingRect);
FEConvolveMatrix.cpp 33 #include <wtf/ByteArray.h>
225 ALWAYS_INLINE void setDestinationPixels(ByteArray* image, int& pixel, float* totals, float divisor, float bias, ByteArray* src)
402 ByteArray* resultImage;
412 RefPtr<ByteArray> srcPixelArray;
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 20 import javassist.bytecode.ByteArray;
350 ByteArray.write16bit(value, buf, 0);
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 160 PassRefPtr<ByteArray> getImageData(const IntRect& rect, const ImageBufferData& data, const IntSize& size)
164 RefPtr<ByteArray> result = ByteArray::create(rect.width() * rect.height() * 4);
218 PassRefPtr<ByteArray> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const
223 PassRefPtr<ByteArray> ImageBuffer::getPremultipliedImageData(const IntRect& rect) const
229 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& data, const IntSize& size)
286 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
291 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 201 PassRefPtr<ByteArray> getImageData(const IntRect& rect, const ImageBufferData& imageData, const IntSize& size)
203 RefPtr<ByteArray> result = ByteArray::create(rect.width() * rect.height() * 4);
279 PassRefPtr<ByteArray> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const
284 PassRefPtr<ByteArray> ImageBuffer::getPremultipliedImageData(const IntRect& rect) const
306 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& data, const IntSize& size)
386 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
391 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 168 PassRefPtr<ByteArray> getImageData(const IntRect& rect, SkDevice& srcDevice,
175 RefPtr<ByteArray> result = ByteArray::create(rect.width() * rect.height() * 4);
257 PassRefPtr<ByteArray> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const
263 PassRefPtr<ByteArray> ImageBuffer::getPremultipliedImageData(const IntRect& rect) const
270 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint,
339 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
345 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageBufferAndroid.cpp 117 PassRefPtr<ByteArray> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const
130 RefPtr<ByteArray> result = ByteArray::create(rect.width() * rect.height() * 4);
179 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 45 import com.android.dx.util.ByteArray;
54 private final ByteArray bytes;
77 public ConstantPoolParser(ByteArray bytes) {
343 ByteArray ubytes = bytes.slice(at, at + length);
  /external/webkit/Source/JavaScriptCore/
Android.v8.wtf.mk 30 wtf/ByteArray.cpp \
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 27 import com.android.dx.util.ByteArray;
71 ByteArray ba = new ByteArray(bytes);
  /external/webkit/Source/JavaScriptCore/runtime/
JSByteArray.cpp 36 const ClassInfo JSByteArray::s_defaultInfo = { "ByteArray", &Base::s_info, 0, 0 };
38 JSByteArray::JSByteArray(ExecState* exec, Structure* structure, ByteArray* storage)
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 254 PassRefPtr<ByteArray> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const
261 PassRefPtr<ByteArray> ImageBuffer::getPremultipliedImageData(const IntRect& rect) const
268 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
275 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
ImageBufferDataCG.cpp 111 PassRefPtr<ByteArray> ImageBufferData::getData(const IntRect& rect, const IntSize& size, bool accelerateRendering, bool unmultiplied) const
117 RefPtr<ByteArray> result = ByteArray::create(rect.width() * rect.height() * 4);
255 void ImageBufferData::putData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& size, bool accelerateRendering, bool unmultiplied)

Completed in 693 milliseconds

1 23 4 5