Lines Matching refs:fontId

71 const FontHeader* GlyphsManager::GetFontHeader(uint16_t fontId)  in GetFontHeader()  argument
74 const FontHeader* tmp = glyphsFiles_[i]->GetFontHeader(fontId); in GetFontHeader()
83 const GlyphNode* GlyphsManager::GetGlyphNodeFromFiles(uint32_t unicode, uint16_t fontId) in GetGlyphNodeFromFiles() argument
88 ret = glyphsFiles_[i]->GetNodeFromFile(unicode, fontId, nodeInfo); in GetGlyphNodeFromFiles()
90 nodeInfo.fontId = fontId; in GetGlyphNodeFromFiles()
99 … GlyphCacheNode* cacheNode = UIFontCacheManager::GetInstance()->GetNodeCacheSpace(unicode, fontId); in GetGlyphNodeFromFiles()
109 const GlyphNode* GlyphsManager::GetGlyphNode(uint32_t unicode, uint16_t fontId) in GetGlyphNode() argument
112 …UIFontCacheManager::GetInstance()->GetNodeFromCache(unicode, fontId, GlyphCacheType::CACHE_TYPE_NO… in GetGlyphNode()
117 const GlyphNode* node = const_cast<GlyphNode*>(GetGlyphNodeFromFiles(unicode, fontId)); in GetGlyphNode()
124 int16_t GlyphsManager::GetFontHeight(uint16_t fontId) in GetFontHeight() argument
127 int16_t height = glyphsFiles_[i]->GetFontHeight(fontId); in GetFontHeight()
136 int16_t GlyphsManager::GetFontWidth(uint32_t unicode, uint16_t fontId) in GetFontWidth() argument
138 const GlyphNode* node = GetGlyphNode(unicode, fontId); in GetFontWidth()
145 int8_t GlyphsManager::GetBitmap(uint32_t unicode, BufferInfo& bufInfo, uint16_t fontId) in GetBitmap() argument
147 …GlyphCacheNode* cacheNode = UIFontCacheManager::GetInstance()->GetNodeFromCache(unicode, fontId, f… in GetBitmap()
157 GlyphNode* node = const_cast<GlyphNode*>(GetGlyphNodeFromFiles(unicode, fontId)); in GetBitmap()