Home
last modified time | relevance | path

Searched refs:comparePoint (Results 1 – 11 of 11) sorted by relevance

/external/webkit/LayoutTests/fast/dom/Selection/script-tests/
DgetRangeAt.js12 var result = range.comparePoint(textNode, 0);
/external/webkit/Source/WebCore/dom/
DRange.cpp319 short Range::comparePoint(Node* refNode, int offset, ExceptionCode& ec) const in comparePoint() function in WebCore::Range
396 if (comparePoint(parentNode, nodeIndex, ec) < 0) { // starts before in compareNode()
397 if (comparePoint(parentNode, nodeIndex + 1, ec) > 0) // ends after the range in compareNode()
401 if (comparePoint(parentNode, nodeIndex + 1, ec) > 0) // ends after the range in compareNode()
598 if (comparePoint(parentNode, nodeIndex, ec) < 0 && // starts before start in intersectsNode()
599 comparePoint(parentNode, nodeIndex + 1, ec) < 0) { // ends before start in intersectsNode()
601 } else if (comparePoint(parentNode, nodeIndex, ec) > 0 && // starts after end in intersectsNode()
602 comparePoint(parentNode, nodeIndex + 1, ec) > 0) { // ends after end in intersectsNode()
DRange.h67 short comparePoint(Node* refNode, int offset, ExceptionCode&) const;
DRange.idl114 short comparePoint(in Node refNode,
/external/webkit/Source/WebCore/bindings/objc/
DPublicDOMInterfaces.h1182 - (short)comparePoint:(DOMNode *)refNode offset:(int)offset AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3131395 - Implements comparePoint on the Range class
31404 (WebCore::Range::comparePoint):
49947 - fixed <rdar://problem/4578123> support Range.comparePoint
49952 (WebCore::Range::comparePoint):
DChangeLog-2007-10-1440153 instead of Range::comparePoint, because comparePositions can
40168 ends of the selection and then use Range::comparePoint.
41076 comment to Range::comparePoint in dom/Range.cpp has
41080 (WebCore::Range::comparePoint):
DChangeLog-2008-08-1035540 (WebCore::Range::comparePoint): Ditto.
42114 (WebCore::Range::comparePoint): Ditto.
74153 (WebCore::Range::comparePoint):
DChangeLog16891 …(WebCore::Range::comparePoint): Calls compareBoundaryPoints; exit early when an exception is throw…
DChangeLog-2009-06-1634802 (WebCore::Range::comparePoint):
DChangeLog-2010-01-2984476 (WebCore::Range::comparePoint): added const qualifier