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

1 2 3 4 5 6 7 8 91011

  /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;
55 public int byteLength() {
57 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;
60 public final int byteLength() {
62 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;
61 public final int byteLength() {
63 return byteLength + 6;
AttBootstrapMethods.java 33 private final int byteLength;
44 this.byteLength = bytes;
48 public int byteLength() {
49 return byteLength;
AttDeprecated.java 35 public int byteLength() {
AttSynthetic.java 35 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 97 public int byteLength() {
98 return 10 + code.byteLength() + catches.byteLength() +
99 attributes.byteLength();
AttSignature.java 48 public int byteLength() {
AttSourceFile.java 48 public int byteLength() {
AttExceptions.java 55 public int byteLength() {
AttInnerClasses.java 53 public int byteLength() {
AttLineNumberTable.java 54 public int byteLength() {
AttSourceDebugExtension.java 48 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/skia/gm/
skbug_5321.cpp 20 size_t byteLength = strlen(text);
21 canvas->drawText(text, byteLength, x, y, paint);
23 int glyph_count = paint.countText(text, byteLength);
25 (void)paint.getTextWidths(text, byteLength, &widths[0]);
32 canvas->drawPosTextH(text, byteLength, &widths[0], y, paint);
  /external/skqp/gm/
skbug_5321.cpp 20 size_t byteLength = strlen(text);
21 canvas->drawText(text, byteLength, x, y, paint);
23 int glyph_count = paint.countText(text, byteLength);
25 (void)paint.getTextWidths(text, byteLength, &widths[0]);
32 canvas->drawPosTextH(text, byteLength, &widths[0], y, paint);
  /external/annotation-tools/asmx/src/org/objectweb/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/skqp/src/gpu/text/
GrAtlasTextContext.h 52 size_t byteLength, SkScalar x, SkScalar y, const SkIRect& regionClipBounds);
55 size_t byteLength, const SkScalar pos[], int scalarsPerPosition,
86 const char text[], size_t byteLength,
95 const char text[], size_t byteLength,
104 const char text[], size_t byteLength, SkScalar x, SkScalar y);
109 const char text[], size_t byteLength, const SkScalar pos[],
119 const SkMatrix& viewMatrix, const char text[], size_t byteLength, SkScalar x,
126 size_t byteLength, const SkScalar pos[], int scalarsPerPosition,

Completed in 707 milliseconds

1 2 3 4 5 6 7 8 91011