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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/efl/
FontEfl.cpp 28 #include "Font.h"
38 void Font::drawComplexText(GraphicsContext*, const TextRun&, const FloatPoint&, int from, int to) const
43 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, int /* from */, int /* to */) const
48 bool Font::canReturnFallbackFontsForComplexText()
53 bool Font::canExpandAroundIdeographsInComplexText()
58 float Font::floatWidthForComplexText(const TextRun&, HashSet<const SimpleFontData*>*, GlyphOverflow*) const
64 int Font::offsetForPositionForComplexText(const TextRun&, float, bool) const
70 FloatRect Font::selectionRectForComplexText(const TextRun&, const FloatPoint&, int, int, int) const
  /external/proguard/src/proguard/gui/splash/
ConstantFont.java 32 private final Font value;
34 public ConstantFont(Font value)
42 public Font getFont(long time)
VariableFont.java 26 * This interface represents a Font that varies with time.
33 * Returns the Font for the given time.
35 public Font getFont(long time);
VariableSizeFont.java 32 private final Font font; field in class:VariableSizeFont
36 private Font cachedFont;
41 * @param font the base font.
42 * @param size the variable size of the font.
44 public VariableSizeFont(Font font, VariableDouble size)
46 this.font = font;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
StringTruncator.h 36 class Font;
40 static String centerTruncate(const String&, float maxWidth, const Font&);
41 static String rightTruncate(const String&, float maxWidth, const Font&);
42 static float width(const String&, const Font&);
FontFallbackList.h 30 class Font;
47 bool isFixedPitch(const Font* f) const { if (m_pitch == UnknownPitch) determinePitch(f); return m_pitch == FixedPitch; };
48 void determinePitch(const Font*) const;
58 const SimpleFontData* primarySimpleFontData(const Font* f)
66 const FontData* primaryFontData(const Font* f) const { return fontDataAt(f, 0); }
67 const FontData* fontDataAt(const Font*, unsigned index) const;
83 friend class Font;
Font.cpp 25 #include "Font.h"
42 Font::CodePath Font::s_codePath = Auto;
45 // Font Implementation (Cross-Platform Portion)
48 Font::Font()
56 Font::Font(const FontDescription& fd, short letterSpacing, short wordSpacing)
65 Font::Font(const FontPlatformData& fontData, bool isPrinterFont, FontSmoothingMode fontSmoothingMode
    [all...]
  /external/webkit/Source/WebCore/platform/haiku/
FileChooserHaiku.cpp 31 String FileChooser::basenameForWidth(const Font&, int width) const
  /external/webkit/Source/WebCore/platform/wx/
FileChooserWx.cpp 33 String FileChooser::basenameForWidth(const Font&, int width) const
  /external/webkit/Source/WebCore/platform/win/
WebCoreTextRenderer.h 34 class Font;
38 void WebCoreDrawTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color&, int underlinedIndex = -1);
39 void WebCoreDrawDoubledTextAtPoint(GraphicsContext&, const String&, const IntPoint&, const Font&, const Color& topColor, const Color& bottomColor, int underlinedIndex = -1);
40 float WebCoreTextFloatWidth(const String&, const Font&);
WebCoreTextRenderer.cpp 28 #include "Font.h"
49 static void doDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex)
55 font.drawText(&context, run, point);
57 context.drawBidiText(font, run, point);
65 beforeWidth = font.width(beforeRun);
70 int underlinedWidth = font.width(underlinedRun);
80 void WebCoreDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex)
84 doDrawTextAtPoint(context, text, point, font, color, underlinedIndex)
    [all...]
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
FontTest.java 23 import android.renderscript.Font;
24 import android.renderscript.Font.Style;
31 for (Font.Style style : Font.Style.values()) {
32 Font F = null;
33 F = Font.create(mRS, mRes, "sans-serif", style, fontSize);
38 fail("set name twice for a font");
43 F = Font.create(mRS, mRes, "serif", style, fontSize);
47 fail("set empty name for a font");
53 F = Font.create(mRS, mRes, "mono", style, fontSize)
    [all...]
BaseObjTest.java 20 import android.renderscript.Font;
21 import android.renderscript.Font.Style;
27 Style S = Font.Style.NORMAL;
28 Font F = Font.create(mRS, mRes, "sans-serif", S, 8);
39 F = Font.create(mRS, mRes, "serif", S, 8);
50 F = Font.create(mRS, mRes, "mono", S, 8);
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.h 44 virtual FontDescription controlFont(ControlPart, const Font&, float zoomFactor) const;
46 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize&, float zoomFactor) const;
47 virtual LengthSize minimumControlSize(ControlPart, const Font&, float zoomFactor) const;
49 virtual LengthBox controlPadding(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
50 virtual LengthBox controlBorder(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngineSpacing.h 28 class Font;
36 SVGTextLayoutEngineSpacing(const Font&);
42 const Font& m_font;
SVGTextLayoutEngineBaseline.h 29 class Font;
39 SVGTextLayoutEngineBaseline(const Font&);
49 const Font& m_font;
  /external/webkit/Source/WebCore/platform/
Theme.cpp 31 LengthBox Theme::controlBorder(ControlPart part, const Font&, const LengthBox& zoomedBox, float) const
45 LengthBox Theme::controlPadding(ControlPart part, const Font&, const LengthBox& zoomedBox, float) const
Theme.h 30 #include "Font.h"
73 virtual Font systemFont(ThemeFont, FontDescription&) const { return Font(); }
83 // The font description result should have a zoomed font size.
84 virtual FontDescription controlFont(ControlPart, const Font& font, float /*zoomFactor*/) const { return font.fontDescription(); }
87 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize& zoomedSize, float /*zoomFactor*/) const { return zoomedSize; }
90 virtual LengthSize minimumControlSize(ControlPart, const Font&, float /*zoomFactor*/) const { return LengthSize(Length(0, Fixed), Length(0, Fixed));
    [all...]
  /external/chromium/chrome/browser/ui/views/autocomplete/
touch_autocomplete_popup_contents_view.h 29 const gfx::Font& font,
30 const gfx::Font& bold_font);
47 TouchAutocompletePopupContentsView(const gfx::Font& font,
65 const gfx::Font& font,
66 const gfx::Font& bold_font);
  /external/webkit/Source/WebCore/platform/mac/
ThemeMac.h 40 virtual FontDescription controlFont(ControlPart, const Font&, float zoomFactor) const;
42 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize&, float zoomFactor) const;
43 virtual LengthSize minimumControlSize(ControlPart, const Font&, float zoomFactor) const;
45 virtual LengthBox controlPadding(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
46 virtual LengthBox controlBorder(ControlPart, const Font&, const LengthBox& zoomedBox, float zoomFactor) const;
  /external/webkit/Source/WebCore/platform/graphics/haiku/
FontHaiku.cpp 29 #include "Font.h"
36 #include <Font.h>
63 bool Font::canReturnFallbackFontsForComplexText()
68 bool Font::canExpandAroundIdeographsInComplexText()
73 void Font::drawGlyphs(GraphicsContext* graphicsContext, const SimpleFontData* font,
78 BFont* m_font = font->platformData().font();
95 void Font::drawComplexText(GraphicsContext* ctx, const TextRun& run, const FloatPoint& point,
101 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const A (…)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
UniscribeHelperTextRun.h 38 class Font;
46 UniscribeHelperTextRun(const TextRun&, const Font&);
49 // this constructor will not give you font fallback, but it will provide
51 // ("TryToPreloadFont") if the caller does not have a TextRun/Font.
63 // This function retrieves the Windows font data (HFONT, etc) for the next
64 // WebKit font in the list. If the font data corresponding to font_index_
67 // WebKit and adds them to in hfonts_ and friends so that font data can be
72 // Reference to WebKit::Font that contains all the information about fonts
74 // NextWinFontData to retrieve Windows font data for a series o
    [all...]
  /external/webkit/Source/WebCore/platform/android/
FileChooserAndroid.cpp 29 #include "Font.h"
35 String FileChooser::basenameForWidth(const Font& font, int width) const
41 return StringTruncator::centerTruncate(output, static_cast<float>(width), font);
  /frameworks/base/libs/hwui/font/
Font.h 34 // Font
40 * Represents a font, defined by a Skia font id and a font size. A font is used
43 class Font {
76 ~Font();
84 const Font::FontDescription& getDescription() const {
89 * Creates a new font associated with the specified font state
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Font.java 37 * rendered glyph bitmaps is maintained. Each font object represents a combination of a typeface,
38 * and point size. You can create multiple font objects to represent styles such as bold or italic text,
39 * faces, and different font sizes. During creation, the Android system quieries device's screen DPI to
42 * font to the RenderScript is required. A note of caution on performance, though the state changes
46 * <p>Font color and transparency are not part of the font object and you can freely modify
47 * them in the script to suit the user's rendering needs. Font colors work as a state machine.
50 public class Font extends BaseObj {
52 //These help us create a font by family name
154 Font(int id, RenderScript rs)
    [all...]

Completed in 967 milliseconds

1 2 3 4 5 6 7 8 91011>>