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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutAttributesBuilder.h 55 struct TextPosition {
56 TextPosition(SVGTextPositioningElement* newElement = 0, unsigned newStart = 0, unsigned newLength = 0)
70 void fillCharacterDataMap(const TextPosition&);
74 Vector<TextPosition> m_textPositions;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextPosition.h 59 // TextPosition structure specifies coordinates within an text resource. It is used mostly
61 class TextPosition {
63 TextPosition(OrdinalNumber line, OrdinalNumber column)
68 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 minimumPosition() { return TextPosition(OrdinalNumber::first(), OrdinalNumber::first()); }
76 static TextPosition belowRangePosition() { return TextPosition(OrdinalNumber::beforeFirst(), OrdinalNumber::beforeFirst());
    [all...]

Completed in 91 milliseconds