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

1 2 3 4 5 6 7 8

  /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() {
AttExceptions.java 54 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/chromium_org/third_party/WebKit/Source/core/html/canvas/
ArrayBufferView.idl 32 readonly attribute unsigned long byteLength;
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBufferView.h 71 virtual unsigned byteLength() const = 0;
101 if (byteOffset > buffer->byteLength())
103 unsigned remainingElements = (buffer->byteLength() - byteOffset) / sizeof(T);
119 *offset = buffer->byteLength();
124 *offset = std::min(buffer->byteLength(), *offset);
125 unsigned remainingElements = (buffer->byteLength() - *offset) / sizeof(T);
146 if (byteOffset > byteLength()
147 || byteOffset + array->byteLength() > byteLength()
148 || byteOffset + array->byteLength() < byteOffset)
    [all...]
ArrayBuffer.h 46 static inline PassRefPtr<ArrayBuffer> create(const void* source, unsigned byteLength);
54 inline unsigned byteLength() const;
102 return ArrayBuffer::create(other->data(), other->byteLength());
105 PassRefPtr<ArrayBuffer> ArrayBuffer::create(const void* source, unsigned byteLength)
107 ArrayBufferContents contents(byteLength, 1, ArrayBufferContents::ZeroInitialize);
111 memcpy(buffer->data(), source, byteLength);
149 unsigned ArrayBuffer::byteLength() const
161 return sliceImpl(clampIndex(begin), byteLength());
172 unsigned currentLength = byteLength();
  /external/chromium_org/third_party/tlslite/tlslite/utils/
PyCrypto_RSAKey.py 30 byteLength = numBytes(self.n)
31 if len(s)== byteLength:
33 elif len(s) == byteLength-1:
42 byteLength = numBytes(self.n)
43 if len(s)== byteLength:
45 elif len(s) == byteLength-1:
  /external/chromium_org/third_party/skia/include/core/
SkDraw.h 50 void drawText(const char text[], size_t byteLength, SkScalar x,
52 void drawPosText(const char text[], size_t byteLength,
55 void drawTextOnPath(const char text[], size_t byteLength,
58 void drawPosTextOnPath(const char text[], size_t byteLength,
101 void drawText_asPaths(const char text[], size_t byteLength,
106 void drawPosText_asPaths(const char text[], size_t byteLength,
  /external/skia/include/core/
SkDraw.h 52 void drawText(const char text[], size_t byteLength, SkScalar x,
54 void drawPosText(const char text[], size_t byteLength,
57 void drawTextOnPath(const char text[], size_t byteLength,
60 void drawPosTextOnPath(const char text[], size_t byteLength,
102 void drawText_asPaths(const char text[], size_t byteLength,
104 void drawPosText_asPaths(const char text[], size_t byteLength,
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
Crypto.cpp 68 if (array->byteLength() > 65536) {
72 cryptographicallyRandomValues(array->baseAddress(), array->byteLength());
  /external/chromium_org/third_party/WebKit/Source/web/
WebArrayBufferView.cpp 59 unsigned WebArrayBufferView::byteLength() const
61 return m_private->byteLength();

Completed in 360 milliseconds

1 2 3 4 5 6 7 8