Searched refs:CountText (Results 1 – 10 of 10) sorted by relevance
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/text/ |
H A D | font.cpp | 226 int Font::CountText(const void* text, size_t byteLength, TextEncoding encoding) const in CountText() function in OHOS::Rosen::Drawing::Font 228 return fontImpl_->CountText(text, byteLength, encoding); in CountText()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/text/ |
H A D | font.h | 250 int CountText(const void* text, size_t byteLength, TextEncoding encoding) const;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/ |
H A D | font_impl.h | 73 virtual int CountText(const void* text, size_t byteLength, TextEncoding encoding) const = 0;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/ |
H A D | skia_font.h | 78 int CountText(const void* text, size_t byteLength, TextEncoding encoding) const override;
|
H A D | skia_font.cpp | 259 int SkiaFont::CountText(const void* text, size_t byteLength, TextEncoding encoding) const in CountText() function in OHOS::Rosen::Drawing::SkiaFont
|
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/font_napi/ |
H A D | js_font.cpp | 49 DECLARE_NAPI_FUNCTION("countText", JsFont::CountText), 277 napi_value JsFont::CountText(napi_env env, napi_callback_info info) in CountText() function in OHOS::Rosen::Drawing::JsFont 722 int32_t textSize = m_font->CountText(text.c_str(), text.length(), TextEncoding::UTF8); in OnCountText() 820 …uint32_t glyphCount = static_cast<uint32_t>(m_font->CountText(text.c_str(), text.length(), TextEnc… in OnTextToGlyphs()
|
H A D | js_font.h | 59 static napi_value CountText(napi_env env, napi_callback_info info);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/ |
H A D | drawing_text_blob.cpp | 102 const int count = font.CountText(text, byteLength, static_cast<TextEncoding>(cTextEncoding)); in OH_Drawing_TextBlobCreateFromPosText()
|
H A D | drawing_font.cpp | 210 return font->CountText(text, byteLength, static_cast<TextEncoding>(encoding)); in OH_Drawing_FontCountText()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/text/font_fuzzer/ |
H A D | font_fuzzer.cpp | 240 font.CountText(text, count, TextEncoding::UTF8); in FontFuzzTest007()
|