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

1 2 3 4 5 6 7 8 910

  /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();
  /dalvik/dx/src/com/android/dx/cf/iface/
Attribute.java 37 public int byteLength();
AttributeList.java 55 public int byteLength();
  /external/v8/test/mjsunit/es6/
built-in-accessor-names.js 19 assertGetterName('get byteLength', ArrayBuffer.prototype, 'byteLength');
28 assertGetterName('get byteLength', TypedArray.prototype, 'byteLength');
35 assertGetterName('get byteLength', DataView.prototype, 'byteLength');
  /external/v8/test/mjsunit/regress/
regress-447756.js 10 assertSame(Infinity, 1 / a.byteLength);
13 assertSame(Infinity, 1 / ab.byteLength);
17 assertSame(Infinity, 1 / a1.byteLength);
34 assertSame(Infinity, 1 / a.byteLength);
37 assertSame(Infinity, 1 / ab.byteLength);
41 assertSame(Infinity, 1 / a1.byteLength);
regress-5018.js 8 return a.byteLength;
14 Object.defineProperty(dv.__proto__, 'byteLength', {value: 42});
16 assertEquals(42, dv.byteLength);
regress-610633.js 10 return a.byteLength;
29 Object.defineProperty(a.__proto__, 'byteLength', {value: 42});
32 assertEquals(42, a.byteLength);
regress-crbug-503578.js 6 function __f_0(byteLength) {
7 var __v_1 = new ArrayBuffer(byteLength);
regress-crbug-351787.js 8 ab1.__defineGetter__("byteLength", function() { return 1000000; });
18 ab3.__defineGetter__("byteLength", function() { return 0xFFFFFFFC; });
24 assertEquals(8, aaa.byteLength);
36 ab4.__defineGetter__("byteLength", function() { return 0xFFFFFFFC; });
  /external/skia/src/gpu/text/
GrTextUtils.h 42 const char text[], size_t byteLength,
48 const char text[], size_t byteLength,
60 const char text[], size_t byteLength,
66 const char text[], size_t byteLength,
73 const char text[], size_t byteLength, SkScalar x, SkScalar y,
81 const char text[], size_t byteLength,
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ByteVector.java 220 int byteLength = i;
224 byteLength++;
226 byteLength += 3;
228 byteLength += 2;
231 data[length] = (byte) (byteLength >>> 8);
232 data[length + 1] = (byte) byteLength;
233 if (length + 2 + byteLength > data.length) {
235 enlarge(2 + byteLength);
  /external/skia/src/gpu/
GrPathRenderingDrawContext.h 18 const SkMatrix& viewMatrix, const char text[], size_t byteLength,
21 const SkMatrix& viewMatrix, const char text[], size_t byteLength,

Completed in 572 milliseconds

1 2 3 4 5 6 7 8 910