Searched refs:testRange (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
D | DumpRenderTreeSupportGtk.cpp | 587 …RefPtr<Range> testRange = Range::create(scope->document(), scope, 0, range->startContainer(), rang… in selectedRange() local 588 ASSERT(testRange->startContainer() == scope); in selectedRange() 589 *start = TextIterator::rangeLength(testRange.get()); in selectedRange() 592 testRange->setEnd(range->endContainer(), range->endOffset(), ec); in selectedRange() 593 ASSERT(testRange->startContainer() == scope); in selectedRange() 594 *end = TextIterator::rangeLength(testRange.get()); in selectedRange()
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | DumpRenderTreeSupportQt.cpp | 573 …RefPtr<Range> testRange = Range::create(scope->document(), scope, 0, range->startContainer(), rang… in selectedRange() local 574 ASSERT(testRange->startContainer() == scope); in selectedRange() 575 int startPosition = TextIterator::rangeLength(testRange.get()); in selectedRange() 578 testRange->setEnd(range->endContainer(), range->endOffset(), ec); in selectedRange() 579 ASSERT(testRange->startContainer() == scope); in selectedRange() 580 int endPosition = TextIterator::rangeLength(testRange.get()); in selectedRange()
|
/external/webkit/Source/WebCore/editing/ |
D | TextIterator.cpp | 2475 …RefPtr<Range> testRange = Range::create(scope->document(), scope, 0, range->startContainer(), rang… in locationAndLengthFromRange() local 2476 ASSERT(testRange->startContainer() == scope); in locationAndLengthFromRange() 2477 location = TextIterator::rangeLength(testRange.get()); in locationAndLengthFromRange() 2480 testRange->setEnd(range->endContainer(), range->endOffset(), ec); in locationAndLengthFromRange() 2481 ASSERT(testRange->startContainer() == scope); in locationAndLengthFromRange() 2482 length = TextIterator::rangeLength(testRange.get()) - location; in locationAndLengthFromRange()
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestNFAConstruction.java | 113 @Test public void testRange() throws Exception { in testRange() method in TestNFAConstruction
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ContiguousSetTest.java | 226 public void testRange() { in testRange() method in ContiguousSetTest
|