Home | History | Annotate | Download | only in text

Lines Matching refs:NUMBER

38  * Later TextPosition0 and TextPosition1 and both number types can be merged together quite easily.
52 * Later both number types can be merged in one type quite easily.
59 template<typename NUMBER>
62 TextPosition(NUMBER line, NUMBER column)
73 static TextPosition<NUMBER> minimumPosition() { return TextPosition<NUMBER>(NUMBER::base(), NUMBER::base()); }
76 static TextPosition<NUMBER> belowRangePosition() { return TextPosition<NUMBER>(NUMBER::belowBase(), NUMBER::belowBase()); }
78 NUMBER m_line;
79 NUMBER m_column;
84 // An int wrapper that always reminds you that the number should be 0-based
106 // An int wrapper that always reminds you that the number should be 1-based