Searched refs:compareBoundaryPoints (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/page/
H A DDOMSelection.cpp411 if (r->compareBoundaryPoints(Range::START_TO_START, range.get(), ec) == -1) {
413 if (r->compareBoundaryPoints(Range::START_TO_END, range.get(), ec) > -1) {
414 if (r->compareBoundaryPoints(Range::END_TO_END, range.get(), ec) == -1)
423 if (r->compareBoundaryPoints(Range::END_TO_START, range.get(), ec) < 1) {
424 if (r->compareBoundaryPoints(Range::END_TO_END, range.get(), ec) == -1)
477 bool nodeFullySelected = Range::compareBoundaryPoints(parentNode, nodeIndex, selectedRange->startContainer(ec), selectedRange->startOffset(ec), ec) >= 0 && !ec
478 && Range::compareBoundaryPoints(parentNode, nodeIndex + 1, selectedRange->endContainer(ec), selectedRange->endOffset(ec), ec) <= 0 && !ec;
483 bool nodeFullyUnselected = (Range::compareBoundaryPoints(parentNode, nodeIndex, selectedRange->endContainer(ec), selectedRange->endOffset(ec), ec) > 0 && !ec)
484 || (Range::compareBoundaryPoints(parentNode, nodeIndex + 1, selectedRange->startContainer(ec), selectedRange->startOffset(ec), ec) < 0 && !ec);
/external/webkit/Source/WebKit/win/Interfaces/
H A DDOMRange.idl145 - (short)compareBoundaryPoints:(unsigned short)how :(DOMRange *)sourceRange;
147 HRESULT compareBoundaryPoints([in] unsigned short how, [in] IDOMRange* sourceRange);
/external/webkit/Source/WebCore/dom/
H A DRange.h71 short compareBoundaryPoints(CompareHow, const Range* sourceRange, ExceptionCode&) const;
72 static short compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, ExceptionCode&);
73 static short compareBoundaryPoints(const RangeBoundaryPoint& boundaryA, const RangeBoundaryPoint& boundaryB, ExceptionCode&);
H A DRange.cpp229 else if (compareBoundaryPoints(m_start, m_end, ec) > 0) {
269 if (compareBoundaryPoints(m_start, m_end, ec) > 0) {
315 return compareBoundaryPoints(refNode, offset, m_start.container(), m_start.offset(), ec) >= 0 && !ec
316 && compareBoundaryPoints(refNode, offset, m_end.container(), m_end.offset(), ec) <= 0 && !ec;
346 if (compareBoundaryPoints(refNode, offset, m_start.container(), m_start.offset(), ec) < 0)
353 if (compareBoundaryPoints(refNode, offset, m_end.container(), m_end.offset(), ec) > 0 && !ec)
407 short Range::compareBoundaryPoints(CompareHow how, const Range* sourceRange, ExceptionCode& ec) const function in class:WebCore::Range
445 return compareBoundaryPoints(m_start, sourceRange->m_start, ec);
447 return compareBoundaryPoints(m_end, sourceRange->m_start, ec);
449 return compareBoundaryPoints(m_en
458 short Range::compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, ExceptionCode& ec) function in class:WebCore::Range
551 short Range::compareBoundaryPoints(const RangeBoundaryPoint& boundaryA, const RangeBoundaryPoint& boundaryB, ExceptionCode& ec) function in class:WebCore::Range
[all...]
H A DRange.idl66 [OldStyleObjC] short compareBoundaryPoints(in CompareHow how,
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
H A DWebPageMac.mm400 range->compareBoundaryPoints(Range::START_TO_START, positionRange.get(), ec);
/external/webkit/Source/WebCore/editing/
H A Dhtmlediting.cpp126 int result = Range::compareBoundaryPoints(nodeA, offsetA, nodeB, offsetB, ec);
H A Dmarkup.cpp575 if (pastEnd && Range::compareBoundaryPoints(startNode, 0, pastEnd, 0, ec) >= 0) {
H A DEditorCommand.cpp268 Range* start = a->compareBoundaryPoints(Range::START_TO_START, b, ec) <= 0 ? a : b;
270 Range* end = a->compareBoundaryPoints(Range::END_TO_END, b, ec) <= 0 ? b : a;
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h1169 - (short)compareBoundaryPoints:(unsigned short)how sourceRange:(DOMRange *)sourceRange AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
1170 - (short)compareBoundaryPoints:(unsigned short)how :(DOMRange *)sourceRange;
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 4268 milliseconds