Home
last modified time | relevance | path

Searched refs:SVGGlyphIdentifier (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/svg/
DSVGGlyphElement.cpp79 static inline SVGGlyphIdentifier::ArabicForm parseArabicForm(const AtomicString& value) in parseArabicForm()
82 return SVGGlyphIdentifier::Medial; in parseArabicForm()
84 return SVGGlyphIdentifier::Terminal; in parseArabicForm()
86 return SVGGlyphIdentifier::Isolated; in parseArabicForm()
88 return SVGGlyphIdentifier::Initial; in parseArabicForm()
90 return SVGGlyphIdentifier::None; in parseArabicForm()
93 static inline SVGGlyphIdentifier::Orientation parseOrientation(const AtomicString& value) in parseOrientation()
96 return SVGGlyphIdentifier::Horizontal; in parseOrientation()
98 return SVGGlyphIdentifier::Vertical; in parseOrientation()
100 return SVGGlyphIdentifier::Both; in parseOrientation()
[all …]
DSVGFont.cpp84 static inline SVGGlyphIdentifier::ArabicForm processArabicFormDetection(const UChar& curChar, bool&… in processArabicFormDetection()
86 SVGGlyphIdentifier::ArabicForm curForm; in processArabicFormDetection()
99 … ASSERT(correctedForm >= SVGGlyphIdentifier::None && correctedForm <= SVGGlyphIdentifier::Medial); in processArabicFormDetection()
100 *prevForm = static_cast<SVGGlyphIdentifier::ArabicForm>(correctedForm); in processArabicFormDetection()
103 curForm = SVGGlyphIdentifier::Initial; in processArabicFormDetection()
105 curForm = shapingMode == SNone ? SVGGlyphIdentifier::None : SVGGlyphIdentifier::Isolated; in processArabicFormDetection()
111 static Vector<SVGGlyphIdentifier::ArabicForm> charactersWithArabicForm(const String& input, bool rt… in charactersWithArabicForm()
113 Vector<SVGGlyphIdentifier::ArabicForm> forms; in charactersWithArabicForm()
141 …tic inline bool isCompatibleArabicForm(const SVGGlyphIdentifier& identifier, const Vector<SVGGlyph… in isCompatibleArabicForm()
146 Vector<SVGGlyphIdentifier::ArabicForm>::const_iterator it = chars.begin() + startPosition; in isCompatibleArabicForm()
[all …]
DSVGGlyphElement.h37 struct SVGGlyphIdentifier { struct
53 SVGGlyphIdentifier() in SVGGlyphIdentifier() argument
73 bool operator==(const SVGGlyphIdentifier& other) const argument
107 SVGGlyphIdentifier buildGlyphIdentifier() const; argument
110 static void inheritUnspecifiedAttributes(SVGGlyphIdentifier&, const SVGFontData*);
114 static SVGGlyphIdentifier buildGenericGlyphIdentifier(const SVGElement*);
DSVGGlyphMap.h38 Vector<SVGGlyphIdentifier> glyphs;
48 void add(const String& string, const SVGGlyphIdentifier& glyph) in add()
72 …static inline bool compareGlyphPriority(const SVGGlyphIdentifier& first, const SVGGlyphIdentifier&… in compareGlyphPriority()
77 void get(const String& string, Vector<SVGGlyphIdentifier>& glyphs) in get()
DSVGFontElement.h62 void getGlyphIdentifiersForString(const String&, Vector<SVGGlyphIdentifier>&) const;
DSVGFontElement.cpp176 void SVGFontElement::getGlyphIdentifiersForString(const String& string, Vector<SVGGlyphIdentifier>&… in getGlyphIdentifiersForString()
/external/webkit/Source/WebCore/platform/graphics/
DSimpleFontData.cpp92 Vector<SVGGlyphIdentifier> letterXGlyphs; in SimpleFontData()
104 Vector<SVGGlyphIdentifier> spaceGlyphs; in SimpleFontData()
108 Vector<SVGGlyphIdentifier> numeralZeroGlyphs; in SimpleFontData()
112 Vector<SVGGlyphIdentifier> letterWGlyphs; in SimpleFontData()
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1037657 (WebCore::SVGGlyphIdentifier::SVGGlyphIdentifier):
60703 (WebCore::SVGGlyphIdentifier::):
60704 (WebCore::SVGGlyphIdentifier::SVGGlyphIdentifier):
60705 (WebCore::SVGGlyphIdentifier::inheritedValue):
60706 (WebCore::SVGGlyphIdentifier::operator==):
62528 …(WebCore::SVGFontElement::collectGlyphs): Simplified implementation - SVGGlyphIdentifier now build…
62721 …(WebCore::SVGGlyphIdentifier::): Structure holding all data to represent a SVG glyph (origin, adva…
62722 (WebCore::SVGGlyphIdentifier::SVGGlyphIdentifier):
DChangeLog-2011-02-1637666 (WebCore::SVGGlyphIdentifier::SVGGlyphIdentifier):
37667 (WebCore::SVGGlyphIdentifier::inheritedValue):
37668 (WebCore::SVGGlyphIdentifier::operator==):
DChangeLog14968 Split SVGGlyphIdentifier class out of SVGGlyphElement.h
14971 … Move SVGGlyphIdentifier class out of SVGGlyphElement.h, place it in platform/graphics/SVGGlyph.h
14989 …orm/graphics/SVGGlyph.h: Copied from svg/SVGGlyphElement.h. Renamed SVGGlyphIdentifier to SVGGlyph.
14992 …* platform/graphics/SimpleFontData.cpp: Adapt for SVGGlyphIdentifier -> SVGGlyph and nameLength ->…
DChangeLog-2010-12-0635658 (WebCore::SVGGlyphIdentifier::operator==):