HomeSort by relevance Sort by last modified time
    Searched refs:byteLength (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java 33 private final int byteLength;
39 * @param byteLength {@code >= 0;} attribute data length in the original
42 public AttAnnotationDefault(Constant value, int byteLength) {
50 this.byteLength = byteLength;
54 public int byteLength() {
56 return byteLength + 6;
BaseAnnotations.java 31 private final int byteLength;
38 * @param byteLength {@code >= 0;} attribute data length in the original
42 int byteLength) {
55 this.byteLength = byteLength;
59 public final int byteLength() {
61 return byteLength + 6;
BaseParameterAnnotations.java 31 private final int byteLength;
38 * @param byteLength {@code >= 0;} attribute data length in the original
42 AnnotationsList parameterAnnotations, int byteLength) {
56 this.byteLength = byteLength;
60 public final int byteLength() {
62 return byteLength + 6;
AttDeprecated.java 34 public int byteLength() {
AttSynthetic.java 34 public int byteLength() {
AttRuntimeInvisibleAnnotations.java 33 * @param byteLength {@code >= 0;} attribute data length in the original
37 int byteLength) {
38 super(ATTRIBUTE_NAME, annotations, byteLength);
AttRuntimeInvisibleParameterAnnotations.java 35 * @param byteLength {@code >= 0;} attribute data length in the original
39 AnnotationsList parameterAnnotations, int byteLength) {
40 super(ATTRIBUTE_NAME, parameterAnnotations, byteLength);
AttRuntimeVisibleAnnotations.java 33 * @param byteLength {@code >= 0;} attribute data length in the original
37 int byteLength) {
38 super(ATTRIBUTE_NAME, annotations, byteLength);
AttRuntimeVisibleParameterAnnotations.java 35 * @param byteLength {@code >= 0;} attribute data length in the original
39 AnnotationsList annotations, int byteLength) {
40 super(ATTRIBUTE_NAME, annotations, byteLength);
AttCode.java 96 public int byteLength() {
97 return 10 + code.byteLength() + catches.byteLength() +
98 attributes.byteLength();
AttSignature.java 47 public int byteLength() {
AttSourceFile.java 47 public int byteLength() {
  /dalvik/dexgen/src/com/android/dexgen/rop/
Attribute.java 37 public int byteLength();
AttributeList.java 55 public int byteLength();
  /external/webkit/Source/WebCore/html/canvas/
ArrayBuffer.idl 34 readonly attribute int byteLength;
ArrayBufferView.cpp 47 if (byteOffset > byteLength()
48 || byteOffset + array->byteLength() > byteLength()
49 || byteOffset + array->byteLength() < byteOffset) {
56 memmove(base + byteOffset, array->baseAddress(), array->byteLength());
61 if (byteOffset > byteLength()
62 || byteOffset + dataByteLength > byteLength()
75 if (byteOffset > byteLength()
76 || byteOffset + rangeByteLength > byteLength()
WebGLBuffer.cpp 58 bool WebGLBuffer::associateBufferDataImpl(ArrayBuffer* array, GC3Dintptr byteOffset, GC3Dsizeiptr byteLength)
60 if (byteLength < 0 || byteOffset < 0)
63 if (array && byteLength) {
65 CheckedInt<GC3Dsizeiptr> checkedLength(byteLength);
67 if (!checkedMax.valid() || checkedMax.value() > static_cast<int32_t>(array->byteLength()))
73 m_byteLength = byteLength;
75 if (byteLength) {
76 m_elementArrayBuffer = ArrayBuffer::create(byteLength, 1);
87 byteLength);
93 m_byteLength = byteLength;
    [all...]
ArrayBuffer.h 38 static PassRefPtr<ArrayBuffer> create(void* source, unsigned byteLength);
42 unsigned byteLength() const;
ArrayBufferView.idl 30 readonly attribute unsigned long byteLength;
ArrayBuffer.cpp 43 return ArrayBuffer::create(other->data(), other->byteLength());
46 PassRefPtr<ArrayBuffer> ArrayBuffer::create(void* source, unsigned byteLength)
48 void* data = tryAllocate(byteLength, 1);
51 RefPtr<ArrayBuffer> buffer = adoptRef(new ArrayBuffer(data, byteLength));
52 memcpy(buffer->data(), source, byteLength);
72 unsigned ArrayBuffer::byteLength() const
ArrayBufferView.h 67 virtual unsigned byteLength() const = 0;
94 if (byteOffset > buffer->byteLength())
96 unsigned remainingElements = (buffer->byteLength() - byteOffset) / sizeof(T);
112 *offset = buffer->byteLength();
117 *offset = std::min(buffer->byteLength(), *offset);
118 unsigned remainingElements = (buffer->byteLength() - *offset) / sizeof(T);
  /dalvik/dx/src/com/android/dx/cf/iface/
Attribute.java 37 public int byteLength();
AttributeList.java 55 public int byteLength();
  /external/webkit/Source/WebCore/platform/graphics/android/context/
RecordingContextCanvasProxy.cpp 46 size_t byteLength,
50 m_pgc->drawPosText(text, byteLength, pos, paint);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
InspectorCanvas.h 77 virtual void drawText(const void*, size_t byteLength, SkScalar,
79 virtual void drawPosText(const void* , size_t byteLength,
81 virtual void drawPosTextH(const void*, size_t byteLength,
84 virtual void drawTextOnPath(const void*, size_t byteLength,

Completed in 217 milliseconds

1 2 3 4 5 6