Searched defs:Font (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/ui/gfx/
H A Dfont.cc13 // Font, public:
15 Font::Font() : platform_font_(PlatformFont::CreateDefault()) { function in class:gfx::Font
18 Font::Font(const Font& other) : platform_font_(other.platform_font_) { function in class:gfx::Font
21 Font& Font::operator=(const Font& other) {
26 Font function in class:gfx::Font
30 Font::Font(PlatformFont* platform_font) : platform_font_(platform_font) { function in class:gfx::Font
33 Font::Font(const std::string& font_name, int font_size) function in class:gfx::Font
[all...]
H A Dfont.h20 // Font provides a wrapper around an underlying font. Copy and assignment
31 class GFX_EXPORT Font { class in namespace:gfx
42 Font();
45 Font(const Font& other);
46 Font& operator=(const Font& other);
49 explicit Font(NativeFont native_font);
51 // Constructs a Font object with the specified PlatformFont object. The Font
[all...]
/external/chromium_org/third_party/brotli/src/woff2/
H A Dfont.h31 struct Font { struct in namespace:woff2
54 bool ReadFont(const uint8_t* data, size_t len, Font* font);
57 size_t FontFileSize(const Font& font);
62 bool WriteFont(const Font& font, uint8_t* dst, size_t dst_size);
67 int NumGlyphs(const Font& font);
71 bool GetGlyphData(const Font& font, int glyph_index,
75 bool RemoveDigitalSignature(Font* font);
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusFont.h11 * Font related declarations
19 Font::Font(IN HDC hdc) function in class:Font
34 Font::Font(IN HDC hdc, function in class:Font
63 Font::Font(IN HDC hdc, function in class:Font
85 Font::Font(IN HDC hdc, function in class:Font
108 Font function in class:Font
132 Font::Font( function in class:Font
269 Font::Font(IN GpFont* font, function in class:Font
278 SetNativeFont(GpFont *Font) argument
[all...]
H A DGdiPlusHeaders.h197 friend class Font;
274 class Font : public GdiplusBase class in inherits:GdiplusBase
279 Font(IN HDC hdc);
280 Font(IN HDC hdc,
282 Font(IN HDC hdc,
285 Font(IN HDC hdc,
288 Font(
295 Font(
308 Font* Clone() const;
309 ~Font();
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfResourceDictionary_autogen.cpp71 SkPdfDictionary* SkPdfResourceDictionary::Font(SkPdfNativeDoc* doc) { function in class:SkPdfResourceDictionary
72 SkPdfNativeObject* ret = get("Font", "");
80 return get("Font", "") != NULL;
H A DSkPdfGraphicsStateDictionary_autogen.cpp131 SkPdfArray* SkPdfGraphicsStateDictionary::Font(SkPdfNativeDoc* doc) { function in class:SkPdfGraphicsStateDictionary
132 SkPdfNativeObject* ret = get("Font", "");
140 return get("Font", "") != NULL;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfResourceDictionary_autogen.cpp71 SkPdfDictionary* SkPdfResourceDictionary::Font(SkPdfNativeDoc* doc) { function in class:SkPdfResourceDictionary
72 SkPdfNativeObject* ret = get("Font", "");
80 return get("Font", "") != NULL;
H A DSkPdfGraphicsStateDictionary_autogen.cpp131 SkPdfArray* SkPdfGraphicsStateDictionary::Font(SkPdfNativeDoc* doc) { function in class:SkPdfGraphicsStateDictionary
132 SkPdfNativeObject* ret = get("Font", "");
140 return get("Font", "") != NULL;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFont.h86 class PLATFORM_EXPORT Font { class in namespace:blink
88 Font();
89 Font(const FontDescription&);
90 ~Font();
92 Font(const Font&);
93 Font& operator=(const Font&);
95 bool operator==(const Font& other) const;
96 bool operator!=(const Font
[all...]
H A DFont.cpp25 #include "platform/fonts/Font.h"
50 CodePath Font::s_codePath = AutoPath;
53 // Font Implementation (Cross-Platform Portion)
56 Font::Font() function in class:blink::Font
60 Font::Font(const FontDescription& fd) function in class:blink::Font
65 Font::Font(const Font function in class:blink::Font
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dmath_semantic_attr.js836 * font: cvox.SemanticAttr.Font}>} The semantic meaning of the symbol.
887 font: cvox.SemanticAttr.Font.NORMAL
892 font: cvox.SemanticAttr.Font.NORMAL
897 font: cvox.SemanticAttr.Font.NORMAL
902 font: cvox.SemanticAttr.Font.NORMAL
907 font: cvox.SemanticAttr.Font.BOLD
912 font: cvox.SemanticAttr.Font.BOLD
917 font: cvox.SemanticAttr.Font.ITALIC
922 font: cvox.SemanticAttr.Font.ITALIC
927 font: cvox.SemanticAttr.Font
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeFieldElement.cpp195 float DateTimeFieldElement::maximumWidth(const Font&) argument
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/
H A Dfont.cc47 * 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) function in class:sfntly::Font
87 void Font
[all...]
H A Dfont.h32 // Note: following constants are embedded in Font class in Java. They are
123 // construct one use an instance of Font::Builder.
124 class Font : public RefCounted<Font> { class in namespace:sfntly
127 // immutable Font objects. The builder is a one use non-thread safe object and
128 // once the Font object has been created it is no longer usable. To create a
129 // further Font object new builder will be required.
148 // Build the Font. After this call this builder will no longer be usable.
149 CALLER_ATTACH Font* Build();
201 void BuildTablesFromBuilders(Font* fon
[all...]
/external/sfntly/cpp/src/sfntly/
H A Dfont.cc47 * 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) function in class:sfntly::Font
87 void Font
[all...]
H A Dfont.h32 // Note: following constants are embedded in Font class in Java. They are
123 // construct one use an instance of Font::Builder.
124 class Font : public RefCounted<Font> { class in namespace:sfntly
127 // immutable Font objects. The builder is a one use non-thread safe object and
128 // once the Font object has been created it is no longer usable. To create a
129 // further Font object new builder will be required.
148 // Build the Font. After this call this builder will no longer be usable.
149 CALLER_ATTACH Font* Build();
201 void BuildTablesFromBuilders(Font* fon
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGInlineTextBox.cpp128 const Font& scaledFont = textRenderer.scaledFont();
181 // Font::pixelSize(), returns FontDescription::computedPixelSize(), which returns "int(x + 0.5)".
473 static inline float thicknessForDecoration(TextDecoration, const Font& font)
539 Font scaledFont;
570 const Font& scaledFont = textRenderer.scaledFont();
657 void SVGInlineTextBox::paintDocumentMarker(GraphicsContext*, const FloatPoint&, DocumentMarker*, RenderStyle*, const Font&, bool) argument
662 void SVGInlineTextBox::paintTextMatchMarker(GraphicsContext* context, const FloatPoint&, DocumentMarker* marker, RenderStyle* style, const Font& font)
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResource.h66 Font, enumerator in enum:blink::Resource::Type
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 5320 milliseconds