HomeSort by relevance Sort by last modified time
    Searched full:fontcollection (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/minikin/tests/util/
FontTestUtils.h 22 #include "minikin/FontCollection.h"
37 * Returns FontCollection from installed fonts.
42 inline std::shared_ptr<FontCollection> buildFontCollectionFromXml(const std::string& xmlPath) {
43 return std::make_shared<FontCollection>(
48 * Build new FontCollection from single file.
51 std::shared_ptr<FontCollection> buildFontCollection(const std::string& filePath);
FontTestUtils.cpp 23 #include "minikin/FontCollection.h"
120 std::shared_ptr<FontCollection> buildFontCollection(const std::string& filePath) {
121 return std::make_shared<FontCollection>(buildFontFamily(filePath));
  /frameworks/minikin/tests/perftests/
FontCollection.cpp 17 #include "minikin/FontCollection.h"
38 std::make_shared<FontCollection>(families);
46 std::make_shared<FontCollection>(getFontFamilies(SYSTEM_FONT_PATH, SYSTEM_FONT_XML));
83 std::make_shared<FontCollection>(getFontFamilies(SYSTEM_FONT_PATH, SYSTEM_FONT_XML));
92 std::vector<FontCollection::Run> result;
Android.bp 26 "FontCollection.cpp",
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusheaders.h 4 * GDI+ Bitmap, CachedBitmap, CustomLineCap, Font, FontCollection,
44 class FontCollection;
343 const FontCollection *fontCollection = NULL);
381 class FontCollection: public GdiplusBase
389 FontCollection();
390 virtual ~FontCollection() {}
402 FontCollection(const FontCollection&);
403 FontCollection& operator=(const FontCollection&)
    [all...]
gdiplusimpl.h 4 * GDI+ Bitmap, CachedBitmap, CustomLineCap, Font, FontCollection, FontFamily,
787 Unit unit, const FontCollection *fontCollection):
793 fontCollection ? fontCollection->nativeFontCollection : NULL,
888 // FontCollection
890 __inline__ FontCollection::FontCollection():
895 __inline__ Status FontCollection::GetFamilies(INT numSought,
933 __inline__ INT FontCollection::GetFamilyCount() cons
    [all...]
  /frameworks/minikin/include/minikin/
FontCollection.h 32 class FontCollection {
34 explicit FontCollection(const std::vector<std::shared_ptr<FontFamily>>& typefaces);
35 explicit FontCollection(std::shared_ptr<FontFamily>&& typeface);
54 // Creates new FontCollection based on this collection while applying font variations. Returns
56 std::shared_ptr<FontCollection> createCollectionWithVariation(
77 // Initialize the FontCollection.
MinikinFont.h 30 class FontCollection;
36 MinikinPaint(const std::shared_ptr<FontCollection>& font)
60 std::shared_ptr<FontCollection> font;
LineBreaker.h 28 #include "minikin/FontCollection.h"
  /frameworks/minikin/tests/unittest/
FontCollectionTest.cpp 17 #include "minikin/FontCollection.h"
43 void expectVSGlyphs(const FontCollection* fc, uint32_t codepoint, const std::set<uint32_t>& vsSet) {
129 std::shared_ptr<FontCollection> multiAxisFc = buildFontCollection(kMultiAxisFont);
130 std::shared_ptr<FontCollection> noAxisFc = buildFontCollection(kNoAxisFont);
141 std::shared_ptr<FontCollection> newFc(
152 std::shared_ptr<FontCollection> newFc(
169 std::shared_ptr<FontCollection> newFc(
FontCollectionItemizeTest.cpp 17 #include "minikin/FontCollection.h"
57 void itemize(const std::shared_ptr<FontCollection>& collection, const char* str, FontStyle style,
58 const std::string& localeList, std::vector<FontCollection::Run>* result) {
73 void itemize(const std::shared_ptr<FontCollection>& collection, const char* str,
74 const std::string& localeList, std::vector<FontCollection::Run>* result) {
79 void itemize(const std::shared_ptr<FontCollection>& collection, const char* str, FontStyle style,
80 std::vector<FontCollection::Run>* result) {
85 void itemize(const std::shared_ptr<FontCollection>& collection, const char* str,
86 std::vector<FontCollection::Run>* result) {
91 std::string getFontName(const FontCollection::Run& run)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dwrite_2.h 102 IDWriteFontCollection *fontCollection __MINGW_DEF_ARG_VAL(NULL),
187 IDWriteFontCollection **fontCollection,
194 IDWriteFontCollection **fontCollection) PURE;
244 IDWriteFontCollection *fontCollection,
302 IDWriteFontCollection **fontCollection,
dwrite_1.h 195 IDWriteFontCollection **fontCollection,
202 IDWriteFontCollection **fontCollection) PURE;
252 IDWriteFontCollection *fontCollection,
311 IDWriteFontCollection **fontCollection,
dwrite.h 688 IDWriteFontCollection **fontCollection,
695 IDWriteFontCollection **fontCollection) PURE;
745 IDWriteFontCollection *fontCollection,
807 #define IDWriteFactory_CreateCustomFontCollection(This,collectionLoader,collectionKey,collectionKeySize,fontCollection) (This)->lpVtbl->CreateCustomFontCollection(This,collectionLoader,collectionKey,collectionKeySize,fontCollection)
819 #define IDWriteFactory_CreateTextFormat(This,fontFamilyName,fontCollection,fontWeight,fontStyle,fontStretch,fontSize,localeName,textFormat) (This)->lpVtbl->CreateTextFormat(This,fontFamilyName,fontCollection,fontWeight,fontStyle,fontStretch,fontSize,localeName,textFormat)
823 #define IDWriteFactory_GetSystemFontCollection(This,fontCollection,checkForUpdates) (This)->lpVtbl->GetSystemFontCollection(This,fontCollection,checkForUpdates)
    [all...]
  /frameworks/minikin/libs/minikin/
FontCollection.cpp 19 #include "minikin/FontCollection.h"
47 FontCollection::FontCollection(std::shared_ptr<FontFamily>&& typeface) : mMaxChar(0) {
53 FontCollection::FontCollection(const vector<std::shared_ptr<FontFamily>>& typefaces) : mMaxChar(0) {
57 void FontCollection::init(const vector<std::shared_ptr<FontFamily>>& typefaces) {
127 uint32_t FontCollection::calcFamilyScore(uint32_t ch, uint32_t vs, FontFamily::Variant variant,
155 uint32_t FontCollection::calcCoverageScore(uint32_t ch, uint32_t vs, uint32_t localeListId,
216 uint32_t FontCollection::calcLocaleMatchingScore(uint32_t userLocaleListId,
232 uint32_t FontCollection::calcVariantMatchingScore(FontFamily::Variant variant
    [all...]
Android.bp 35 "FontCollection.cpp",
  /frameworks/base/libs/hwui/hwui/
Typeface.h 23 #include <minikin/FontCollection.h>
35 std::shared_ptr<minikin::FontCollection> fFontCollection;
Typeface.cpp 29 #include <minikin/FontCollection.h>
128 result->fFontCollection.reset(new minikin::FontCollection(families));
188 std::shared_ptr<minikin::FontCollection> collection = std::make_shared<minikin::FontCollection>(
  /frameworks/minikin/tests/stresstest/
FontFamilyTest.cpp 22 #include "minikin/FontCollection.h"
MultithreadTest.cpp 27 #include "minikin/FontCollection.h"
  /external/skia/src/ports/
SkFontMgr_win_dw.cpp 267 SkFontMgr_DirectWrite(IDWriteFactory* factory, IDWriteFontCollection* fontCollection,
271 , fFontCollection(SkRefComPtr(fontCollection))
894 SkTScopedComPtr<IDWriteFontCollection> fontCollection;
895 HRN(fFactory->CreateCustomFontCollection(fontCollectionLoader.get(), nullptr, 0, &fontCollection));
898 UINT32 familyCount = fontCollection->GetFontFamilyCount();
901 HRN(fontCollection->GetFontFamily(familyIndex, &fontFamily));
    [all...]
SkRemotableFontMgr_win_dw.cpp 84 SkRemotableFontMgr_DirectWrite(IDWriteFontCollection* fontCollection,
86 : fFontCollection(SkRefComPtr(fontCollection))
  /external/skqp/src/ports/
SkFontMgr_win_dw.cpp 267 SkFontMgr_DirectWrite(IDWriteFactory* factory, IDWriteFontCollection* fontCollection,
271 , fFontCollection(SkRefComPtr(fontCollection))
894 SkTScopedComPtr<IDWriteFontCollection> fontCollection;
895 HRN(fFactory->CreateCustomFontCollection(fontCollectionLoader.get(), nullptr, 0, &fontCollection));
898 UINT32 familyCount = fontCollection->GetFontFamilyCount();
901 HRN(fontCollection->GetFontFamily(familyIndex, &fontFamily));
    [all...]
SkRemotableFontMgr_win_dw.cpp 84 SkRemotableFontMgr_DirectWrite(IDWriteFontCollection* fontCollection,
86 : fFontCollection(SkRefComPtr(fontCollection))
  /frameworks/base/core/jni/
android_text_MeasuredParagraph.cpp 39 #include <minikin/FontCollection.h>

Completed in 1005 milliseconds

1 2