HomeSort by relevance Sort by last modified time
    Searched full:bytelength (Results 51 - 75 of 186) sorted by null

1 23 4 5 6 7 8

  /dalvik/dx/src/com/android/dx/cf/iface/
Attribute.java 37 public int byteLength();
  /external/libmojo/mojo/public/js/
buffer.js 27 Object.defineProperty(Buffer.prototype, "byteLength", {
28 get: function() { return this.arrayBuffer.byteLength; }
34 if (this.next > this.byteLength) {
35 var newSize = (1.5 * (this.byteLength + size)) | 0;
validation_unittests.js 44 if (data.byteLength != expectedData.byteLength) {
45 var s = "message length (" + data.byteLength + ") doesn't match " +
46 "expected length: " + expectedData.byteLength;
50 for (var i = 0; i < data.byteLength; i++) {
128 if (msg.buffer.byteLength != 0)
135 if (msg.buffer.byteLength != 0)
core_unittests.js 136 expect(read.buffer.byteLength).toBe(42);
164 expect(peeked.buffer.byteLength).toBe(42);
174 expect(read.buffer.byteLength).toBe(42);
  /external/skia/include/core/
SkFont.h 148 int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding,
151 int countText(const void* text, size_t byteLength, SkTextEncoding encoding) {
152 return this->textToGlyphs(text, byteLength, encoding, nullptr, 0);
155 SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding) const;
  /external/skia/src/core/
SkDraw.h 66 void drawText(const char text[], size_t byteLength, SkScalar x,
68 void drawPosText(const char text[], size_t byteLength,
117 void drawText_asPaths(const char text[], size_t byteLength, SkScalar x, SkScalar y,
119 void drawPosText_asPaths(const char text[], size_t byteLength, const SkScalar pos[],
SkValidatingReadBuffer.cpp 191 const size_t byteLength = count * elementSize;
192 this->validate(byteLength == byteLength64);
193 const void* ptr = this->skip(SkAlign4(byteLength));
195 memcpy(value, ptr, byteLength);
SkFindAndPlaceGlyph.h 48 SkPaint::TextEncoding, const char text[], size_t byteLength,
69 SkPaint::TextEncoding, const char text[], size_t byteLength,
568 static SkPoint MeasureText(LookupGlyph& glyphFinder, const char text[], size_t byteLength) {
570 const char* stop = text + byteLength;
589 SkPaint::TextEncoding textEncoding, const char text[], size_t byteLength,
611 const char* stop = text + byteLength;
684 const char* stop = text + byteLength;
694 SkPaint::TextEncoding textEncoding, const char text[], size_t byteLength,
705 SkVector stop = MeasureText(glyphFinder, text, byteLength);
728 const char* stop = text + byteLength;
    [all...]
  /external/skia/src/pipe/
SkPipeFormat.h 29 kDrawText, // extra == byteLength:24 else next 32
30 kDrawPosText, // extra == byteLength:24 else next 32
31 kDrawPosTextH, // extra == byteLength:24 else next 32
35 kDrawTextRSXform, // extra == (byteLength:23 << 1) else next 32 | has_cull_rect:1
  /external/v8/src/extensions/
free-buffer-extension.cc 26 contents.ByteLength());
  /external/skia/src/utils/
SkDeferredCanvas.cpp 453 void SkDeferredCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
456 fCanvas->drawText(text, byteLength, x, y, paint);
459 void SkDeferredCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
462 fCanvas->drawPosText(text, byteLength, pos, paint);
465 void SkDeferredCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
468 fCanvas->drawPosTextH(text, byteLength, xpos, constY, paint);
471 void SkDeferredCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
474 fCanvas->drawTextOnPath(text, byteLength, path, matrix, paint);
477 void SkDeferredCanvas::onDrawTextRSXform(const void* text, size_t byteLength,
487 fCanvas->drawTextRSXform(text, byteLength, xform, cullRect, paint)
    [all...]
SkDumpCanvas.cpp 405 void SkDumpCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
408 toString(text, byteLength, paint.getTextEncoding(), &str);
410 byteLength, SkScalarToFloat(x), SkScalarToFloat(y));
413 void SkDumpCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
416 toString(text, byteLength, paint.getTextEncoding(), &str);
418 str.c_str(), byteLength, SkScalarToFloat(pos[0].fX),
422 void SkDumpCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
425 toString(text, byteLength, paint.getTextEncoding(), &str);
427 str.c_str(), byteLength, SkScalarToFloat(xpos[0]),
431 void SkDumpCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path
    [all...]
  /external/skia/include/private/
SkRecords.h 292 size_t byteLength;
297 unsigned byteLength;
312 size_t byteLength;
323 size_t byteLength;
329 size_t byteLength;
  /external/skia/tools/debugger/
SkDebugCanvas.h 206 void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
208 void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
210 void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
212 void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
214 void onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform[], const SkRect*,
SkObjectParser.cpp 360 SkString* SkObjectParser::TextToString(const void* text, size_t byteLength,
367 decodedText->append((const char*)text, byteLength);
373 SkToS32(byteLength / 2),
376 SkUTF16_ToUTF8((uint16_t*)text, SkToS32(byteLength / 2), utf8);
383 const SkUnichar* end = (const SkUnichar*)((const char*)text + byteLength);
392 const uint16_t* end = (const uint16_t*)((const char*)text + byteLength);
  /external/v8/src/builtins/
builtins-dataview.cc 64 // 8. If byteLength is undefined, then
70 // a. Let viewByteLength be ? ToIndex(byteLength).
85 // [[ByteLength]], [[ByteOffset]]»).
97 // 13. Set O's [[ByteLength]] internal slot to viewByteLength.
114 // ES6 section 24.2.4.2 get DataView.prototype.byteLength
117 CHECK_RECEIVER(JSDataView, data_view, "get DataView.prototype.byteLength");
  /external/jline/src/src/main/java/jline/
WindowsTerminal.java 458 int byteLength;
473 byteLength = 1;
477 byteLength = 2;
479 byteLength = 4;
486 this.byteLength = 2;
489 this.byteLength = 3;
492 this.byteLength = 4;
516 return byteLength - byteRead;
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 54 public int byteLength() {
AttInnerClasses.java 52 public int byteLength() {
AttLineNumberTable.java 53 public int byteLength() {
AttSourceDebugExtension.java 48 public int byteLength() {
BaseLocalVariables.java 53 public final int byteLength() {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
TypesLengths.java 82 private static int byteLength = 1;
138 return byteLength;
218 byteLength = typeLength;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
HMac.java 84 * byteLength of the algorithm is know for.
96 int byteLength)
100 this.blockLength = byteLength;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winperf.h 140 DWORD ByteLength;
163 DWORD ByteLength;
172 DWORD ByteLength;

Completed in 1251 milliseconds

1 23 4 5 6 7 8