HomeSort by relevance Sort by last modified time
    Searched defs:TextPosition (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributesBuilder.h 49 struct TextPosition {
50 TextPosition(SVGTextPositioningElement* newElement = 0, unsigned newStart = 0, unsigned newLength = 0)
65 void fillAttributesAtPosition(const TextPosition&);
68 Vector<TextPosition> m_textPositions;
  /external/webkit/Source/JavaScriptCore/wtf/text/
TextPosition.h 35 * TextPosition structure specifies coordinates within an text resource. It is used mostly
47 * 2 corresponding types of TextPosition structure. While only one type ought to be enough,
60 class TextPosition {
62 TextPosition(NUMBER line, NUMBER column)
67 TextPosition() {}
69 bool operator==(const TextPosition& other) { return m_line == other.m_line && m_column == other.m_column; }
70 bool operator!=(const TextPosition& other) { return !((*this) == other); }
73 static TextPosition<NUMBER> minimumPosition() { return TextPosition<NUMBER>(NUMBER::base(), NUMBER::base()); }
76 static TextPosition<NUMBER> belowRangePosition() { return TextPosition<NUMBER>(NUMBER::belowBase(), NUMBER::belowBase( (…)
    [all...]

Completed in 633 milliseconds