paragraphRange 41 Source/core/editing/SpellCheckRequester.cpp PassRefPtrWillBeRawPtr<Range> paragraphRange, paragraphRange 50 Source/core/editing/SpellCheckRequester.cpp , m_paragraphRange(paragraphRange) paragraphRange 62 Source/core/editing/SpellCheckRequester.cpp PassRefPtr<SpellCheckRequest> SpellCheckRequest::create(TextCheckingTypeMask textCheckingOptions, TextCheckingProcessType processType, PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange, int requestNumber) paragraphRange 65 Source/core/editing/SpellCheckRequester.cpp ASSERT(paragraphRange); paragraphRange 79 Source/core/editing/SpellCheckRequester.cpp return adoptRef(new SpellCheckRequest(checkingRange, paragraphRange, text, textCheckingOptions, processType, hashes, offsets, requestNumber)); paragraphRange 170 Source/core/editing/SpellCheckRequester.cpp if (!request || !canCheckAsynchronously(request->paragraphRange().get())) paragraphRange 48 Source/core/editing/SpellCheckRequester.h static PassRefPtr<SpellCheckRequest> create(TextCheckingTypeMask, TextCheckingProcessType, PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange, int requestNumber = 0); paragraphRange 52 Source/core/editing/SpellCheckRequester.h PassRefPtrWillBeRawPtr<Range> paragraphRange() const { return m_paragraphRange; } paragraphRange 65 Source/core/editing/SpellCheckRequester.h SpellCheckRequest(PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange, const String&, TextCheckingTypeMask, TextCheckingProcessType, const Vector<uint32_t>& documentMarkersInRange, const Vector<unsigned>& documentMarkerOffsets, int requestNumber); paragraphRange 510 Source/core/editing/SpellChecker.cpp void SpellChecker::markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask textCheckingOptions, Range* checkRange, Range* paragraphRange, bool asynchronous, int requestNumber, int* checkingLength) paragraphRange 512 Source/core/editing/SpellChecker.cpp TextCheckingParagraph sentenceToCheck(checkRange, paragraphRange); paragraphRange 516 Source/core/editing/SpellChecker.cpp RefPtr<SpellCheckRequest> request = SpellCheckRequest::create(resolveTextCheckingTypeMask(textCheckingOptions), TextCheckingProcessBatch, checkRange, paragraphRange, requestNumber); paragraphRange 532 Source/core/editing/SpellChecker.cpp TextCheckingParagraph paragraph(request->checkingRange(), request->paragraphRange()); paragraphRange 98 Source/core/editing/SpellChecker.h void markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask textCheckingOptions, Range* checkingRange, Range* paragraphRange, bool asynchronous, int requestNumber, int* checkingLength = 0); paragraphRange 103 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> paragraphRange = range->cloneRange(IGNORE_EXCEPTION); paragraphRange 104 Source/core/editing/TextCheckingHelper.cpp setStart(paragraphRange.get(), startOfParagraph(VisiblePosition(range->startPosition()))); paragraphRange 105 Source/core/editing/TextCheckingHelper.cpp setEnd(paragraphRange.get(), endOfParagraph(VisiblePosition(range->endPosition()))); paragraphRange 106 Source/core/editing/TextCheckingHelper.cpp return paragraphRange; paragraphRange 117 Source/core/editing/TextCheckingHelper.cpp TextCheckingParagraph::TextCheckingParagraph(PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange) paragraphRange 119 Source/core/editing/TextCheckingHelper.cpp , m_paragraphRange(paragraphRange) paragraphRange 133 Source/core/editing/TextCheckingHelper.cpp setEnd(paragraphRange().get(), endOfParagraph(startOfNextParagraph(VisiblePosition(paragraphRange()->startPosition())))); paragraphRange 147 Source/core/editing/TextCheckingHelper.cpp return TextIterator::rangeLength(paragraphRange().get()); paragraphRange 161 Source/core/editing/TextCheckingHelper.cpp return TextIterator::subrange(paragraphRange().get(), characterOffset, characterCount); paragraphRange 185 Source/core/editing/TextCheckingHelper.cpp m_offsetAsRange = Range::create(paragraphRange()->startContainer()->document(), paragraphRange()->startPosition(), checkingRange()->startPosition()); paragraphRange 194 Source/core/editing/TextCheckingHelper.cpp m_text = plainText(paragraphRange().get()); paragraphRange 309 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> paragraphRange = m_range->cloneRange(IGNORE_EXCEPTION); paragraphRange 310 Source/core/editing/TextCheckingHelper.cpp setStart(paragraphRange.get(), startOfParagraph(VisiblePosition(m_range->startPosition()))); paragraphRange 311 Source/core/editing/TextCheckingHelper.cpp int totalRangeLength = TextIterator::rangeLength(paragraphRange.get()); paragraphRange 312 Source/core/editing/TextCheckingHelper.cpp setEnd(paragraphRange.get(), endOfParagraph(VisiblePosition(m_range->startPosition()))); paragraphRange 314 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> offsetAsRange = Range::create(paragraphRange->startContainer()->document(), paragraphRange->startPosition(), m_range->startPosition()); paragraphRange 322 Source/core/editing/TextCheckingHelper.cpp int currentLength = TextIterator::rangeLength(paragraphRange.get()); paragraphRange 325 Source/core/editing/TextCheckingHelper.cpp if (inSameParagraph(VisiblePosition(paragraphRange->startPosition()), VisiblePosition(m_range->endPosition()))) { paragraphRange 328 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> endOffsetAsRange = Range::create(paragraphRange->startContainer()->document(), paragraphRange->startPosition(), m_range->endPosition()); paragraphRange 333 Source/core/editing/TextCheckingHelper.cpp String paragraphString = plainText(paragraphRange.get()); paragraphRange 381 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> paragraphOffsetAsRange = Range::create(paragraphRange->startContainer()->document(), m_range->startPosition(), paragraphRange->startPosition()); paragraphRange 392 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> paragraphOffsetAsRange = Range::create(paragraphRange->startContainer()->document(), m_range->startPosition(), paragraphRange->startPosition()); paragraphRange 404 Source/core/editing/TextCheckingHelper.cpp VisiblePosition newParagraphStart = startOfNextParagraph(VisiblePosition(paragraphRange->endPosition())); paragraphRange 405 Source/core/editing/TextCheckingHelper.cpp setStart(paragraphRange.get(), newParagraphStart); paragraphRange 406 Source/core/editing/TextCheckingHelper.cpp setEnd(paragraphRange.get(), endOfParagraph(newParagraphStart)); paragraphRange 42 Source/core/editing/TextCheckingHelper.h TextCheckingParagraph(PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange); paragraphRange 65 Source/core/editing/TextCheckingHelper.h PassRefPtrWillBeRawPtr<Range> paragraphRange() const;