HomeSort by relevance Sort by last modified time
    Searched defs:Font (Results 1 - 25 of 54) sorted by null

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xdefs.h 81 typedef struct _Font *FontPtr; /* also in fonts/include/font.h */
86 typedef XID Font;
  /external/python/cpython2/Lib/lib-tk/
tkFont.py 1 # Tkinter font wrapper
20 """Given the name of a tk named font, returns a Font representation.
22 return Font(name=name, exists=True)
24 class Font:
26 """Represents a named font.
30 font -- font specifier (name, system font, or (family, size, style)-tuple)
31 name -- name to use for this font configuration (defaults to a unique name
    [all...]
  /external/python/cpython3/Lib/tkinter/
font.py 1 # Tkinter font wrapper
20 """Given the name of a tk named font, returns a Font representation.
22 return Font(name=name, exists=True)
25 class Font:
26 """Represents a named font.
30 font -- font specifier (name, system font, or (family, size, style)-tuple)
31 name -- name to use for this font configuration (defaults to a unique name
    [all...]
  /frameworks/base/core/java/android/text/
FontConfig.java 31 * Font configuration descriptions for System fonts.
51 * Returns the list of aliases defined for the font families in the system fonts.
58 * Class that holds information about a Font.
60 public static final class Font {
72 public Font(@NonNull String fontName, int ttcIndex, @NonNull FontVariationAxis[] axes,
83 * Returns the name associated by the system to this font.
90 * Returns the index to be used to access this font when accessing a TTC file.
97 * Returns the list of axes associated to this font.
104 * Returns the weight value for this font.
111 * Returns whether this font is italic
    [all...]
  /frameworks/base/libs/hwui/font/
Font.h 39 // Font
47 * Represents a font, defined by a Skia font id and a font size. A font is used
50 class Font {
78 ~Font();
86 const Font::FontDescription& getDescription() const { return mDescription; }
89 * Creates a new font associated with the specified font state
    [all...]
Font.cpp 31 #include "Font.h"
38 // Font
41 Font::Font(FontRenderer* state, const Font::FontDescription& desc)
44 Font::FontDescription::FontDescription(const SkPaint* paint, const SkMatrix& rasterMatrix)
50 mFlags |= Font::kFakeBold;
59 ALOGW("Could not query the inverse lookup transform for this font");
63 Font::~Font() {
478 Font* font = state->mActiveFonts.get(description); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comdef.h 204 #if !defined(Font)
205 struct Font : IFontDisp {};
207 _COM_SMARTPTR_TYPEDEF(Font,__uuidof(IDispatch));
  /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,
328 class Font: public GdiplusBase
333 Font(const FontFamily *family, REAL emSize,
336 Font(HDC hdc, HFONT hfont);
337 Font(HDC hdc, const LOGFONTA *logfont);
338 Font(HDC hdc, const LOGFONTW *logfont);
339 Font(HDC hdc);
340 Font(const WCHAR *familyName, REAL emSize,
344 ~Font();
345 Font* Clone() const
    [all...]
gdiplusimpl.h 4 * GDI+ Bitmap, CachedBitmap, CustomLineCap, Font, FontCollection, FontFamily,
742 // Font
744 __inline__ Font::Font(const FontFamily *family,
753 __inline__ Font::Font(HDC hdc, HFONT hfont):
766 __inline__ Font::Font(HDC hdc, const LOGFONTA *logfont):
773 __inline__ Font::Font(HDC hdc, const LOGFONTW *logfont)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkFont.py 1 # Tkinter font wrapper
20 """Given the name of a tk named font, returns a Font representation.
22 return Font(name=name, exists=True)
24 class Font:
26 """Represents a named font.
30 font -- font specifier (name, system font, or (family, size, style)-tuple)
31 name -- name to use for this font configuration (defaults to a unique name
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkFont.py 1 # Tkinter font wrapper
20 """Given the name of a tk named font, returns a Font representation.
22 return Font(name=name, exists=True)
24 class Font:
26 """Represents a named font.
30 font -- font specifier (name, system font, or (family, size, style)-tuple)
31 name -- name to use for this font configuration (defaults to a unique name
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 1 # Tkinter font wrapper
20 """Given the name of a tk named font, returns a Font representation.
22 return Font(name=name, exists=True)
24 class Font:
26 """Represents a named font.
30 font -- font specifier (name, system font, or (family, size, style)-tuple)
31 name -- name to use for this font configuration (defaults to a unique name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 1 # Tkinter font wrapper
20 """Given the name of a tk named font, returns a Font representation.
22 return Font(name=name, exists=True)
24 class Font:
26 """Represents a named font.
30 font -- font specifier (name, system font, or (family, size, style)-tuple)
31 name -- name to use for this font configuration (defaults to a unique name
    [all...]
  /external/sfntly/cpp/src/sfntly/
font.cc 17 #include "sfntly/font.h"
53 * Font class
55 Font::~Font() {}
57 bool Font::HasTable(int32_t tag) const {
61 Table* Font::GetTable(int32_t tag) {
67 const TableMap* Font::GetTableMap() {
71 void Font::Serialize(OutputStream* os, IntegerList* table_ordering) {
83 Font::Font(int32_t sfnt_version, ByteVector* digest
258 FontPtr font = new Font(sfnt_version_, &digest_); local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MockFontProvider.java 42 final static String AUTHORITY = "android.provider.fonts.cts.font";
62 static class Font {
63 public Font(int id, int fileId, int ttcIndex, String varSettings, int weight, int italic,
117 private static Map<String, Font[]> QUERY_MAP;
119 HashMap<String, Font[]> map = new HashMap<>();
122 map.put(SINGLE_FONT_FAMILY_QUERY, new Font[] {
123 new Font(id++, SAMPLE_FONT_FILE_0_ID, 0, null, 400, 0, Columns.RESULT_CODE_OK, true),
126 map.put(MULTIPLE_FAMILY_QUERY, new Font[] {
127 new Font(id++, SAMPLE_FONT_FILE_0_ID, 0, null, 400, 0, Columns.RESULT_CODE_OK, true),
128 new Font(id++, SAMPLE_FONT_FILE_1_ID, 0, null, 400, 0, Columns.RESULT_CODE_OK, true)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
MockFontProvider.java 52 final static String AUTHORITY = "android.provider.fonts.font";
100 static class Font {
101 public Font(int id, int fileId, int ttcIndex, String varSettings, int weight, int italic,
152 private static Map<String, Font[]> QUERY_MAP;
154 HashMap<String, Font[]> map = new HashMap<>();
157 map.put("singleFontFamily", new Font[] {
158 new Font(id++, SAMPLE_FONT_FILE_0_ID, 0, null, 400, 0, Columns.RESULT_CODE_OK),
161 map.put("singleFontFamily2", new Font[] {
162 new Font(id++, SAMPLE_FONT_FILE_0_ID, 0, null, 700, 0, Columns.RESULT_CODE_OK),
165 map.put(BLOCKING_QUERY, new Font[] {
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Font.java 34 * rendered glyph bitmaps is maintained. Each font object represents a combination of a typeface,
35 * and point size. You can create multiple font objects to represent styles such as bold or italic text,
36 * faces, and different font sizes. During creation, the Android system quieries device's screen DPI to
39 * font to the RenderScript is required. A note of caution on performance, though the state changes
43 * <p>Font color and transparency are not part of the font object and you can freely modify
44 * them in the script to suit the user's rendering needs. Font colors work as a state machine.
47 public class Font extends BaseObj {
49 //These help us create a font by family name
151 Font(long id, RenderScript rs)
    [all...]
  /frameworks/minikin/include/minikin/
FontFamily.h 32 class Font;
51 const Font* font; member in struct:minikin::FakedFont
57 // Represents a single font file.
58 class Font {
64 // Override the font style. If not called, info from OS/2 table is used.
72 // Override the font weight. If not called, info from OS/2 table is used.
79 // Override the font slant. If not called, info from OS/2 table is used.
86 Font build();
96 Font(Font&& o) = default
    [all...]
  /frameworks/rs/
rsFont.cpp 34 Font::Font(Context *rsc) : ObjectBase(rsc), mCachedGlyphs(NULL) {
40 bool Font::init(const char *name, float fontSize, uint32_t dpi, const void *data, uint32_t dataLen) {
55 ALOGE("Unable to initialize font %s", name);
65 ALOGE("Unable to set font size on %s", name);
76 void Font::preDestroy() const {
86 void Font::invalidateTextureCache() {
92 void Font::drawCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y) {
112 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, int32_t x, int32_t y,
138 void Font::measureCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y, Rect *bounds)
    [all...]
rsFont.h 44 class Font : public ObjectBase {
65 ~Font();
75 static Font * create(Context *rsc, const char *name, float fontSize, uint32_t dpi,
119 explicit Font(Context *rsc);
146 ObjectBaseRef<Font> mDefault;
150 Font::RenderMode mode = Font::FRAMEBUFFER,
151 Font::Rect *bounds = nullptr,
154 void measureText(const char *text, uint32_t len, Font::Rect *bounds);
164 friend class Font;
    [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 48 struct Font {
93 Font clockFont;
146 status_t initFont(Font* font, const char* fallback);
149 void drawText(const char* str, const Font& font, bool bold, int* x, int* y);
150 void drawClock(const Font& font, const int xPos, const int yPos);
  /frameworks/support/compat/src/androidTest/java/androidx/core/provider/
MockFontProvider.java 44 public static final String AUTHORITY = "androidx.core.provider.fonts.font";
68 static class Font {
69 Font(int id, int fileId, int ttcIndex, String varSettings, int weight, int italic,
123 private static final Map<String, Font[]> QUERY_MAP;
125 HashMap<String, Font[]> map = new HashMap<>();
128 map.put(SINGLE_FONT_FAMILY_QUERY, new Font[] {
129 new Font(id++, SAMPLE_FONT_FILE_0_ID, 0, "'wght' 100", 400, 0,
133 map.put(SINGLE_FONT_FAMILY2_QUERY, new Font[] {
134 new Font(id++, SAMPLE_FONT_FILE_0_ID, 0, "'wght' 100", 700, 1,
138 map.put(NOT_FOUND_QUERY, new Font[] {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
schema.py 273 Font = Table('Font')
274 Font.add_field(1,'File_',0x2DFF)
275 Font.add_field(2,'FontTitle',7552)
580 tables=[_Validation, ActionText, AdminExecuteSequence, Condition, AdminUISequence, AdvtExecuteSequence, AdvtUISequence, AppId, AppSearch, Property, BBControl, Billboard, Feature, Binary, BindImage, File, CCPSearch, CheckBox, Class, Component, Icon, ProgId, ComboBox, CompLocator, Complus, Directory, Control, Dialog, ControlCondition, ControlEvent, CreateFolder, CustomAction, DrLocator, DuplicateFile, Environment, Error, EventMapping, Extension, MIME, FeatureComponents, FileSFPCatalog, SFPCatalog, Font, IniFile, IniLocator, InstallExecuteSequence, InstallUISequence, IsolatedComponent, LaunchCondition, ListBox, ListView, LockPermissions, Media, MoveFile, MsiAssembly, MsiAssemblyName, MsiDigitalCertificate, MsiDigitalSignature, MsiFileHash, MsiPatchHeaders, ODBCAttribute, ODBCDriver, ODBCDataSource, ODBCSourceAttribute, ODBCTranslator, Patch, PatchPackage, PublishComponent, RadioButton, Registry, RegLocator, RemoveFile, RemoveIniFile, RemoveRegistry, ReserveCost, SelfReg, ServiceControl, ServiceInstall, Shortcut, Signature, TextStyle, TypeLib, UIText, Upgrade, Verb]
    [all...]
  /external/python/cpython2/Lib/msilib/
schema.py 273 Font = Table('Font')
274 Font.add_field(1,'File_',11592)
275 Font.add_field(2,'FontTitle',7552)
580 tables=[_Validation, ActionText, AdminExecuteSequence, Condition, AdminUISequence, AdvtExecuteSequence, AdvtUISequence, AppId, AppSearch, Property, BBControl, Billboard, Feature, Binary, BindImage, File, CCPSearch, CheckBox, Class, Component, Icon, ProgId, ComboBox, CompLocator, Complus, Directory, Control, Dialog, ControlCondition, ControlEvent, CreateFolder, CustomAction, DrLocator, DuplicateFile, Environment, Error, EventMapping, Extension, MIME, FeatureComponents, FileSFPCatalog, SFPCatalog, Font, IniFile, IniLocator, InstallExecuteSequence, InstallUISequence, IsolatedComponent, LaunchCondition, ListBox, ListView, LockPermissions, Media, MoveFile, MsiAssembly, MsiAssemblyName, MsiDigitalCertificate, MsiDigitalSignature, MsiFileHash, MsiPatchHeaders, ODBCAttribute, ODBCDriver, ODBCDataSource, ODBCSourceAttribute, ODBCTranslator, Patch, PatchPackage, PublishComponent, RadioButton, Registry, RegLocator, RemoveFile, RemoveIniFile, RemoveRegistry, ReserveCost, SelfReg, ServiceControl, ServiceInstall, Shortcut, Signature, TextStyle, TypeLib, UIText, Upgrade, Verb]
    [all...]
  /external/python/cpython2/Tools/msi/
schema.py 273 Font = Table('Font')
274 Font.add_field(1,'File_',0x2DFF)
275 Font.add_field(2,'FontTitle',7552)
580 tables=[_Validation, ActionText, AdminExecuteSequence, Condition, AdminUISequence, AdvtExecuteSequence, AdvtUISequence, AppId, AppSearch, Property, BBControl, Billboard, Feature, Binary, BindImage, File, CCPSearch, CheckBox, Class, Component, Icon, ProgId, ComboBox, CompLocator, Complus, Directory, Control, Dialog, ControlCondition, ControlEvent, CreateFolder, CustomAction, DrLocator, DuplicateFile, Environment, Error, EventMapping, Extension, MIME, FeatureComponents, FileSFPCatalog, SFPCatalog, Font, IniFile, IniLocator, InstallExecuteSequence, InstallUISequence, IsolatedComponent, LaunchCondition, ListBox, ListView, LockPermissions, Media, MoveFile, MsiAssembly, MsiAssemblyName, MsiDigitalCertificate, MsiDigitalSignature, MsiFileHash, MsiPatchHeaders, ODBCAttribute, ODBCDriver, ODBCDataSource, ODBCSourceAttribute, ODBCTranslator, Patch, PatchPackage, PublishComponent, RadioButton, Registry, RegLocator, RemoveFile, RemoveIniFile, RemoveRegistry, ReserveCost, SelfReg, ServiceControl, ServiceInstall, Shortcut, Signature, TextStyle, TypeLib, UIText, Upgrade, Verb]
    [all...]

Completed in 1192 milliseconds

1 2 3