HomeSort by relevance Sort by last modified time
    Searched refs:SVGGlyphIdentifier (Results 1 - 7 of 7) sorted by null

  /external/webkit/WebCore/svg/
SVGGlyphElement.cpp 78 static inline SVGGlyphIdentifier::ArabicForm parseArabicForm(const AtomicString& value)
81 return SVGGlyphIdentifier::Medial;
83 return SVGGlyphIdentifier::Terminal;
85 return SVGGlyphIdentifier::Isolated;
87 return SVGGlyphIdentifier::Initial;
89 return SVGGlyphIdentifier::None;
92 static inline SVGGlyphIdentifier::Orientation parseOrientation(const AtomicString& value)
95 return SVGGlyphIdentifier::Horizontal;
97 return SVGGlyphIdentifier::Vertical;
99 return SVGGlyphIdentifier::Both
    [all...]
SVGGlyphElement.h 37 struct SVGGlyphIdentifier {
53 SVGGlyphIdentifier()
73 bool operator==(const SVGGlyphIdentifier& other) const
116 SVGGlyphIdentifier buildGlyphIdentifier() const;
119 static void inheritUnspecifiedAttributes(SVGGlyphIdentifier&, const SVGFontData*);
123 static SVGGlyphIdentifier buildGenericGlyphIdentifier(const SVGElement*);
SVGGlyphMap.h 39 Vector<SVGGlyphIdentifier> glyphs;
49 void add(const String& string, const SVGGlyphIdentifier& glyph)
73 static inline bool compareGlyphPriority(const SVGGlyphIdentifier& first, const SVGGlyphIdentifier& second)
78 void get(const String& string, Vector<SVGGlyphIdentifier>& glyphs)
SVGFont.cpp 82 static inline SVGGlyphIdentifier::ArabicForm processArabicFormDetection(const UChar& curChar, bool& lastCharShapesRight, SVGGlyphIdentifier::ArabicForm* prevForm)
84 SVGGlyphIdentifier::ArabicForm curForm;
97 ASSERT(correctedForm >= SVGGlyphIdentifier::None && correctedForm <= SVGGlyphIdentifier::Medial);
98 *prevForm = static_cast<SVGGlyphIdentifier::ArabicForm>(correctedForm);
101 curForm = SVGGlyphIdentifier::Initial;
103 curForm = shapingMode == SNone ? SVGGlyphIdentifier::None : SVGGlyphIdentifier::Isolated;
109 static Vector<SVGGlyphIdentifier::ArabicForm> charactersWithArabicForm(const String& input, bool rtl
    [all...]
SVGFontElement.h 45 void getGlyphIdentifiersForString(const String&, Vector<SVGGlyphIdentifier>&) const;
SVGFontElement.cpp 243 void SVGFontElement::getGlyphIdentifiersForString(const String& string, Vector<SVGGlyphIdentifier>& glyphs) const
  /external/webkit/WebCore/platform/graphics/
SimpleFontData.cpp 81 Vector<SVGGlyphIdentifier> spaceGlyphs;
85 Vector<SVGGlyphIdentifier> numeralZeroGlyphs;
89 Vector<SVGGlyphIdentifier> letterWGlyphs;
93 // FIXME: is there a way we can get the space glyph from the SVGGlyphIdentifier above?

Completed in 626 milliseconds