Searched refs:comparePoint (Results 1 – 11 of 11) sorted by relevance
/external/webkit/LayoutTests/fast/dom/Selection/script-tests/ |
D | getRangeAt.js | 12 var result = range.comparePoint(textNode, 0);
|
/external/webkit/Source/WebCore/dom/ |
D | Range.cpp | 319 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()
|
D | Range.h | 67 short comparePoint(Node* refNode, int offset, ExceptionCode&) const;
|
D | Range.idl | 114 short comparePoint(in Node refNode,
|
/external/webkit/Source/WebCore/bindings/objc/ |
D | PublicDOMInterfaces.h | 1182 - (short)comparePoint:(DOMNode *)refNode offset:(int)offset AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-12-31 | 31395 - Implements comparePoint on the Range class 31404 (WebCore::Range::comparePoint): 49947 - fixed <rdar://problem/4578123> support Range.comparePoint 49952 (WebCore::Range::comparePoint):
|
D | ChangeLog-2007-10-14 | 40153 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):
|
D | ChangeLog-2008-08-10 | 35540 (WebCore::Range::comparePoint): Ditto. 42114 (WebCore::Range::comparePoint): Ditto. 74153 (WebCore::Range::comparePoint):
|
D | ChangeLog | 16891 …(WebCore::Range::comparePoint): Calls compareBoundaryPoints; exit early when an exception is throw…
|
D | ChangeLog-2009-06-16 | 34802 (WebCore::Range::comparePoint):
|
D | ChangeLog-2010-01-29 | 84476 (WebCore::Range::comparePoint): added const qualifier
|