OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GlyphPage
(Results
1 - 18
of
18
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/haiku/
GlyphPageTreeNodeHaiku.cpp
41
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* characterBuffer, unsigned bufferLength, const SimpleFontData* fontData)
43
bool isUtf16 = bufferLength !=
GlyphPage
::size;
46
for (unsigned i = 0; i <
GlyphPage
::size; i++) {
/external/webkit/Source/WebCore/platform/graphics/freetype/
GlyphPageTreeNodeFreeType.cpp
41
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
45
if (bufferLength >
GlyphPage
::size)
/external/webkit/Source/WebCore/platform/graphics/win/
GlyphPageTreeNodeCGWin.cpp
37
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
45
CGGlyph localGlyphBuffer[
GlyphPage
::size];
GlyphPageTreeNodeCairoWin.cpp
36
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
52
WORD localGlyphBuffer[
GlyphPage
::size * 2];
SimpleFontDataCGWin.cpp
100
GlyphPage
* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page();
/external/webkit/Source/WebCore/platform/graphics/
GlyphPageTreeNode.cpp
127
static bool fill(
GlyphPage
* pageToFill, unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
149
GlyphPage
* parentPage = m_parent->page();
157
unsigned start = pageNumber *
GlyphPage
::size;
158
UChar buffer[
GlyphPage
::size * 2 + 2];
164
bufferLength =
GlyphPage
::size;
165
for (i = 0; i <
GlyphPage
::size; i++)
180
} else if (start == (leftToRightMark & ~(
GlyphPage
::size - 1))) {
191
} else if (start == (objectReplacementCharacter & ~(
GlyphPage
::size - 1))) {
194
} else if (start == (zeroWidthNoBreakSpace & ~(
GlyphPage
::size - 1))) {
199
bufferLength =
GlyphPage
::size * 2
[
all
...]
GlyphPageTreeNode.h
63
// A
GlyphPage
contains a fixed-size set of GlyphData mappings for a contiguous
71
class
GlyphPage
: public RefCounted<
GlyphPage
> {
73
static PassRefPtr<
GlyphPage
> create(GlyphPageTreeNode* owner)
75
return adoptRef(new
GlyphPage
(owner));
119
void copyFrom(const
GlyphPage
& other)
137
GlyphPage
(GlyphPageTreeNode* owner)
150
// to a
GlyphPage
. Level 0 (the "root") is special. There is one root
152
//
GlyphPage
associated with them, and their initializePage() function is never
157
// These nodes will only have a
GlyphPage
if they have glyphs for that range
[
all
...]
FontFastPath.cpp
62
unsigned pageNumber = (c /
GlyphPage
::size);
73
GlyphPage
* page;
90
const
GlyphPage
* brokenIdeographPage = brokenIdeographNode->page();
104
const
GlyphPage
* verticalRightPage = verticalRightNode->page();
118
const
GlyphPage
* uprightPage = uprightNode->page();
161
const
GlyphPage
* variantPage = variantNode->page();
207
GlyphPage
* fallbackPage = GlyphPageTreeNode::getRootChild(characterFontData, pageNumber)->page();
242
unsigned pageNumber = (character /
GlyphPage
::size);
245
GlyphPage
* page = node->page();
SimpleFontData.cpp
129
GlyphPage
* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page();
149
GlyphPage
* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page();
/external/webkit/Source/WebCore/platform/graphics/chromium/
GlyphPageTreeNodeChromiumWin.cpp
46
static void fillEmptyGlyphs(
GlyphPage
* page)
48
for (int i = 0; i <
GlyphPage
::size; ++i)
70
GlyphPage
* page,
118
WORD localGlyphBuffer[
GlyphPage
::size];
133
// Copy the output to the
GlyphPage
187
GlyphPage
* page,
218
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* characterBuffer,
SimpleFontDataLinux.cpp
137
GlyphPage
* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page();
/external/webkit/Source/WebCore/platform/graphics/wx/
GlyphMapWx.cpp
38
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
/external/webkit/Source/WebCore/platform/graphics/android/
GlyphMapAndroid.cpp
42
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
53
SkAutoSTMalloc <
GlyphPage
::size, uint16_t> glyphStorage(length);
/external/webkit/Source/WebCore/platform/graphics/pango/
GlyphPageTreeNodePango.cpp
74
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
78
if (bufferLength >
GlyphPage
::size)
/external/webkit/Source/WebCore/platform/graphics/skia/
GlyphPageTreeNodeSkia.cpp
74
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
85
SkAutoSTMalloc <
GlyphPage
::size, uint16_t> glyphStorage(length);
/external/webkit/Source/WebCore/platform/graphics/wince/
GlyphPageTreeNodeWinCE.cpp
36
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
/external/webkit/Source/WebCore/platform/graphics/mac/
GlyphPageTreeNodeMac.cpp
54
bool
GlyphPage
::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
134
OSStatus status = wkInitializeGlyphVector(
GlyphPage
::size, &glyphVector);
SimpleFontDataMac.mm
282
GlyphPage
* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page();
Completed in 730 milliseconds