HomeSort by relevance Sort by last modified time
    Searched refs:OneBasedNumber (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/text/
TextPosition.h 46 * Here we introduce 2 types of numbers: ZeroBasedNumber and OneBasedNumber and
82 class OneBasedNumber;
93 OneBasedNumber convertToOneBased() const;
107 class OneBasedNumber {
109 static OneBasedNumber fromOneBasedInt(int oneBasedInt) { return OneBasedNumber(oneBasedInt); }
110 OneBasedNumber() {}
116 bool operator==(OneBasedNumber other) { return m_value == other.m_value; }
117 bool operator!=(OneBasedNumber other) { return !((*this) == other); }
119 static OneBasedNumber base() { return 1;
    [all...]
  /external/webkit/Source/WebCore/dom/
XMLDocumentParser.cpp 147 handleError(type, m, TextPosition1(WTF::OneBasedNumber::fromOneBasedInt(lineNumber), WTF::OneBasedNumber::fromOneBasedInt(columnNumber)));
XMLDocumentParserQt.cpp 251 return TextPosition1(WTF::OneBasedNumber::fromOneBasedInt(lineNumber()), WTF::OneBasedNumber::fromOneBasedInt(columnNumber()));
XMLDocumentParserLibxml2.cpp     [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptDebugServer.cpp 307 TextPosition0 textPosition(WTF::OneBasedNumber::fromOneBasedInt(lineNumber).convertToZeroBased(), WTF::ZeroBasedNumber::base());
318 TextPosition0 textPosition(WTF::OneBasedNumber::fromOneBasedInt(lineNumber).convertToZeroBased(), WTF::ZeroBasedNumber::base());
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 772 TextPosition1 position(WTF::OneBasedNumber::fromOneBasedInt(source.startLine), WTF::OneBasedNumber::base());
784 TextPosition1 position(WTF::OneBasedNumber::fromOneBasedInt(sourcesIn[i].startLine), WTF::OneBasedNumber::base());
838 TextPosition1 position(WTF::OneBasedNumber::fromOneBasedInt(source.startLine), WTF::OneBasedNumber::base());
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.cpp 64 return TextPosition1(WTF::OneBasedNumber::fromOneBasedInt(-1), WTF::OneBasedNumber::base());
    [all...]

Completed in 645 milliseconds