Searched refs:codepoint (Results 1 - 11 of 11) sorted by relevance

/frameworks/minikin/sample/
H A DMinikinSkia.h9 bool GetGlyph(uint32_t codepoint, uint32_t *glyph) const;
H A DMinikinSkia.cpp17 bool MinikinFontSkia::GetGlyph(uint32_t codepoint, uint32_t *glyph) const { argument
22 paint.textToGlyphs(&codepoint, sizeof(codepoint), &glyph16);
24 //printf("glyph for U+%04x = %d\n", codepoint, glyph16);
/frameworks/base/core/jni/android/graphics/
H A DHarfBuzzNGFaceSkia.cpp55 static void SkiaGetGlyphWidthAndExtents(SkPaint* paint, hb_codepoint_t codepoint, hb_position_t* width, hb_glyph_extents_t* extents) argument
57 ALOG_ASSERT(codepoint <= 0xFFFF);
62 uint16_t glyph = codepoint;
66 ALOGD("returned glyph for %i: width = %f", codepoint, skWidth);
H A DMinikinSkia.h31 bool GetGlyph(uint32_t codepoint, uint32_t *glyph) const;
H A DMinikinSkia.cpp35 bool MinikinFontSkia::GetGlyph(uint32_t codepoint, uint32_t *glyph) const { argument
40 paint.textToGlyphs(&codepoint, sizeof(codepoint), &glyph16);
/frameworks/minikin/include/minikin/
H A DMinikinFontFreeType.h45 bool GetGlyph(uint32_t codepoint, uint32_t *glyph) const;
H A DMinikinFont.h85 virtual bool GetGlyph(uint32_t codepoint, uint32_t *glyph) const = 0;
/frameworks/minikin/libs/minikin/
H A DMinikinFontFreeType.cpp41 bool MinikinFontFreeType::GetGlyph(uint32_t codepoint, uint32_t *glyph) const { argument
42 FT_UInt glyph_index = FT_Get_Char_Index(mTypeface, codepoint);
H A DLayout.cpp406 static hb_script_t codePointToScript(hb_codepoint_t codepoint) { argument
411 return hb_unicode_script(u, codepoint);
736 std::cout << positions[i].x_advance << " " << positions[i].y_advance << " " << positions[i].x_offset << " " << positions[i].y_offset << std::endl; std::cout << "DoLayout " << info[i].codepoint <<
745 hb_codepoint_t glyph_ix = info[i].codepoint;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java511 int codepoint = str.codePointAt(i);
512 if (!((lowerAlphabetFirst <= codepoint && codepoint < lowerAlphabetAfterLast) ||
513 (upperAlphabetFirst <= codepoint && codepoint < upperAlphabetAfterLast) ||
514 (digitFirst <= codepoint && codepoint < digitAfterLast) ||
515 (codepoint == hyphen))) {
/frameworks/base/core/java/android/text/
H A DHtml.java396 int codepoint = 0x010000 | (int) c - 0xD800 << 10 | (int) d - 0xDC00;
397 out.append("&#").append(codepoint).append(";");

Completed in 445 milliseconds