/external/webkit/WebCore/platform/graphics/ |
D | GlyphPageTreeNode.cpp | 134 GlyphPage* parentPage = m_parent->page(); in initializePage() 142 unsigned start = pageNumber * GlyphPage::size; in initializePage() 143 UChar buffer[GlyphPage::size * 2 + 2]; in initializePage() 149 bufferLength = GlyphPage::size; in initializePage() 150 for (i = 0; i < GlyphPage::size; i++) in initializePage() 164 } else if (start == (leftToRightMark & ~(GlyphPage::size - 1))) { in initializePage() 173 } else if (start == (objectReplacementCharacter & ~(GlyphPage::size - 1))) { in initializePage() 178 bufferLength = GlyphPage::size * 2; in initializePage() 179 for (i = 0; i < GlyphPage::size; i++) { in initializePage() 186 m_page = GlyphPage::create(this); in initializePage() [all …]
|
D | GlyphPageTreeNode.h | 60 struct GlyphPage : public RefCounted<GlyphPage> { struct 61 static PassRefPtr<GlyphPage> create(GlyphPageTreeNode* owner) in create() argument 63 return adoptRef(new GlyphPage(owner)); in create() 87 GlyphPage(GlyphPageTreeNode* owner) in GlyphPage() argument 147 GlyphPage* page() const { return m_page.get(); } in page() 163 RefPtr<GlyphPage> m_page;
|
D | FontFastPath.cpp | 56 unsigned pageNumber = (c / GlyphPage::size); in glyphDataForCharacter() 67 GlyphPage* page; in glyphDataForCharacter() 100 const GlyphPage* smallCapsPage = smallCapsNode->page(); in glyphDataForCharacter() 152 … GlyphPage* fallbackPage = GlyphPageTreeNode::getRootChild(characterFontData, pageNumber)->page(); in glyphDataForCharacter()
|
D | SimpleFontData.cpp | 86 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page(); in platformGlyphInit()
|
/external/webkit/WebCore/platform/graphics/chromium/ |
D | GlyphPageTreeNodeChromiumWin.cpp | 46 static void fillEmptyGlyphs(GlyphPage* page) in fillEmptyGlyphs() 48 for (int i = 0; i < GlyphPage::size; ++i) in fillEmptyGlyphs() 70 GlyphPage* page, in fillBMPGlyphs() 120 WORD localGlyphBuffer[GlyphPage::size]; in fillBMPGlyphs() 198 GlyphPage* page, in fillNonBMPGlyphs() 228 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* characterBuffer, in fill()
|
D | GlyphPageTreeNodeLinux.cpp | 43 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const … in fill() 54 SkAutoSTMalloc <GlyphPage::size, uint16_t> glyphStorage(length); in fill()
|
D | SimpleFontDataLinux.cpp | 89 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page(); in platformInit()
|
/external/webkit/WebCore/platform/graphics/win/ |
D | GlyphPageTreeNodeCGWin.cpp | 37 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const … in fill() 45 CGGlyph localGlyphBuffer[GlyphPage::size]; in fill()
|
D | GlyphPageTreeNodeCairoWin.cpp | 36 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const … in fill() 52 WORD localGlyphBuffer[GlyphPage::size * 2]; in fill()
|
D | SimpleFontDataCGWin.cpp | 103 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page(); in platformInit()
|
/external/webkit/WebCore/platform/graphics/gtk/ |
D | GlyphPageTreeNodeGtk.cpp | 38 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const … in fill() 42 if (bufferLength > GlyphPage::size) in fill()
|
D | GlyphPageTreeNodePango.cpp | 74 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const … in fill() 78 if (bufferLength > GlyphPage::size) in fill()
|
/external/webkit/WebCore/platform/graphics/android/ |
D | GlyphMapAndroid.cpp | 45 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const … in fill() 56 SkAutoSTMalloc <GlyphPage::size, uint16_t> glyphStorage(length); in fill()
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | GlyphPageTreeNodeMac.cpp | 38 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const … in fill() 58 OSStatus status = wkInitializeGlyphVector(GlyphPage::size, &glyphVector); in fill()
|
D | SimpleFontDataMac.mm | 263 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page();
|
/external/webkit/WebCore/platform/graphics/wx/ |
D | GlyphMapWx.cpp | 38 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const … in fill()
|
/external/webkit/WebCore/ |
D | ChangeLog-2008-08-10 | 13445 (WebCore::GlyphPage::create): 13446 (WebCore::GlyphPage::GlyphPage): 41806 (WebCore::GlyphPage::fill): 46704 (WebCore::GlyphPage::fill): 46706 (WebCore::GlyphPage::fill): 46712 - fix GlyphPage::fill() logic for partial page fills 46715 (WebCore::GlyphPage::fill): Changed the test for non-BMP characters to 46719 (WebCore::GlyphPage::fill): Ditto. 47734 (WebCore::GlyphPage::fill): 51289 (WebCore::GlyphPage::GlyphPage): [all …]
|
D | ChangeLog-2007-10-14 | 18652 (WebCore::GlyphPage::fill): Use wkGetGlyphs. 20933 (WebCore::GlyphPage::fill): Lock/unlock only once. 26852 (WebCore::GlyphPage::fill): 51806 (WebCore::GlyphPage::fill): 63328 (WebCore::GlyphPage::glyphDataForCharacter): 63329 (WebCore::GlyphPage::setGlyphDataForCharacter): 63330 (WebCore::GlyphPage::setGlyphDataForIndex): 63340 (WebCore::GlyphPage::fill): 63347 (WebCore::GlyphPage::fill): Changed to return false if the font has no glyphs in the page. 63350 (WebCore::GlyphPage::fill): [all …]
|
D | ChangeLog-2006-12-31 | 32385 to GlyphPage::size. 53281 (WebCore::GlyphMap::GlyphPage::glyphDataForCharacter): 53282 (WebCore::GlyphMap::GlyphPage::setGlyphDataForCharacter): 53283 (WebCore::GlyphMap::GlyphPage::setGlyphDataForIndex):
|
D | ChangeLog | 7352 (WebCore::GlyphPage::fill): 7354 (WebCore::GlyphPage::fill): 44581 (WebCore::GlyphPage::fill):
|