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