Home
last modified time | relevance | path

Searched refs:fontId (Results 1 – 15 of 15) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
DFontTableBox.java60 int fontId; field in FontTableBox.FontRecord
66 public FontRecord(int fontId, String fontname) { in FontRecord() argument
67 this.fontId = fontId; in FontRecord()
72 fontId = IsoTypeReader.readUInt16(bb); in parse()
78 IsoTypeWriter.writeUInt16(bb, fontId); in getContent()
90 "fontId=" + fontId + in toString()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTypeface.java40 protected void __constructor__(int fontId) { in __constructor__() argument
41 description = findById((long) fontId); in __constructor__()
46 protected void __constructor__(long fontId) { in __constructor__() argument
47 description = findById(fontId); in __constructor__()
165 private synchronized static FontDesc findById(long fontId) { in findById() argument
166 if (FONTS.containsKey(fontId)) { in findById()
167 return FONTS.get(fontId); in findById()
169 throw new RuntimeException("Unknown font id: " + fontId); in findById()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
DTextSampleEntry.java268 int fontId; field in TextSampleEntry.StyleRecord
276 fontId = IsoTypeReader.readUInt16(in); in parse()
290 IsoTypeWriter.writeUInt16(bb, fontId); in getContent()
/external/skia/src/core/
DSkTypeface_remote.h45 SkTypefaceProxy(SkFontID fontId,
52 , fFontId{fontId}
/external/skqp/src/core/
DSkTypeface_remote.h51 SkTypefaceProxy(SkFontID fontId,
58 , fFontId{fontId}
/external/skia/src/ports/
DSkRemotableFontMgr_win_dw.cpp95 HRESULT FontToIdentity(IDWriteFont* font, SkFontIdentity* fontId) const { in FontToIdentity()
116 fontId->fDataId = FindOrAdd(fontFileLoader.get(), refKey, refKeySize); in FontToIdentity()
119 fontId->fTtcIndex = fontFace->GetIndex(); in FontToIdentity()
122 fontId->fFontStyle = get_style(font); in FontToIdentity()
DSkFontMgr_fontconfig.cpp762 for (int fontId = 0; fontId < maxId; ++fontId) { in AnyMatching() local
763 result = FcPatternGetString(font, object, fontId, &fontString); in AnyMatching()
/external/skqp/src/ports/
DSkRemotableFontMgr_win_dw.cpp94 HRESULT FontToIdentity(IDWriteFont* font, SkFontIdentity* fontId) const { in FontToIdentity()
115 fontId->fDataId = FindOrAdd(fontFileLoader.get(), refKey, refKeySize); in FontToIdentity()
118 fontId->fTtcIndex = fontFace->GetIndex(); in FontToIdentity()
121 fontId->fFontStyle = get_style(font); in FontToIdentity()
DSkFontMgr_fontconfig.cpp746 for (int fontId = 0; fontId < maxId; ++fontId) { in AnyMatching() local
747 result = FcPatternGetString(font, object, fontId, &fontString); in AnyMatching()
/external/skia/src/fonts/
DSkFontMgr_indirect.cpp180 SkFontIdentity fontId = this->fProxy->matchIndexStyle(0, style); in onLegacyMakeTypeface() local
181 face.reset(this->createTypefaceFromFontId(fontId)); in onLegacyMakeTypeface()
/external/skqp/src/fonts/
DSkFontMgr_indirect.cpp183 SkFontIdentity fontId = this->fProxy->matchIndexStyle(0, style); in onLegacyMakeTypeface() local
184 face.reset(this->createTypefaceFromFontId(fontId)); in onLegacyMakeTypeface()
/external/skia/include/ports/
DSkFontMgr_indirect.h58 SkTypeface* createTypefaceFromFontId(const SkFontIdentity& fontId) const;
/external/skqp/include/ports/
DSkFontMgr_indirect.h59 SkTypeface* createTypefaceFromFontId(const SkFontIdentity& fontId) const;
/external/skia/modules/skshaper/src/
DSkShaper_harfbuzz.cpp1275 HBFace* find(SkFontID fontId) { in find() argument
1276 return fLRUCache.find(fontId); in find()
1278 HBFace* insert(SkFontID fontId, HBFace hbFace) { in insert() argument
1279 return fLRUCache.insert(fontId, std::move(hbFace)); in insert()
/external/python/cpython3/Tools/msi/bundle/bootstrap/
DPythonBootstrapperApplication.cpp2044 DWORD fontId = _theme->rgControls[i].dwFontId; in SetControlColor() local
2045 if (fontId > _theme->cFonts) { in SetControlColor()
2046 fontId = 0; in SetControlColor()
2048 THEME_FONT *fnt = &_theme->rgFonts[fontId]; in SetControlColor()