HomeSort by relevance Sort by last modified time
    Searched defs:m_font (Results 1 - 17 of 17) sorted by null

  /external/webkit/WebCore/platform/graphics/chromium/
UniscribeHelperTextRun.h 78 const Font* m_font; member in class:WebCore::UniscribeHelperTextRun
FontPlatformDataChromiumWin.h 65 bool isHashTableDeletedValue() const { return m_font == hashTableDeletedFontValue(); }
69 HFONT hfont() const { return m_font ? m_font->hfont() : 0; }
74 return m_font ? m_font->hash() : NULL;
79 return m_font == other.m_font && m_size == other.m_size;
125 RefPtr<RefCountedHFONT> m_font; member in class:WebCore::FontPlatformData
FontChromiumWin.cpp 203 const SimpleFontData* m_font; member in class:WebCore::__anon8220::TransparencyAwareGlyphPainter
220 , m_font(font)
229 m_oldFont = ::SelectObject(m_hdc, m_font->platformData().hfont());
248 return IntRect(m_point.x() - (m_font->ascent() + m_font->descent()) / 2,
249 m_point.y() - m_font->ascent() - m_font->lineGap(),
250 totalWidth + m_font->ascent() + m_font->descent(),
251 m_font->lineSpacing());
310 const Font* m_font; member in class:WebCore::__anon8220::TransparencyAwareUniscribePainter
    [all...]
FontLinux.cpp 163 : m_font(font)
361 const FontData* fontData = m_font->fontDataAt(0);
363 fontData = m_font->fontDataForCharacters(m_item.string + m_item.item.pos, m_item.item.length);
457 const Font* const m_font; member in class:WebCore::TextRunWalker
  /external/webkit/WebCore/css/
CSSFontFaceSource.h 71 CachedResourceHandle<CachedFont> m_font; // For remote fonts, a pointer to our cached resource. member in class:WebCore::CSSFontFaceSource
  /external/webkit/WebCore/platform/
PopupMenuStyle.h 41 , m_font(font)
50 const Font& font() const { return m_font; }
58 Font m_font; member in class:WebCore::PopupMenuStyle
  /external/webkit/WebCore/platform/graphics/
WidthIterator.h 41 const Font* m_font; member in struct:WebCore::WidthIterator
  /external/webkit/WebCore/platform/graphics/haiku/
FontHaiku.cpp 73 BFont* m_font = font->platformData().font(); local
77 view->SetFont(m_font);
FontPlatformData.h 40 : m_font(hashTableDeletedFontValue())
44 : m_font(0)
53 BFont* font() const { return m_font; }
69 BFont* m_font; member in class:WebCore::FontPlatformData
  /external/webkit/WebCore/platform/graphics/gtk/
FontPlatformData.h 55 , m_font(hashTableDeletedFontValue())
68 , m_font(0)
108 return m_font == hashTableDeletedFontValue();
124 PangoFont* m_font; member in class:WebCore::FontPlatformData
  /external/webkit/WebCore/platform/graphics/win/
UniscribeController.h 61 const Font& m_font; member in class:WebCore::UniscribeController
FontPlatformData.h 74 FontPlatformData(WTF::HashTableDeletedValueType) : m_font(WTF::HashTableDeletedValue) { }
75 bool isHashTableDeletedValue() const { return m_font.isHashTableDeletedValue(); }
77 HFONT hfont() const { return m_font->hfont(); }
93 return m_font->hash();
98 return m_font == other.m_font &&
139 RefPtr<RefCountedHFONT> m_font; member in class:WebCore::FontPlatformData
  /external/webkit/WebCore/platform/graphics/wx/
FontPlatformData.h 49 : m_font(0)
53 : m_font(font)
56 wxFont* font() { return m_font; }
59 wxFont* m_font; member in class:WebCore::FontHolder
68 m_font(0)
76 , m_font(0)
82 , m_font(0)
87 return m_font->font();
105 if (m_font && m_fontState == VALID && other.m_fontState == VALID && other.m_font) {
128 WTF::RefPtr<FontHolder> m_font; member in class:WebCore::FontPlatformData
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
FontPlatformData.h 60 , m_font(0)
74 , m_font(0)
83 FontPlatformData(WTF::HashTableDeletedValueType) : m_font(hashTableDeletedFontValue()) { }
84 bool isHashTableDeletedValue() const { return m_font == hashTableDeletedFontValue(); }
98 ASSERT(m_font != 0 || m_cgFont == 0);
99 uintptr_t hashCodes[2] = { (uintptr_t)m_font, m_syntheticBold << 1 | m_syntheticOblique };
107 return m_font == other.m_font && m_syntheticBold == other.m_syntheticBold && m_syntheticOblique == other.m_syntheticOblique &&
111 NSFont *font() const { return m_font; }
130 NSFont *m_font; member in struct:WebCore::FontPlatformData
    [all...]
ComplexTextController.h 150 const Font& m_font; member in class:WebCore::ComplexTextController
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.h 229 Font m_font; member in struct:WebCore::CanvasRenderingContext2D::State
  /external/webkit/WebCore/platform/graphics/wince/
FontPlatformData.cpp 99 LOGFONT m_font; member in class:WebCore::FixedSizeFontData
113 memset(&m_font, 0, sizeof(m_font));
243 LOGFONT& winFont = fontData->m_font;
395 m_private->m_rootFontData->m_hfont.set(CreateFontIndirect(&m_private->m_rootFontData->m_font));
408 LOGFONT font = m_private->m_rootFontData->m_font;
461 return m_private->m_rootFontData->m_font;

Completed in 447 milliseconds