OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGGlyphIdentifier
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/svg/
SVGGlyphElement.cpp
79
static inline
SVGGlyphIdentifier
::ArabicForm parseArabicForm(const AtomicString& value)
82
return
SVGGlyphIdentifier
::Medial;
84
return
SVGGlyphIdentifier
::Terminal;
86
return
SVGGlyphIdentifier
::Isolated;
88
return
SVGGlyphIdentifier
::Initial;
90
return
SVGGlyphIdentifier
::None;
93
static inline
SVGGlyphIdentifier
::Orientation parseOrientation(const AtomicString& value)
96
return
SVGGlyphIdentifier
::Horizontal;
98
return
SVGGlyphIdentifier
::Vertical;
100
return
SVGGlyphIdentifier
::Both
[
all
...]
SVGGlyphElement.h
37
struct
SVGGlyphIdentifier
{
53
SVGGlyphIdentifier
()
73
bool operator==(const
SVGGlyphIdentifier
& other) const
107
SVGGlyphIdentifier
buildGlyphIdentifier() const;
110
static void inheritUnspecifiedAttributes(
SVGGlyphIdentifier
&, const SVGFontData*);
114
static
SVGGlyphIdentifier
buildGenericGlyphIdentifier(const SVGElement*);
SVGGlyphMap.h
38
Vector<
SVGGlyphIdentifier
> glyphs;
48
void add(const String& string, const
SVGGlyphIdentifier
& glyph)
72
static inline bool compareGlyphPriority(const
SVGGlyphIdentifier
& first, const
SVGGlyphIdentifier
& second)
77
void get(const String& string, Vector<
SVGGlyphIdentifier
>& glyphs)
SVGFont.cpp
84
static inline
SVGGlyphIdentifier
::ArabicForm processArabicFormDetection(const UChar& curChar, bool& lastCharShapesRight,
SVGGlyphIdentifier
::ArabicForm* prevForm)
86
SVGGlyphIdentifier
::ArabicForm curForm;
99
ASSERT(correctedForm >=
SVGGlyphIdentifier
::None && correctedForm <=
SVGGlyphIdentifier
::Medial);
100
*prevForm = static_cast<
SVGGlyphIdentifier
::ArabicForm>(correctedForm);
103
curForm =
SVGGlyphIdentifier
::Initial;
105
curForm = shapingMode == SNone ?
SVGGlyphIdentifier
::None :
SVGGlyphIdentifier
::Isolated;
111
static Vector<
SVGGlyphIdentifier
::ArabicForm> charactersWithArabicForm(const String& input, bool rtl
[
all
...]
SVGFontElement.h
62
void getGlyphIdentifiersForString(const String&, Vector<
SVGGlyphIdentifier
>&) const;
SVGFontElement.cpp
176
void SVGFontElement::getGlyphIdentifiersForString(const String& string, Vector<
SVGGlyphIdentifier
>& glyphs) const
/external/webkit/Source/WebCore/platform/graphics/
SimpleFontData.cpp
92
Vector<
SVGGlyphIdentifier
> letterXGlyphs;
104
Vector<
SVGGlyphIdentifier
> spaceGlyphs;
108
Vector<
SVGGlyphIdentifier
> numeralZeroGlyphs;
112
Vector<
SVGGlyphIdentifier
> letterWGlyphs;
116
// FIXME: is there a way we can get the space glyph from the
SVGGlyphIdentifier
above?
Completed in 38 milliseconds