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

/external/webkit/Source/JavaScriptCore/wtf/text/
H A DTextPosition.h46 * Here we introduce 2 types of numbers: ZeroBasedNumber and OneBasedNumber and
85 class ZeroBasedNumber { class in namespace:WTF
87 static ZeroBasedNumber fromZeroBasedInt(int zeroBasedInt) { return ZeroBasedNumber(zeroBasedInt); }
89 ZeroBasedNumber() {} function in class:WTF::ZeroBasedNumber
95 bool operator==(ZeroBasedNumber other) { return m_value == other.m_value; }
96 bool operator!=(ZeroBasedNumber other) { return !((*this) == other); }
98 static ZeroBasedNumber base() { return 0; }
99 static ZeroBasedNumber belowBase() { return -1; }
102 ZeroBasedNumber(in function in class:WTF::ZeroBasedNumber
[all...]

Completed in 116 milliseconds