HomeSort by relevance Sort by last modified time
    Searched full:bytelength (Results 1 - 25 of 186) 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;
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();
  /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);
annotated_text.cpp 15 size_t byteLength = strlen(static_cast<const char*>(text));
17 (void)paint.measureText(text, byteLength, &bounds);
24 canvas->drawText(text, byteLength, x, y, paint);
  /external/skia/src/gpu/
GrPathRenderingRenderTargetContext.cpp 20 size_t byteLength, SkScalar x, SkScalar y,
33 viewMatrix, this->surfaceProps(), text, byteLength, x, y,
39 size_t byteLength, const SkScalar pos[],
55 this->surfaceProps(), text, byteLength, pos, scalarsPerPosition, offset, clipBounds);
GrPathRenderingRenderTargetContext.h 16 size_t byteLength, SkScalar x, SkScalar y, const SkIRect& clipBounds) override;
18 size_t byteLength, const SkScalar pos[], int scalarsPerPosition,
  /external/skia/include/utils/
SkLuaCanvas.h 33 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
35 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
37 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
39 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
41 void onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
SkNWayCanvas.h 42 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
44 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
46 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
48 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
52 void onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
SkPaintFilterCanvas.h 83 void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
85 void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
87 void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
89 void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
91 void onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
  /external/skia/src/core/
SkFont.cpp 57 int SkFont::textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
59 if (0 == byteLength) {
69 count = SkUTF8_CountUnichars((const char*)text, byteLength);
72 count = SkUTF16_CountUnichars((const uint16_t*)text, SkToInt(byteLength >> 1));
75 count = SkToInt(byteLength >> 2);
78 count = SkToInt(byteLength >> 1);
108 SkScalar SkFont::measureText(const void* text, size_t byteLength, SkTextEncoding encoding) const {
SkRecorder.cpp 248 void SkRecorder::onDrawText(const void* text, size_t byteLength,
251 paint, this->copy((const char*)text, byteLength), byteLength, x, y);
254 void SkRecorder::onDrawPosText(const void* text, size_t byteLength,
256 const int points = paint.countText(text, byteLength);
259 this->copy((const char*)text, byteLength),
260 byteLength,
264 void SkRecorder::onDrawPosTextH(const void* text, size_t byteLength,
266 const int points = paint.countText(text, byteLength);
269 this->copy((const char*)text, byteLength),
    [all...]
  /external/skia/src/utils/
SkPaintFilterCanvas.cpp 175 void SkPaintFilterCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
179 this->INHERITED::onDrawText(text, byteLength, x, y, *apf.paint());
183 void SkPaintFilterCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
187 this->INHERITED::onDrawPosText(text, byteLength, pos, *apf.paint());
191 void SkPaintFilterCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
195 this->INHERITED::onDrawPosTextH(text, byteLength, xpos, constY, *apf.paint());
199 void SkPaintFilterCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
203 this->INHERITED::onDrawTextOnPath(text, byteLength, path, matrix, *apf.paint());
207 void SkPaintFilterCanvas::onDrawTextRSXform(const void* text, size_t byteLength,
212 this->INHERITED::onDrawTextRSXform(text, byteLength, xform, cull, *apf.paint())
    [all...]
SkShadowPaintFilterCanvas.h 92 void onDrawText(const void *text, size_t byteLength, SkScalar x, SkScalar y,
95 void onDrawPosText(const void *text, size_t byteLength, const SkPoint pos[],
98 void onDrawPosTextH(const void *text, size_t byteLength, const SkScalar xpos[],
101 void onDrawTextOnPath(const void *text, size_t byteLength, const SkPath &path,
104 void onDrawTextRSXform(const void *text, size_t byteLength,
SkLuaCanvas.cpp 257 void SkLuaCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
260 lua.pushEncodedText(paint.getTextEncoding(), text, byteLength);
264 void SkLuaCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
267 lua.pushEncodedText(paint.getTextEncoding(), text, byteLength);
271 void SkLuaCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
274 lua.pushEncodedText(paint.getTextEncoding(), text, byteLength);
278 void SkLuaCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
282 lua.pushEncodedText(paint.getTextEncoding(), text, byteLength);
286 void SkLuaCanvas::onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
289 lua.pushEncodedText(paint.getTextEncoding(), text, byteLength);
    [all...]
SkNWayCanvas.cpp 229 void SkNWayCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
233 iter->drawText(text, byteLength, x, y, paint);
237 void SkNWayCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
241 iter->drawPosText(text, byteLength, pos, paint);
245 void SkNWayCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
249 iter->drawPosTextH(text, byteLength, xpos, constY, paint);
253 void SkNWayCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
257 iter->drawTextOnPath(text, byteLength, path, matrix, paint);
261 void SkNWayCanvas::onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
265 iter->drawTextRSXform(text, byteLength, xform, cull, paint)
    [all...]
  /external/skia/src/gpu/text/
GrAtlasTextContext.h 39 size_t byteLength, SkScalar x, SkScalar y, const SkIRect& regionClipBounds);
42 size_t byteLength, const SkScalar pos[], int scalarsPerPosition,
73 const char text[], size_t byteLength,
81 const char text[], size_t byteLength,
  /frameworks/base/libs/hwui/
SkiaCanvasProxy.h 82 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
84 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
86 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
88 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
90 virtual void onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform[],
  /frameworks/base/core/java/android/util/
ByteStringUtils.java 41 final int byteLength = bytes.length;
42 final int charCount = 2 * byteLength;
45 for (int i = 0; i < byteLength; i++) {
  /external/skia/src/pipe/
SkPipeCanvas.cpp 587 void SkPipeCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
589 SkASSERT(byteLength);
591 bool compact = fits_in(byteLength, 24);
594 writer.write32(pack_verb(SkPipeVerb::kDrawText, compact ? (unsigned)byteLength : 0));
596 writer.write32(SkToU32(byteLength));
598 write_pad(&writer, text, byteLength);
604 void SkPipeCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
606 SkASSERT(byteLength);
608 bool compact = fits_in(byteLength, 24);
611 writer.write32(pack_verb(SkPipeVerb::kDrawPosText, compact ? (unsigned)byteLength : 0))
    [all...]

Completed in 1652 milliseconds

1 2 3 4 5 6 7 8