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

1 2

  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfResourceDictionary_autogen.cpp 71 SkPdfDictionary* SkPdfResourceDictionary::Font(SkPdfNativeDoc* doc) {
72 SkPdfNativeObject* ret = get("Font", "");
80 return get("Font", "") != NULL;
SkPdfGraphicsStateDictionary_autogen.cpp 131 SkPdfArray* SkPdfGraphicsStateDictionary::Font(SkPdfNativeDoc* doc) {
132 SkPdfNativeObject* ret = get("Font", "");
140 return get("Font", "") != NULL;
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
TextTest.java 88 mTextScript.set_gFontSans(Font.create(mRS, mRes, "sans-serif",
89 Font.Style.NORMAL, 8.0f / metrics.density));
90 mTextScript.set_gFontSerif(Font.create(mRS, mRes, "serif",
91 Font.Style.NORMAL, 8.0f / metrics.density));
RsBenchRS.java 284 mScript.set_gFontSerif(Font.create(mRS, mRes, "serif", Font.Style.NORMAL, 8));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xdefs.h 81 typedef struct _Font *FontPtr; /* also in fonts/include/font.h */
86 typedef XID Font;
  /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;
  /frameworks/base/graphics/java/android/graphics/
FontListParser.java 30 * Parser for font config files.
45 public static class Font {
46 Font(String fontName, int weight, boolean isItalic) {
63 public Family(String name, List<Font> fonts, String lang, String variant) {
71 public List<Font> fonts;
110 List<Font> fonts = new ArrayList<Font>();
114 if (tag.equals("font")) {
120 fonts.add(new Font(fullFilename, weight, isItalic));
  /frameworks/base/libs/hwui/font/
Font.h 38 // Font
46 * Represents a font, defined by a Skia font id and a font size. A font is used
49 class Font {
83 ~Font();
91 const Font::FontDescription& getDescription() const {
96 * Creates a new font associated with the specified font state
    [all...]
Font.cpp 31 #include "Font.h"
41 // Font
44 Font::Font(FontRenderer* state, const Font::FontDescription& desc) :
47 Font::FontDescription::FontDescription(const SkPaint* paint, const SkMatrix& rasterMatrix)
53 mFlags |= Font::kFakeBold;
62 ALOGW("Could not query the inverse lookup transform for this font");
66 Font::~Font() {
491 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 186 #if !defined(Font)
187 struct Font : IFontDisp {};
189 _COM_SMARTPTR_TYPEDEF(Font,__uuidof(IDispatch));
ntddvdeo.h 320 UCHAR Font[1];
  /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/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"
47 * Font class
49 Font::~Font() {}
51 bool Font::HasTable(int32_t tag) {
57 Table* Font::GetTable(int32_t tag) {
64 const TableMap* Font::GetTableMap() {
68 void Font::Serialize(OutputStream* os, IntegerList* table_ordering) {
80 Font::Font(int32_t sfnt_version, ByteVector* digest
255 FontPtr font = new Font(sfnt_version_, &digest_); local
    [all...]
font.h 32 // Note: following constants are embedded in Font class in Java. They are
35 // Platform ids. These are used in a number of places within the font whenever
48 // Unicode encoding ids. These are used in a number of places within the font
62 // Windows encoding ids. These are used in a number of places within the font
79 // font whenever character encodings need to be specified.
122 // An sfnt container font object. This object is immutable and thread safe. To
123 // construct one use an instance of Font::Builder.
124 class Font : public RefCounted<Font> {
126 // A builder for a font object. The builder allows the for the creation o
    [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 34 // font rendering.
63 // FontStyle represents all style information needed to select an actual font
117 MinikinFont* font; member in struct:android::FakedFont
130 // Add font to family, extracting style information from the font
150 class Font {
152 Font(MinikinFont* typeface, FontStyle style) :
159 std::vector<Font> mFonts;
  /frameworks/rs/
rsFont.cpp 36 Font::Font(Context *rsc) : ObjectBase(rsc), mCachedGlyphs(NULL) {
42 bool Font::init(const char *name, float fontSize, uint32_t dpi, const void *data, uint32_t dataLen) {
57 ALOGE("Unable to initialize font %s", name);
67 ALOGE("Unable to set font size on %s", name);
78 void Font::preDestroy() const {
87 void Font::invalidateTextureCache() {
93 void Font::drawCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y) {
113 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, int32_t x, int32_t y,
139 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 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/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...]
  /frameworks/base/core/java/android/text/
Html.java 316 out.append("<font size =\"");
321 out.append("<font color =\"#");
336 out.append("</font>");
339 out.append("</font>");
506 } else if (tag.equalsIgnoreCase("font")) {
556 } else if (tag.equalsIgnoreCase("font")) {
663 text.setSpan(new Font(color, face), len, len, Spannable.SPAN_MARK_MARK);
668 Object obj = getLast(text, Font.class);
674 Font f = (Font) obj
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
xfixesproto.h 55 #define Font CARD32
540 #undef Font
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
xfixesproto.h 55 #define Font CARD32
597 #undef Font

Completed in 530 milliseconds

1 2