Searched defs:TextPosition0 (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/text/
H A DTextPosition.h38 * Later TextPosition0 and TextPosition1 and both number types can be merged together quite easily.
49 * e.g. in areas where 0-based integers are used, TextPosition0 should be introduced. This
127 typedef TextPosition<ZeroBasedNumber> TextPosition0; typedef in namespace:WTF
130 inline TextPosition0 toZeroBasedTextPosition(const TextPosition1& position)
132 return TextPosition0(position.m_line.convertToZeroBased(), position.m_column.convertToZeroBased());
135 inline TextPosition1 toOneBasedTextPosition(const TextPosition0& position)
147 using WTF::TextPosition0;

Completed in 76 milliseconds