/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/sample/subtly/ |
debug_main.cc | 23 #include "sfntly/font.h" 45 FontPtr font; local 46 font.Attach(subtly::LoadFont(input_font_path)); 48 int32_t original_size = TotalFontSize(font); 49 Ptr<Subsetter> subsetter = new Subsetter(font, NULL); 50 Ptr<Font> new_font; 58 subtly::PrintComparison(stdout, font, new_font);
|
/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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
GestureToolTip.java | 21 import org.eclipse.swt.graphics.Font; 46 /** The size of the font displayed in the tooltip */ 61 /** The font shown in the label; held here such that it can be disposed of after use */ 62 private Font mFont; 104 Font systemFont = display.getSystemFont(); 109 mFont = new Font(display, fd);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
WorkSpaceView.java | 75 this.txtEditor.setFont(new Font("Courier New", Font.PLAIN, 13));
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/ |
HolidayBorderPanel.java | 13 import java.awt.Font; 74 /** Default font (TimesRoman,PLAIN,14). Only applies to etched borders. */ 75 public final static Font DEFAULT_FONT = new Font("TimesRoman", Font.PLAIN, 14); 85 private Font font; field in class:HolidayBorderPanel 101 font = DEFAULT_FONT; 178 // set font and get info 179 int height = getGraphics().getFontMetrics(font).getHeight() [all...] |
/external/pdfium/xfa/fxfa/parser/ |
cxfa_caption.cpp | 20 {XFA_Element::Font, 1, 0}, {XFA_Element::Value, 1, 0}, 78 return GetChild<CXFA_Font>(0, XFA_Element::Font, false);
|
/external/sfntly/cpp/src/sfntly/tools/subsetter/ |
glyph_table_subsetter.cc | 36 Font* font, 37 Font::Builder* font_builder) { 38 assert(font); 46 GlyphTablePtr glyph_table = down_cast<GlyphTable*>(font->GetTable(Tag::glyf)); 47 LocaTablePtr loca_table = down_cast<LocaTable*>(font->GetTable(Tag::loca)); 50 throw RuntimeException("Font to subset is not valid.");
|
subsetter.cc | 26 Subsetter::Subsetter(Font* font, FontFactory* font_factory) { 27 font_ = font; 54 CALLER_ATTACH Font::Builder* Subsetter::Subset() {
|
/frameworks/base/graphics/java/android/graphics/ |
FontListParser.java | 33 * Parser for font config files. 78 final List<FontConfig.Font> fonts = new ArrayList<FontConfig.Font>(); 82 if (tag.equals("font")) { 96 return new FontConfig.Family(name, fonts.toArray(new FontConfig.Font[fonts.size()]), langs, 104 private static FontConfig.Font readFont(XmlPullParser parser) 127 return new FontConfig.Font(sanitizedName, index,
|
/frameworks/rs/ |
rsContext.h | 105 ObjectBaseRef<Font> mFont; 134 void setFont(Font *); 142 Font * getFont() {return mFont.get();} 179 Font* getDefaultFont() const { 327 ObjectBaseRef<Font> mFont;
|
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/ |
RSTestCore.java | 41 private Font mFont; 99 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
|
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/ |
RSTestCore.java | 41 private Font mFont; 103 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
|
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/ |
RSTestCore.java | 41 private Font mFont; 103 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
|
/frameworks/base/media/java/android/media/ |
TimedText.java | 62 private static final int KEY_STRUCT_FONT_LIST = 9; // List<Font> 101 private List<Font> mFontList = null; 183 * ID of the font. This ID will be used to choose the font 184 * to be used from the font list. 204 * The size of the font 218 * @param fontId the ID of the font. 222 * @param fontSize the size of the font. 240 * Helper class to hold the font ID and name. 244 public static final class Font { 604 Font font = new Font(id, name); local [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/ |
HiiDatabaseDxe.inf | 43 Font.c
|
/external/libvncserver/utils/ |
bdf2c.pl | 17 if(/^FONT (.*)$/) { 59 print "};\nrfbFontData " . $fontname . "Font={" .
|
/external/proguard/src/proguard/gui/splash/ |
SplashPanel.java | 221 new FontSprite(new ConstantFont(new Font("sansserif", Font.BOLD, 90)),
|
/external/python/cpython2/Demo/tkinter/ttk/ |
treeview_multicolumn.py | 78 # XXX tkFont.Font().measure expected args are incorrect according 80 self.tree.column(col, width=tkFont.Font().measure(col.title())) 87 ilen = tkFont.Font().measure(val)
|
/external/sfntly/cpp/src/test/autogenerated/ |
cmap_basic_test.cc | 30 #include "sfntly/font.h" 58 // Loading the font 69 Ptr<Font> font = font_array.at(0); local 70 ASSERT_NE(font, reinterpret_cast<Font*>(NULL)); 71 cmap_table_ = down_cast<CMapTable*>(font->GetTable(Tag::cmap)); 83 // A font can only have one CMap table
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
test_font.py | 3 import tkFont as font 17 cls.font = font.Font(root=cls.root, name=fontname, exists=True) 19 cls.font = font.Font(root=cls.root, name=fontname, exists=False) 22 options = self.font.configure() 26 self.assertEqual(self.font.cget(key), options[key]) 27 self.assertEqual(self.font[key], options[key] [all...] |
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
test_font.py | 3 from tkinter import font 17 cls.font = font.Font(root=cls.root, name=fontname, exists=True) 19 cls.font = font.Font(root=cls.root, name=fontname, exists=False) 22 options = self.font.configure() 26 self.assertEqual(self.font.cget(key), options[key]) 27 self.assertEqual(self.font[key], options[key] [all...] |