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

  /frameworks/minikin/include/minikin/
FontCollection.h 28 class FontCollection : public MinikinRefCounted {
30 explicit FontCollection(const std::vector<FontFamily*>& typefaces);
32 ~FontCollection();
Layout.h 24 #include <minikin/FontCollection.h>
78 // The lifetime of the FontCollection set through setFontCollection must
91 void setFontCollection(const FontCollection* collection);
149 const FontCollection* mCollection;
FontFamily.h 116 // ownership is the enclosing FontCollection
LineBreaker.h 161 float addStyleRun(MinikinPaint* paint, const FontCollection* typeface, FontStyle style,
  /frameworks/minikin/libs/minikin/
FontCollection.cpp 26 #include <minikin/FontCollection.h>
37 uint32_t FontCollection::sNextId = 0;
39 FontCollection::FontCollection(const vector<FontFamily*>& typefaces) :
94 FontCollection::~FontCollection() {
106 FontFamily* FontCollection::getFamilyForChar(uint32_t ch,
170 void FontCollection::itemize(const uint16_t *string, size_t string_size, FontStyle style,
221 MinikinFont* FontCollection::baseFont(FontStyle style) {
225 FakedFont FontCollection::baseFontFaked(FontStyle style)
    [all...]
Android.mk 22 FontCollection.cpp \
Layout.cpp 107 LayoutCacheKey(const FontCollection* collection, const MinikinPaint& paint, FontStyle style,
128 void doLayout(Layout* layout, LayoutContext* ctx, const FontCollection* collection) const {
163 Layout* get(LayoutCacheKey& key, LayoutContext* ctx, const FontCollection* collection) {
289 void Layout::setFontCollection(const FontCollection* collection) {
684 vector<FontCollection::Run> items;
711 FontCollection::Run &run = items[run_ix];
    [all...]
LineBreaker.cpp 131 float LineBreaker::addStyleRun(MinikinPaint* paint, const FontCollection* typeface,
  /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/base/core/jni/android/graphics/
TypefaceImpl.h 25 #include <minikin/FontCollection.h>
30 FontCollection *fFontCollection;
TypefaceImpl.cpp 30 #include <minikin/FontCollection.h>
62 static FontCollection *makeFontCollection() {
83 FontCollection *result = new FontCollection(typefaces);
143 result->fFontCollection = new FontCollection(familyVec);
MinikinUtils.cpp 29 FontStyle MinikinUtils::prepareMinikinPaint(MinikinPaint* minikinPaint, FontCollection** pFont,
59 FontCollection *font;
MinikinUtils.h 36 static FontStyle prepareMinikinPaint(MinikinPaint* minikinPaint, FontCollection** pFont,
  /frameworks/minikin/sample/
example.cpp 36 FontCollection *makeFontCollection() {
73 return new FontCollection(typefaces);
83 FontCollection *collection = makeFontCollection();
example_skia.cpp 44 FontCollection *makeFontCollection() {
75 return new FontCollection(typefaces);
115 FontCollection *collection = makeFontCollection();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dwrite.h 680 IDWriteFontCollection **fontCollection,
687 IDWriteFontCollection **fontCollection) PURE;
737 IDWriteFontCollection *fontCollection,
799 #define IDWriteFactory_CreateCustomFontCollection(This,collectionLoader,collectionKey,collectionKeySize,fontCollection) (This)->lpVtbl->CreateCustomFontCollection(This,collectionLoader,collectionKey,collectionKeySize,fontCollection)
811 #define IDWriteFactory_CreateTextFormat(This,fontFamilyName,fontCollection,fontWeight,fontStyle,fontStretch,fontSize,localeName,textFormat) (This)->lpVtbl->CreateTextFormat(This,fontFamilyName,fontCollection,fontWeight,fontStyle,fontStretch,fontSize,localeName,textFormat)
815 #define IDWriteFactory_GetSystemFontCollection(This,fontCollection,checkForUpdates) (This)->lpVtbl->GetSystemFontCollection(This,fontCollection,checkForUpdates)
    [all...]
  /external/skia/src/ports/
SkFontMgr_win_dw.cpp 263 SkFontMgr_DirectWrite(IDWriteFactory* factory, IDWriteFontCollection* fontCollection,
266 , fFontCollection(SkRefComPtr(fontCollection))
883 SkTScopedComPtr<IDWriteFontCollection> fontCollection;
884 HRN(fFactory->CreateCustomFontCollection(fontCollectionLoader.get(), NULL, 0, &fontCollection));
887 UINT32 familyCount = fontCollection->GetFontFamilyCount();
890 HRN(fontCollection->GetFontFamily(familyIndex, &fontFamily));
    [all...]
SkRemotableFontMgr_win_dw.cpp 86 SkRemotableFontMgr_DirectWrite(IDWriteFontCollection* fontCollection,
88 : fFontCollection(SkRefComPtr(fontCollection))
  /external/pdfium/core/src/fxge/win32/
fx_win32_gdipext.cpp 246 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreateFontFamilyFromName)(GDIPCONST WCHAR *name, GpFontCollection *fontCollection, GpFontFamily **FontFamily);
255 typedef GpStatus (WINGDIPAPI *FuncType_GdipNewPrivateFontCollection)(GpFontCollection** fontCollection);
256 typedef GpStatus (WINGDIPAPI *FuncType_GdipDeletePrivateFontCollection)(GpFontCollection** fontCollection);
257 typedef GpStatus (WINGDIPAPI *FuncType_GdipPrivateAddMemoryFont)(GpFontCollection* fontCollection, GDIPCONST void* memory, INT length);
258 typedef GpStatus (WINGDIPAPI *FuncType_GdipGetFontCollectionFamilyList)(GpFontCollection* fontCollection, INT numSought, GpFontFamily* gpfamilies[], INT* numFound);
259 typedef GpStatus (WINGDIPAPI *FuncType_GdipGetFontCollectionFamilyCount)(GpFontCollection* fontCollection, INT* numFound);
    [all...]
  /frameworks/base/core/jni/
android_text_StaticLayout.cpp 150 FontCollection *font;

Completed in 418 milliseconds