HomeSort by relevance Sort by last modified time
    Searched refs:textBytes (Results 1 - 16 of 16) sorted by null

  /external/skia/tools/
SkShaper_primitive.cpp 35 size_t textBytes,
40 int glyphCount = paint.countText(utf8text, textBytes);
45 (void)paint.measureText(utf8text, textBytes, &bounds);
48 builder->allocRunTextPosH(paint, glyphCount, point.y(), textBytes, SkString(), &bounds);
49 memcpy(runBuffer.utf8text, utf8text, textBytes);
55 SkASSERT(txtPtr <= utf8text + textBytes);
58 (void)paint.textToGlyphs(utf8text, textBytes, runBuffer.glyphs);
59 (void)paint.getTextWidths(utf8text, textBytes, runBuffer.pos);
SkShaper.h 34 size_t textBytes,
SkShaper_harfbuzz.cpp 87 size_t textBytes,
108 paint, SkToInt(len), SkToInt(textBytes), SkString());
109 memcpy(runBuffer.utf8text, utf8text, textBytes);
using_skia_and_harfbuzz.cpp 140 void WriteLine(const SkShaper& shaper, const char *text, size_t textBytes) {
153 shaper.shape(&textBlobBuilder, glyph_paint, text, textBytes, SkPoint{0, 0});
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
HSFriendlyNameElement.java 57 int textBytes = name.getText().getBytes(StandardCharsets.UTF_8).length;
58 if (textBytes > MAXIMUM_OPERATOR_NAME_LENGTH) {
60 + textBytes);
VenueNameElement.java 80 int textBytes = name.getText().getBytes(StandardCharsets.UTF_8).length;
81 if (textBytes > MAXIMUM_VENUE_NAME_LENGTH) {
82 throw new ProtocolException("Venue Name exceeds the maximum allowed " + textBytes);
  /packages/apps/Tag/src/com/android/apps/tag/record/
TextRecord.java 140 byte[] textBytes = text.getBytes(utfEncoding);
148 textBytes
  /external/skia/include/core/
SkTextBlob.h 229 int count, int textBytes, SkPoint offset, const SkRect* bounds);
  /packages/apps/Tag/canon/src/com/android/apps/tagcanon/
TagCanon.java 59 byte[] textBytes = text.getBytes(utfEncoding);
67 textBytes
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 381 final byte[] textBytes = text.getBytes("UTF-8");
383 out.write(Base64.encode(textBytes, Base64.CRLF));
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
disasm.go 47 textStart, textBytes, err := f.Text()
73 text: textBytes,
75 textEnd: textStart + uint64(len(textBytes)),
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
disasm.go 47 textStart, textBytes, err := f.Text()
73 text: textBytes,
75 textEnd: textStart + uint64(len(textBytes)),
  /frameworks/base/core/java/android/nfc/
NdefRecord.java 493 byte[] textBytes = text.getBytes(StandardCharsets.UTF_8);
506 ByteBuffer buffer = ByteBuffer.allocate(1 + languageCodeBytes.length + textBytes.length);
511 buffer.put(textBytes);
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
ANQPParserTest.java 230 byte[] textBytes = text[i].getBytes(StandardCharsets.UTF_8);
239 stream.write(textBytes);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
TestCharsetDetector.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
TestCharsetDetector.java     [all...]

Completed in 478 milliseconds