range 11 LayoutTests/http/tests/media/resources/serve-video.php $range = explode("-", substr($contentRange, strlen("bytes="))); range 12 LayoutTests/http/tests/media/resources/serve-video.php $start = intval($range[0]); range 13 LayoutTests/http/tests/media/resources/serve-video.php if (!empty($range[1])) range 14 LayoutTests/http/tests/media/resources/serve-video.php $end = intval($range[1]); range 1669 Source/core/accessibility/AXNodeObject.cpp float range = maxValueForRange() - minValueForRange(); range 1672 Source/core/accessibility/AXNodeObject.cpp value += range * (percentChange / 100); range 1602 Source/core/accessibility/AXRenderObject.cpp void AXRenderObject::setSelectedTextRange(const PlainTextRange& range) range 1606 Source/core/accessibility/AXRenderObject.cpp textControl->setSelectionRange(range.start, range.start + range.length); range 1615 Source/core/accessibility/AXRenderObject.cpp frame->selection().setSelection(VisibleSelection(Position(node, range.start, Position::PositionIsOffsetInAnchor), range 1616 Source/core/accessibility/AXRenderObject.cpp Position(node, range.start + range.length, Position::PositionIsOffsetInAnchor), DOWNSTREAM)); range 1745 Source/core/accessibility/AXRenderObject.cpp RefPtrWillBeRawPtr<Range> range = Range::create(m_renderer->document()); range 1746 Source/core/accessibility/AXRenderObject.cpp range->selectNodeContents(node, IGNORE_EXCEPTION); range 1747 Source/core/accessibility/AXRenderObject.cpp CharacterIterator it(range.get()); range 1749 Source/core/accessibility/AXRenderObject.cpp return VisiblePosition(Position(it.range()->endContainer(), it.range()->endOffset(), Position::PositionIsOffsetInAnch\ range 1771 Source/core/accessibility/AXRenderObject.cpp RefPtrWillBeRawPtr<Range> range = Range::create(m_renderer->document()); range 1772 Source/core/accessibility/AXRenderObject.cpp range->setStart(node, 0, IGNORE_EXCEPTION); range 1773 Source/core/accessibility/AXRenderObject.cpp range->setEnd(indexPosition, IGNORE_EXCEPTION); range 1775 Source/core/accessibility/AXRenderObject.cpp return TextIterator::rangeLength(range.get()); range 77 Source/core/animation/AnimatableLength.cpp PassRefPtrWillBeRawPtr<CSSValue> AnimatableLength::toCSSValue(NumberRange range) const range 79 Source/core/animation/AnimatableLength.cpp return toCSSPrimitiveValue(range); range 82 Source/core/animation/AnimatableLength.cpp Length AnimatableLength::toLength(const CSSToLengthConversionData& conversionData, NumberRange range) const range 86 Source/core/animation/AnimatableLength.cpp return Length(clampedNumber(range) * conversionData.zoom(), Fixed); range 88 Source/core/animation/AnimatableLength.cpp return Length(clampedNumber(range), Percent); range 90 Source/core/animation/AnimatableLength.cpp return toCSSPrimitiveValue(range)->convertToLength<AnyConversion>(conversionData); range 148 Source/core/animation/AnimatableLength.cpp static bool isCompatibleWithRange(const CSSPrimitiveValue* primitiveValue, NumberRange range) range 151 Source/core/animation/AnimatableLength.cpp if (range == AllValues) range 158 Source/core/animation/AnimatableLength.cpp PassRefPtrWillBeRawPtr<CSSPrimitiveValue> AnimatableLength::toCSSPrimitiveValue(NumberRange range) const range 160 Source/core/animation/AnimatableLength.cpp if (!m_cachedCSSPrimitiveValue || !isCompatibleWithRange(m_cachedCSSPrimitiveValue.get(), range)) { range 162 Source/core/animation/AnimatableLength.cpp m_cachedCSSPrimitiveValue = CSSPrimitiveValue::create(CSSCalcValue::create(m_calcExpression, range == AllValues ? ValueRangeAll : ValueRangeNonNegative)); range 164 Source/core/animation/AnimatableLength.cpp m_cachedCSSPrimitiveValue = CSSPrimitiveValue::create(clampedNumber(range), static_cast<CSSPrimitiveValue::UnitTypes>(numberTypeToPrimitiveUnit(m_unitType))); range 123 Source/core/animation/AnimatableLength.h double clampedNumber(NumberRange range) const range 126 Source/core/animation/AnimatableLength.h return (range == NonNegativeValues && m_number <= 0) ? 0 : m_number; range 744 Source/core/css/CSSCalculationValue.cpp PassRefPtrWillBeRawPtr<CSSCalcValue> CSSCalcValue::create(CSSParserString name, CSSParserValueList* parserValueList, ValueRange range) range 753 Source/core/css/CSSCalculationValue.cpp return expression ? adoptRefWillBeRefCountedGarbageCollected(new CSSCalcValue(expression, range)) : nullptr; range 756 Source/core/css/CSSCalculationValue.cpp PassRefPtrWillBeRawPtr<CSSCalcValue> CSSCalcValue::create(PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> expression, ValueRange range) range 758 Source/core/css/CSSCalculationValue.cpp return adoptRefWillBeRefCountedGarbageCollected(new CSSCalcValue(expression, range)); range 121 Source/core/css/CSSCalculationValue.h CSSCalcValue(PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> expression, ValueRange range) range 124 Source/core/css/CSSCalculationValue.h , m_nonNegative(range == ValueRangeNonNegative) range 58 Source/core/css/CSSPropertySourceData.cpp CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range) range 64 Source/core/css/CSSPropertySourceData.cpp , range(range) range 74 Source/core/css/CSSPropertySourceData.cpp , range(other.range) range 60 Source/core/css/CSSPropertySourceData.h CSSPropertySourceData(const String& name, const String& value, bool important, bool disabled, bool parsedOk, const SourceRange& range); range 67 Source/core/css/CSSPropertySourceData.h void trace(Visitor* visitor) { visitor->trace(range); } range 74 Source/core/css/CSSPropertySourceData.h SourceRange range; range 543 Source/core/css/FontFace.cpp CSSUnicodeRangeValue* range = toCSSUnicodeRangeValue(rangeList->itemWithoutBoundsCheck(i)); range 544 Source/core/css/FontFace.cpp ranges.append(CSSFontFace::UnicodeRange(range->from(), range->to())); range 7901 Source/core/css/parser/CSSPropertyParser.cpp bool CSSPropertyParser::parseCalculation(CSSParserValue* value, ValueRange range) range 7910 Source/core/css/parser/CSSPropertyParser.cpp m_parsedCalculation = CSSCalcValue::create(value->function->name, args, range); range 67 Source/core/css/resolver/AnimatedStyleBuilder.cpp Length animatableValueToLength(const AnimatableValue* value, const StyleResolverState& state, NumberRange range = AllValues) range 70 Source/core/css/resolver/AnimatedStyleBuilder.cpp return toAnimatableLength(value)->toLength(state.cssToLengthConversionData(), range); range 93 Source/core/css/resolver/AnimatedStyleBuilder.cpp LengthBox animatableValueToLengthBox(const AnimatableValue* value, const StyleResolverState& state, NumberRange range = AllValues) range 97 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthBox->top(), state, range), range 98 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthBox->right(), state, range), range 99 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthBox->bottom(), state, range), range 100 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthBox->left(), state, range)); range 113 Source/core/css/resolver/AnimatedStyleBuilder.cpp LengthPoint animatableValueToLengthPoint(const AnimatableValue* value, const StyleResolverState& state, NumberRange range = AllValues) range 117 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthPoint->x(), state, range), range 118 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthPoint->y(), state, range)); range 121 Source/core/css/resolver/AnimatedStyleBuilder.cpp LengthSize animatableValueToLengthSize(const AnimatableValue* value, const StyleResolverState& state, NumberRange range) range 125 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthSize->width(), state, range), range 126 Source/core/css/resolver/AnimatedStyleBuilder.cpp animatableValueToLength(animatableLengthSize->height(), state, range)); range 1209 Source/core/css/resolver/StyleResolver.cpp void StyleResolver::applyMatchedProperties(StyleResolverState& state, const MatchResult& matchResult, bool isImportant, const RuleRange& range, bool inheritedOnly) range 1211 Source/core/css/resolver/StyleResolver.cpp if (range.collapsed()) range 1215 Source/core/css/resolver/StyleResolver.cpp for (int i = range.first(); i <= range.last(); ++i) { range 1228 Source/core/css/resolver/StyleResolver.cpp for (int i = range.first(); i <= range.last(); ++i) { range 4742 Source/core/dom/Document.cpp void Document::attachRange(Range* range) range 4744 Source/core/dom/Document.cpp ASSERT(!m_ranges.contains(range)); range 4745 Source/core/dom/Document.cpp m_ranges.add(range); range 4748 Source/core/dom/Document.cpp void Document::detachRange(Range* range) range 4752 Source/core/dom/Document.cpp m_ranges.remove(range); range 84 Source/core/dom/DocumentMarkerController.cpp void DocumentMarkerController::addMarker(Range* range, DocumentMarker::MarkerType type, const String& description, uint32_t hash) range 87 Source/core/dom/DocumentMarkerController.cpp for (TextIterator markedText(range); !markedText.atEnd(); markedText.advance()) { range 88 Source/core/dom/DocumentMarkerController.cpp RefPtrWillBeRawPtr<Range> textPiece = markedText.range(); range 93 Source/core/dom/DocumentMarkerController.cpp void DocumentMarkerController::addMarker(Range* range, DocumentMarker::MarkerType type, const String& description) range 96 Source/core/dom/DocumentMarkerController.cpp for (TextIterator markedText(range); !markedText.atEnd(); markedText.advance()) { range 97 Source/core/dom/DocumentMarkerController.cpp RefPtrWillBeRawPtr<Range> textPiece = markedText.range(); range 102 Source/core/dom/DocumentMarkerController.cpp void DocumentMarkerController::addMarker(Range* range, DocumentMarker::MarkerType type) range 105 Source/core/dom/DocumentMarkerController.cpp for (TextIterator markedText(range); !markedText.atEnd(); markedText.advance()) { range 106 Source/core/dom/DocumentMarkerController.cpp RefPtrWillBeRawPtr<Range> textPiece = markedText.range(); range 123 Source/core/dom/DocumentMarkerController.cpp void DocumentMarkerController::addTextMatchMarker(const Range* range, bool activeMatch) range 126 Source/core/dom/DocumentMarkerController.cpp for (TextIterator markedText(range); !markedText.atEnd(); markedText.advance()) { range 127 Source/core/dom/DocumentMarkerController.cpp RefPtrWillBeRawPtr<Range> textPiece = markedText.range(); range 138 Source/core/dom/DocumentMarkerController.cpp toRenderedDocumentMarker(markers[markers.size() - 1])->setRenderedRect(range->boundingBox()); range 148 Source/core/dom/DocumentMarkerController.cpp void DocumentMarkerController::removeMarkers(Range* range, DocumentMarker::MarkerTypes markerTypes, RemovePartiallyOverlappingMarkerOrNot shouldRemovePartiallyOverlappingMarker) range 150 Source/core/dom/DocumentMarkerController.cpp for (TextIterator markedText(range); !markedText.atEnd(); markedText.advance()) { range 155 Source/core/dom/DocumentMarkerController.cpp RefPtrWillBeRawPtr<Range> textPiece = markedText.range(); range 434 Source/core/dom/DocumentMarkerController.cpp Vector<DocumentMarker*> DocumentMarkerController::markersInRange(Range* range, DocumentMarker::MarkerTypes markerTypes) range 441 Source/core/dom/DocumentMarkerController.cpp Node* startContainer = range->startContainer(); range 443 Source/core/dom/DocumentMarkerController.cpp Node* endContainer = range->endContainer(); range 446 Source/core/dom/DocumentMarkerController.cpp Node* pastLastNode = range->pastLastNode(); range 447 Source/core/dom/DocumentMarkerController.cpp for (Node* node = range->firstNode(); node != pastLastNode; node = NodeTraversal::next(*node)) { range 454 Source/core/dom/DocumentMarkerController.cpp if (node == startContainer && marker->endOffset() <= static_cast<unsigned>(range->startOffset())) range 456 Source/core/dom/DocumentMarkerController.cpp if (node == endContainer && marker->startOffset() >= static_cast<unsigned>(range->endOffset())) range 641 Source/core/dom/DocumentMarkerController.cpp void DocumentMarkerController::setMarkersActive(Range* range, bool active) range 647 Source/core/dom/DocumentMarkerController.cpp Node* startContainer = range->startContainer(); range 648 Source/core/dom/DocumentMarkerController.cpp Node* endContainer = range->endContainer(); range 650 Source/core/dom/DocumentMarkerController.cpp Node* pastLastNode = range->pastLastNode(); range 652 Source/core/dom/DocumentMarkerController.cpp for (Node* node = range->firstNode(); node != pastLastNode; node = NodeTraversal::next(*node)) { range 653 Source/core/dom/DocumentMarkerController.cpp int startOffset = node == startContainer ? range->startOffset() : 0; range 654 Source/core/dom/DocumentMarkerController.cpp int endOffset = node == endContainer ? range->endOffset() : INT_MAX; range 685 Source/core/dom/DocumentMarkerController.cpp bool DocumentMarkerController::hasMarkers(Range* range, DocumentMarker::MarkerTypes markerTypes) range 691 Source/core/dom/DocumentMarkerController.cpp Node* startContainer = range->startContainer(); range 693 Source/core/dom/DocumentMarkerController.cpp Node* endContainer = range->endContainer(); range 696 Source/core/dom/DocumentMarkerController.cpp Node* pastLastNode = range->pastLastNode(); range 697 Source/core/dom/DocumentMarkerController.cpp for (Node* node = range->firstNode(); node != pastLastNode; node = NodeTraversal::next(*node)) { range 704 Source/core/dom/DocumentMarkerController.cpp if (node == startContainer && marker->endOffset() <= static_cast<unsigned>(range->startOffset())) range 706 Source/core/dom/DocumentMarkerController.cpp if (node == endContainer && marker->startOffset() >= static_cast<unsigned>(range->endOffset())) range 82 Source/core/dom/DocumentMarkerControllerTest.cpp RefPtrWillBeRawPtr<Range> range = rangeOfContents(node.get()); range 83 Source/core/dom/DocumentMarkerControllerTest.cpp markerController().addMarker(range.get(), DocumentMarker::Spelling); range 1617 Source/core/dom/Range.cpp RefPtrWillBeRawPtr<Range> range = Range::create(node->document()); range 1618 Source/core/dom/Range.cpp range->selectNodeContents(node, IGNORE_EXCEPTION); range 1619 Source/core/dom/Range.cpp return range.release(); range 1895 Source/core/dom/Range.cpp void showTree(const WebCore::Range* range) range 1897 Source/core/dom/Range.cpp if (range && range->boundaryPointsValid()) { range 1898 Source/core/dom/Range.cpp range->startContainer()->showTreeAndMark(range->startContainer(), "S", range->endContainer(), "E"); range 1899 Source/core/dom/Range.cpp fprintf(stderr, "start offset: %d, end offset: %d\n", range->startOffset(), range->endOffset()); range 705 Source/core/editing/ApplyStyleCommand.cpp RefPtrWillBeRawPtr<Range> range = Range::create(startNode->document(), start, end); range 708 Source/core/editing/ApplyStyleCommand.cpp while (editableRoot && startNode->parentNode() != editableRoot && isNodeVisiblyContainedWithin(*startNode->parentNode(), *range)) range 1179 Source/core/editing/CompositeEditCommand.cpp RefPtrWillBeRawPtr<Range> range = Range::create(document(), startRangeCompliant.deprecatedNode(), startRangeCompliant.deprecatedEditingOffset(), endRangeCompliant.deprecatedNode(), endRangeCompliant.deprecatedEditingOffset()); range 1184 Source/core/editing/CompositeEditCommand.cpp createFragmentFromMarkup(document(), createMarkup(range.get(), 0, DoNotAnnotateForInterchange, true, DoNotResolveURLs, constrainingAncestor), "") : nullptr; range 421 Source/core/editing/DeleteSelectionCommand.cpp RefPtrWillBeRawPtr<Range> range = m_selectionToDelete.toNormalizedRange(); range 422 Source/core/editing/DeleteSelectionCommand.cpp RefPtr<Node> node = range->firstNode(); range 423 Source/core/editing/DeleteSelectionCommand.cpp while (node && node != range->pastLastNode()) { range 1261 Source/core/editing/EditingStyle.cpp RefPtrWillBeRawPtr<Range> range(selection.toNormalizedRange()); range 1262 Source/core/editing/EditingStyle.cpp if (PassRefPtrWillBeRawPtr<CSSValue> value = backgroundColorInEffect(range->commonAncestorContainer(IGNORE_EXCEPTION))) range 120 Source/core/editing/Editor.cpp if (RefPtrWillBeRawPtr<Range> range = textFromControlOfTarget->selection()) range 121 Source/core/editing/Editor.cpp return VisibleSelection(range.get(), DOWNSTREAM, selection.isDirectional()); range 251 Source/core/editing/Editor.cpp bool Editor::canDeleteRange(Range* range) const range 253 Source/core/editing/Editor.cpp Node* startContainer = range->startContainer(); range 254 Source/core/editing/Editor.cpp Node* endContainer = range->endContainer(); range 261 Source/core/editing/Editor.cpp if (range->collapsed(IGNORE_EXCEPTION)) { range 262 Source/core/editing/Editor.cpp VisiblePosition start(range->startPosition(), DOWNSTREAM); range 390 Source/core/editing/Editor.cpp RefPtrWillBeRawPtr<Range> range = selectedRange(); range 409 Source/core/editing/Editor.cpp fragment = createFragmentFromText(range.get(), text); range 517 Source/core/editing/Editor.cpp bool Editor::shouldDeleteRange(Range* range) const range 519 Source/core/editing/Editor.cpp if (!range || range->collapsed(IGNORE_EXCEPTION)) range 522 Source/core/editing/Editor.cpp return canDeleteRange(range); range 996 Source/core/editing/Editor.cpp RefPtrWillBeRawPtr<Range> range = makeRange(previous, next); range 997 Source/core/editing/Editor.cpp if (!range) range 999 Source/core/editing/Editor.cpp VisibleSelection newSelection(range.get(), DOWNSTREAM); range 1002 Source/core/editing/Editor.cpp String text = plainText(range.get()); range 1015 Source/core/editing/Editor.cpp void Editor::addToKillRing(Range* range, bool prepend) range 1020 Source/core/editing/Editor.cpp String text = plainText(range); range 1049 Source/core/editing/Editor.cpp IntRect Editor::firstRectForRange(Range* range) const range 1052 Source/core/editing/Editor.cpp ASSERT(range->startContainer()); range 1053 Source/core/editing/Editor.cpp ASSERT(range->endContainer()); range 1055 Source/core/editing/Editor.cpp IntRect startCaretRect = RenderedPosition(VisiblePosition(range->startPosition()).deepEquivalent(), DOWNSTREAM).absoluteRect(&extraWidthToEndOfLine); range 1059 Source/core/editing/Editor.cpp IntRect endCaretRect = RenderedPosition(VisiblePosition(range->endPosition()).deepEquivalent(), UPSTREAM).absoluteRect(); range 73 Source/core/editing/FormatBlockCommand.cpp RefPtrWillBeRawPtr<Range> range = Range::create(document(), start, endOfSelection); range 76 Source/core/editing/FormatBlockCommand.cpp && (VisiblePosition(end) == endOfBlock(VisiblePosition(end)) || isNodeVisiblyContainedWithin(*refNode, *range)) range 104 Source/core/editing/FormatBlockCommand.cpp Element* FormatBlockCommand::elementForFormatBlockCommand(Range* range) range 106 Source/core/editing/FormatBlockCommand.cpp if (!range) range 109 Source/core/editing/FormatBlockCommand.cpp Node* commonAncestor = range->commonAncestorContainer(IGNORE_EXCEPTION); range 116 Source/core/editing/FormatBlockCommand.cpp Element* rootEditableElement = range->startContainer()->rootEditableElement(); range 357 Source/core/editing/FrameSelection.cpp } else if (RefPtrWillBeRawPtr<Range> range = m_selection.firstRange()) { range 359 Source/core/editing/FrameSelection.cpp Range::CompareResults compareResult = range->compareNode(&node, exceptionState); range 1402 Source/core/editing/FrameSelection.cpp bool FrameSelection::setSelectedRange(Range* range, EAffinity affinity, SetSelectionOptions options) range 1404 Source/core/editing/FrameSelection.cpp if (!range || !range->startContainer() || !range->endContainer()) range 1406 Source/core/editing/FrameSelection.cpp ASSERT(range->startContainer()->document() == range->endContainer()->document()); range 1413 Source/core/editing/FrameSelection.cpp bool collapsed = range->collapsed(exceptionState); range 1421 Source/core/editing/FrameSelection.cpp VisiblePosition visibleStart(range->startPosition(), collapsed ? affinity : DOWNSTREAM); range 1422 Source/core/editing/FrameSelection.cpp VisiblePosition visibleEnd(range->endPosition(), SEL_DEFAULT_AFFINITY); range 1425 Source/core/editing/FrameSelection.cpp m_logicalRange = range->cloneRange(ASSERT_NO_EXCEPTION); range 98 Source/core/editing/InputMethodController.cpp RefPtrWillBeRawPtr<Range> range = compositionRange(); range 99 Source/core/editing/InputMethodController.cpp if (!range) range 105 Source/core/editing/InputMethodController.cpp selection.setWithoutValidation(range->startPosition(), range->endPosition()); range 366 Source/core/editing/InputMethodController.cpp RefPtrWillBeRawPtr<Range> range = m_frame.selection().selection().firstRange(); range 367 Source/core/editing/InputMethodController.cpp if (!range) range 371 Source/core/editing/InputMethodController.cpp return PlainTextRange::create(*editable, *range.get()); range 382 Source/core/editing/InputMethodController.cpp RefPtrWillBeRawPtr<Range> range = selectionOffsets.createRange(*rootEditableElement); range 383 Source/core/editing/InputMethodController.cpp if (!range) range 386 Source/core/editing/InputMethodController.cpp return m_frame.selection().setSelectedRange(range.get(), VP_DEFAULT_AFFINITY, FrameSelection::CloseTyping); range 99 Source/core/editing/MarkupAccumulator.cpp MarkupAccumulator::MarkupAccumulator(Vector<Node*>* nodes, EAbsoluteURLs resolveUrlsMethod, const Range* range, SerializationType serializationType) range 101 Source/core/editing/MarkupAccumulator.cpp , m_range(range) range 85 Source/core/editing/PlainTextRange.cpp textRunRange = it.range(); range 95 Source/core/editing/PlainTextRange.cpp textRunRange = it.range(); range 109 Source/core/editing/PlainTextRange.cpp RefPtrWillBeRawPtr<Range> range = it.range(); range 110 Source/core/editing/PlainTextRange.cpp textRunRange->setEnd(range->startContainer(), range->startOffset(), ASSERT_NO_EXCEPTION); range 159 Source/core/editing/PlainTextRange.cpp PlainTextRange PlainTextRange::create(const Node& scope, const Range& range) range 161 Source/core/editing/PlainTextRange.cpp if (!range.startContainer()) range 169 Source/core/editing/PlainTextRange.cpp if (range.startContainer() != &scope && !range.startContainer()->isDescendantOf(&scope)) range 171 Source/core/editing/PlainTextRange.cpp if (range.endContainer() != scope && !range.endContainer()->isDescendantOf(&scope)) range 174 Source/core/editing/PlainTextRange.cpp RefPtrWillBeRawPtr<Range> testRange = Range::create(scope.document(), const_cast<Node*>(&scope), 0, range.startContainer(), range.startOffset()); range 178 Source/core/editing/PlainTextRange.cpp testRange->setEnd(range.endContainer(), range.endOffset(), IGNORE_EXCEPTION); range 168 Source/core/editing/ReplaceSelectionCommand.cpp RefPtrWillBeRawPtr<Range> range = VisibleSelection::selectionFromContentsOfNode(holder.get()).toNormalizedRange(); range 169 Source/core/editing/ReplaceSelectionCommand.cpp String text = plainText(range.get(), static_cast<TextIteratorBehavior>(TextIteratorEmitsOriginalText | TextIteratorIgnoresStyleVisibility)); range 153 Source/core/editing/SpellCheckRequester.cpp bool SpellCheckRequester::canCheckAsynchronously(Range* range) const range 155 Source/core/editing/SpellCheckRequester.cpp return isCheckable(range) && isAsynchronousEnabled(); range 158 Source/core/editing/SpellCheckRequester.cpp bool SpellCheckRequester::isCheckable(Range* range) const range 160 Source/core/editing/SpellCheckRequester.cpp if (!range || !range->firstNode() || !range->firstNode()->renderer()) range 162 Source/core/editing/SpellCheckRequester.cpp const Node* node = range->startContainer(); range 241 Source/core/editing/SpellChecker.cpp grammarSearchRange->setEnd(chars.range()->startContainer(), chars.range()->startOffset(), IGNORE_EXCEPTION); range 272 Source/core/editing/SpellChecker.cpp grammarSearchRange->setEnd(chars.range()->startContainer(), chars.range()->startOffset(), IGNORE_EXCEPTION); range 56 Source/core/editing/SurroundingText.cpp RefPtrWillBeRawPtr<Range> forwardRange = forwardIterator.range(); range 66 Source/core/editing/SurroundingText.cpp RefPtrWillBeRawPtr<Range> backwardsRange = backwardsIterator.range(); range 87 Source/core/editing/SurroundingText.cpp ASSERT(iterator.range()); range 88 Source/core/editing/SurroundingText.cpp Position start = iterator.range()->startPosition(); range 93 Source/core/editing/SurroundingText.cpp ASSERT(iterator.range()); range 94 Source/core/editing/SurroundingText.cpp Position end = iterator.range()->startPosition(); range 101 Source/core/editing/TextCheckingHelper.cpp static PassRefPtrWillBeRawPtr<Range> expandToParagraphBoundary(PassRefPtrWillBeRawPtr<Range> range) range 103 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> paragraphRange = range->cloneRange(IGNORE_EXCEPTION); range 104 Source/core/editing/TextCheckingHelper.cpp setStart(paragraphRange.get(), startOfParagraph(VisiblePosition(range->startPosition()))); range 105 Source/core/editing/TextCheckingHelper.cpp setEnd(paragraphRange.get(), endOfParagraph(VisiblePosition(range->endPosition()))); range 167 Source/core/editing/TextCheckingHelper.cpp RefPtrWillBeRawPtr<Range> range = offsetAsRange()->cloneRange(ASSERT_NO_EXCEPTION); range 168 Source/core/editing/TextCheckingHelper.cpp range->setEnd(position.containerNode(), position.computeOffsetInContainerNode(), exceptionState); range 171 Source/core/editing/TextCheckingHelper.cpp return TextIterator::rangeLength(range.get()); range 222 Source/core/editing/TextCheckingHelper.cpp TextCheckingHelper::TextCheckingHelper(SpellCheckerClient& client, PassRefPtrWillBeRawPtr<Range> range) range 224 Source/core/editing/TextCheckingHelper.cpp , m_range(range) range 242 Source/core/editing/TextIterator.cpp TextIterator::TextIterator(const Range* range, TextIteratorBehaviorFlags behavior) range 269 Source/core/editing/TextIterator.cpp if (range) range 270 Source/core/editing/TextIterator.cpp initialize(range->startPosition(), range->endPosition()); range 1174 Source/core/editing/TextIterator.cpp RefPtrWillBeRawPtr<Range> textRange = range(); range 1480 Source/core/editing/TextIterator.cpp CharacterIterator::CharacterIterator(const Range* range, TextIteratorBehaviorFlags behavior) range 1484 Source/core/editing/TextIterator.cpp , m_textIterator(range, behavior) range 1506 Source/core/editing/TextIterator.cpp RefPtrWillBeRawPtr<Range> r = m_textIterator.range(); range 1569 Source/core/editing/TextIterator.cpp RefPtrWillBeRawPtr<Range> start = it.range(); range 1573 Source/core/editing/TextIterator.cpp RefPtrWillBeRawPtr<Range> end = it.range(); range 1580 Source/core/editing/TextIterator.cpp BackwardsCharacterIterator::BackwardsCharacterIterator(const Range* range, TextIteratorBehaviorFlags behavior) range 1584 Source/core/editing/TextIterator.cpp , m_textIterator(range, behavior) range 1592 Source/core/editing/TextIterator.cpp RefPtrWillBeRawPtr<Range> r = m_textIterator.range(); range 1648 Source/core/editing/TextIterator.cpp WordAwareIterator::WordAwareIterator(const Range* range) range 1650 Source/core/editing/TextIterator.cpp , m_textIterator(range) range 1676 Source/core/editing/TextIterator.cpp m_range = m_textIterator.range(); range 1699 Source/core/editing/TextIterator.cpp m_range->setEnd(m_textIterator.range()->endContainer(), m_textIterator.range()->endOffset(), IGNORE_EXCEPTION); range 2069 Source/core/editing/TextIterator.cpp static PassRefPtrWillBeRawPtr<Range> collapsedToBoundary(const Range* range, bool forward) range 2071 Source/core/editing/TextIterator.cpp RefPtrWillBeRawPtr<Range> result = range->cloneRange(ASSERT_NO_EXCEPTION); range 2084 Source/core/editing/TextIterator.cpp RefPtrWillBeRawPtr<Range> startRange = it.range(); range 2124 Source/core/editing/TextIterator.cpp PassRefPtrWillBeRawPtr<Range> findPlainText(const Range* range, const String& target, FindOptions options) range 2127 Source/core/editing/TextIterator.cpp range->ownerDocument().updateLayout(); range 2133 Source/core/editing/TextIterator.cpp CharacterIterator findIterator(range, iteratorFlagsForFindPlainText); range 2136 Source/core/editing/TextIterator.cpp return collapsedToBoundary(range, !(options & Backwards)); range 2140 Source/core/editing/TextIterator.cpp CharacterIterator computeRangeIterator(range, iteratorFlagsForFindPlainText); range 107 Source/core/editing/TextIterator.h PassRefPtrWillBeRawPtr<Range> range() const; range 237 Source/core/editing/TextIterator.h PassRefPtrWillBeRawPtr<Range> range() const; range 314 Source/core/editing/TextIterator.h PassRefPtrWillBeRawPtr<Range> range() const; range 334 Source/core/editing/TextIterator.h PassRefPtrWillBeRawPtr<Range> range() const; range 86 Source/core/editing/TextIteratorTest.cpp RefPtrWillBeRawPtr<Range> range = getBodyRange(); range 87 Source/core/editing/TextIteratorTest.cpp TextIterator textIterator(range.get(), iteratorBehavior); range 108 Source/core/editing/TextIteratorTest.cpp RefPtrWillBeRawPtr<Range> range(Range::create(document())); range 109 Source/core/editing/TextIteratorTest.cpp range->selectNode(document().body()); range 110 Source/core/editing/TextIteratorTest.cpp return range.release(); range 98 Source/core/editing/VisibleSelection.cpp VisibleSelection::VisibleSelection(const Range* range, EAffinity affinity, bool isDirectional) range 99 Source/core/editing/VisibleSelection.cpp : m_base(range->startPosition()) range 100 Source/core/editing/VisibleSelection.cpp , m_extent(range->endPosition()) range 305 Source/core/editing/VisibleSelection.cpp m_end = charIt.range()->endPosition(); range 517 Source/core/editing/VisibleUnits.cpp return VisiblePosition(it.atEnd() ? it.range()->startPosition() : pos, DOWNSTREAM); range 519 Source/core/editing/VisibleUnits.cpp Node* node = it.range()->startContainer(); range 528 Source/core/editing/VisibleUnits.cpp return VisiblePosition(charIt.range()->endPosition(), DOWNSTREAM); range 593 Source/core/editing/VisibleUnits.cpp pos = it.range()->startPosition(); range 598 Source/core/editing/VisibleUnits.cpp RefPtrWillBeRawPtr<Range> characterRange = charIt.range(); range 606 Source/core/editing/VisibleUnits.cpp pos = charIt.range()->startPosition(); range 1017 Source/core/editing/htmlediting.cpp RefPtrWillBeRawPtr<Range> range = Range::create(document, firstPositionInNode(scope.get()), p.parentAnchoredEquivalent()); range 1019 Source/core/editing/htmlediting.cpp return TextIterator::rangeLength(range.get(), true); range 1026 Source/core/editing/htmlediting.cpp RefPtrWillBeRawPtr<Range> range = PlainTextRange(index).createRangeForSelection(*scope); range 1029 Source/core/editing/htmlediting.cpp if (!range) range 1031 Source/core/editing/htmlediting.cpp return VisiblePosition(range->startPosition()); range 153 Source/core/editing/markup.cpp const Range* range, Node* highestNodeToBeSerialized) range 154 Source/core/editing/markup.cpp : MarkupAccumulator(nodes, shouldResolveURLs, range) range 243 Source/core/editing/markup.cpp String StyledMarkupAccumulator::renderedText(Node& node, const Range* range) range 252 Source/core/editing/markup.cpp if (range && node == range->startContainer()) range 253 Source/core/editing/markup.cpp startOffset = range->startOffset(); range 254 Source/core/editing/markup.cpp if (range && node == range->endContainer()) range 255 Source/core/editing/markup.cpp endOffset = range->endOffset(); range 262 Source/core/editing/markup.cpp String StyledMarkupAccumulator::stringValueForRange(const Node& node, const Range* range) range 264 Source/core/editing/markup.cpp if (!range) range 268 Source/core/editing/markup.cpp if (node == range->endContainer()) range 269 Source/core/editing/markup.cpp str.truncate(range->endOffset()); range 270 Source/core/editing/markup.cpp if (node == range->startContainer()) range 271 Source/core/editing/markup.cpp str.remove(0, range->startOffset()); range 497 Source/core/editing/markup.cpp static Node* highestAncestorToWrapMarkup(const Range* range, EAnnotateForInterchange shouldAnnotate, Node* constrainingAncestor) range 499 Source/core/editing/markup.cpp Node* commonAncestor = range->commonAncestorContainer(IGNORE_EXCEPTION); range 507 Source/core/editing/markup.cpp if (Node* parentListNode = enclosingNodeOfType(firstPositionInOrBeforeNode(range->firstNode()), isListItem)) { range 508 Source/core/editing/markup.cpp if (WebCore::areRangesEqual(VisibleSelection::selectionFromContentsOfNode(parentListNode).toNormalizedRange().get(), range)) { range 516 Source/core/editing/markup.cpp if (Node* highestMailBlockquote = highestEnclosingNodeOfType(firstPositionInOrBeforeNode(range->firstNode()), isMailBlockquote, CanCrossEditingBoundary)) range 544 Source/core/editing/markup.cpp static String createMarkupInternal(Document& document, const Range* range, const Range* updatedRange, Vector<Node*>* nodes, range 547 Source/core/editing/markup.cpp ASSERT(range); range 563 Source/core/editing/markup.cpp if (body && areRangesEqual(VisibleSelection::selectionFromContentsOfNode(body).toNormalizedRange().get(), range)) range 627 Source/core/editing/markup.cpp String createMarkup(const Range* range, Vector<Node*>* nodes, EAnnotateForInterchange shouldAnnotate, bool convertBlocksToInlines, EAbsoluteURLs shouldResolveURLs, Node* constrainingAncestor) range 629 Source/core/editing/markup.cpp if (!range) range 632 Source/core/editing/markup.cpp Document& document = range->ownerDocument(); range 633 Source/core/editing/markup.cpp const Range* updatedRange = range; range 635 Source/core/editing/markup.cpp return createMarkupInternal(document, range, updatedRange, nodes, shouldAnnotate, convertBlocksToInlines, shouldResolveURLs, constrainingAncestor); range 716 Source/core/editing/markup.cpp RefPtrWillBeRawPtr<Range> range = Range::create(*taggedDocument.get(), range 720 Source/core/editing/markup.cpp Node* commonAncestor = range->commonAncestorContainer(ASSERT_NO_EXCEPTION); range 802 Source/core/editing/markup.cpp static bool shouldPreserveNewline(const Range& range) range 804 Source/core/editing/markup.cpp if (Node* node = range.firstNode()) { range 809 Source/core/editing/markup.cpp if (Node* node = range.startPosition().anchorNode()) { range 315 Source/core/html/HTMLTextFormControlElement.cpp RefPtrWillBeRawPtr<Range> range = Range::create(document()); range 316 Source/core/html/HTMLTextFormControlElement.cpp range->selectNodeContents(innerTextElement(), ASSERT_NO_EXCEPTION); range 317 Source/core/html/HTMLTextFormControlElement.cpp CharacterIterator it(range.get()); range 319 Source/core/html/HTMLTextFormControlElement.cpp return VisiblePosition(it.range()->endPosition(), UPSTREAM); range 328 Source/core/html/HTMLTextFormControlElement.cpp RefPtrWillBeRawPtr<Range> range = Range::create(*indexPosition.document()); range 329 Source/core/html/HTMLTextFormControlElement.cpp range->setStart(innerTextElement(), 0, ASSERT_NO_EXCEPTION); range 330 Source/core/html/HTMLTextFormControlElement.cpp range->setEnd(indexPosition.containerNode(), indexPosition.offsetInContainerNode(), ASSERT_NO_EXCEPTION); range 331 Source/core/html/HTMLTextFormControlElement.cpp return TextIterator::rangeLength(range.get()); range 110 Source/core/html/TimeRanges.cpp const Range& range = other->m_ranges[index]; range 111 Source/core/html/TimeRanges.cpp unioned->add(range.m_start, range.m_end); range 93 Source/core/html/TimeRanges.h inline bool isOverlappingRange(const Range& range) const range 95 Source/core/html/TimeRanges.h return isPointInRange(range.m_start) || isPointInRange(range.m_end) || range.isPointInRange(m_start); range 98 Source/core/html/TimeRanges.h inline bool isContiguousWithRange(const Range& range) const range 100 Source/core/html/TimeRanges.h return range.m_start == m_end || range.m_end == m_start; range 103 Source/core/html/TimeRanges.h inline Range unionWithOverlappingOrContiguousRange(const Range& range) const range 107 Source/core/html/TimeRanges.h ret.m_start = std::min(m_start, range.m_start); range 108 Source/core/html/TimeRanges.h ret.m_end = std::max(m_end, range.m_end); range 113 Source/core/html/TimeRanges.h inline bool isBeforeRange(const Range& range) const range 115 Source/core/html/TimeRanges.h return range.m_start >= m_end; range 52 Source/core/html/TimeRangesTest.cpp #define ASSERT_RANGE(expected, range) ASSERT_EQ(expected, ToString(*range)) range 2571 Source/core/html/canvas/WebGLRenderingContextBase.cpp GLint range[2] = {0, 0}; range 2573 Source/core/html/canvas/WebGLRenderingContextBase.cpp m_context->getShaderPrecisionFormat(shaderType, precisionType, range, &precision); range 2574 Source/core/html/canvas/WebGLRenderingContextBase.cpp return WebGLShaderPrecisionFormat::create(range[0], range[1], precision); range 97 Source/core/html/forms/InputType.cpp map->add(InputTypeNames::range, RangeInputType::create); range 100 Source/core/html/forms/RangeInputType.cpp return InputTypeNames::range; range 283 Source/core/html/shadow/DateTimeEditElement.cpp DateTimeNumericFieldElement::Range range(DateComponents::minimumWeekNumber, DateComponents::maximumWeekNumber); range 288 Source/core/html/shadow/DateTimeEditElement.cpp range.minimum = m_parameters.minimum.week(); range 289 Source/core/html/shadow/DateTimeEditElement.cpp range.maximum = m_parameters.maximum.week(); range 291 Source/core/html/shadow/DateTimeEditElement.cpp m_editElement.addField(DateTimeWeekFieldElement::create(document, m_editElement, range)); range 81 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeDayFieldElement::DateTimeDayFieldElement(Document& document, FieldOwner& fieldOwner, const String& placeholder, const Range& range) range 82 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeNumericFieldElement(document, fieldOwner, range, Range(1, 31), placeholder) range 86 Source/core/html/shadow/DateTimeFieldElements.cpp PassRefPtr<DateTimeDayFieldElement> DateTimeDayFieldElement::create(Document& document, FieldOwner& fieldOwner, const String& placeholder, const Range& range) range 89 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeDayFieldElement> field = adoptRef(new DateTimeDayFieldElement(document, fieldOwner, placeholder.isEmpty() ? "--" : placeholder, range)); range 112 Source/core/html/shadow/DateTimeFieldElements.cpp if (range().isInRange(static_cast<int>(value))) { range 122 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeHourFieldElementBase::DateTimeHourFieldElementBase(Document& document, FieldOwner& fieldOwner, const Range& range, const Range& hardLimits, const Step& step) range 123 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeNumericFieldElement(document, fieldOwner, range, hardLimits, "--", step) range 157 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeHour11FieldElement::DateTimeHour11FieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 158 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeHourFieldElementBase(document, fieldOwner, range, Range(0, 11), step) range 167 Source/core/html/shadow/DateTimeFieldElements.cpp Range range(0, 11); range 169 Source/core/html/shadow/DateTimeFieldElements.cpp range = hour23Range; range 171 Source/core/html/shadow/DateTimeFieldElements.cpp range.minimum = hour23Range.minimum - 12; range 172 Source/core/html/shadow/DateTimeFieldElements.cpp range.maximum = hour23Range.maximum - 12; range 175 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeHour11FieldElement> field = adoptRef(new DateTimeHour11FieldElement(document, fieldOwner, range, step)); range 198 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeHour12FieldElement::DateTimeHour12FieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 199 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeHourFieldElementBase(document, fieldOwner, range, Range(1, 12), step) range 208 Source/core/html/shadow/DateTimeFieldElements.cpp Range range(1, 12); range 210 Source/core/html/shadow/DateTimeFieldElements.cpp range = hour23Range; range 212 Source/core/html/shadow/DateTimeFieldElements.cpp range.minimum = hour23Range.minimum - 12; range 213 Source/core/html/shadow/DateTimeFieldElements.cpp range.maximum = hour23Range.maximum - 12; range 215 Source/core/html/shadow/DateTimeFieldElements.cpp if (!range.minimum) range 216 Source/core/html/shadow/DateTimeFieldElements.cpp range.minimum = 12; range 217 Source/core/html/shadow/DateTimeFieldElements.cpp if (!range.maximum) range 218 Source/core/html/shadow/DateTimeFieldElements.cpp range.maximum = 12; range 219 Source/core/html/shadow/DateTimeFieldElements.cpp if (range.minimum > range.maximum) { range 220 Source/core/html/shadow/DateTimeFieldElements.cpp range.minimum = 1; range 221 Source/core/html/shadow/DateTimeFieldElements.cpp range.maximum = 12; range 223 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeHour12FieldElement> field = adoptRef(new DateTimeHour12FieldElement(document, fieldOwner, range, step)); range 241 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeHour23FieldElement::DateTimeHour23FieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 242 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeHourFieldElementBase(document, fieldOwner, range, Range(0, 23), step) range 277 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeHour24FieldElement::DateTimeHour24FieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 278 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeHourFieldElementBase(document, fieldOwner, range, Range(1, 24), step) range 287 Source/core/html/shadow/DateTimeFieldElements.cpp Range range(hour23Range.minimum ? hour23Range.minimum : 24, hour23Range.maximum ? hour23Range.maximum : 24); range 288 Source/core/html/shadow/DateTimeFieldElements.cpp if (range.minimum > range.maximum) { range 289 Source/core/html/shadow/DateTimeFieldElements.cpp range.minimum = 1; range 290 Source/core/html/shadow/DateTimeFieldElements.cpp range.maximum = 24; range 293 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeHour24FieldElement> field = adoptRef(new DateTimeHour24FieldElement(document, fieldOwner, range, step)); range 324 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeMillisecondFieldElement::DateTimeMillisecondFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 325 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeNumericFieldElement(document, fieldOwner, range, Range(0, 999), "---", step) range 329 Source/core/html/shadow/DateTimeFieldElements.cpp PassRefPtr<DateTimeMillisecondFieldElement> DateTimeMillisecondFieldElement::create(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 332 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeMillisecondFieldElement> field = adoptRef(new DateTimeMillisecondFieldElement(document, fieldOwner, range, step)); range 365 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeMinuteFieldElement::DateTimeMinuteFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 366 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeNumericFieldElement(document, fieldOwner, range, Range(0, 59), "--", step) range 370 Source/core/html/shadow/DateTimeFieldElements.cpp PassRefPtr<DateTimeMinuteFieldElement> DateTimeMinuteFieldElement::create(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 373 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeMinuteFieldElement> field = adoptRef(new DateTimeMinuteFieldElement(document, fieldOwner, range, step)); range 406 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeMonthFieldElement::DateTimeMonthFieldElement(Document& document, FieldOwner& fieldOwner, const String& placeholder, const Range& range) range 407 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeNumericFieldElement(document, fieldOwner, range, Range(1, 12), placeholder) range 411 Source/core/html/shadow/DateTimeFieldElements.cpp PassRefPtr<DateTimeMonthFieldElement> DateTimeMonthFieldElement::create(Document& document, FieldOwner& fieldOwner, const String& placeholder, const Range& range) range 414 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeMonthFieldElement> field = adoptRef(new DateTimeMonthFieldElement(document, fieldOwner, placeholder.isEmpty() ? "--" : placeholder, range)); range 437 Source/core/html/shadow/DateTimeFieldElements.cpp if (range().isInRange(static_cast<int>(value))) { range 447 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeSecondFieldElement::DateTimeSecondFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 448 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeNumericFieldElement(document, fieldOwner, range, Range(0, 59), "--", step) range 452 Source/core/html/shadow/DateTimeFieldElements.cpp PassRefPtr<DateTimeSecondFieldElement> DateTimeSecondFieldElement::create(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) range 455 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeSecondFieldElement> field = adoptRef(new DateTimeSecondFieldElement(document, fieldOwner, range, step)); range 532 Source/core/html/shadow/DateTimeFieldElements.cpp DateTimeWeekFieldElement::DateTimeWeekFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range) range 533 Source/core/html/shadow/DateTimeFieldElements.cpp : DateTimeNumericFieldElement(document, fieldOwner, range, Range(DateComponents::minimumWeekNumber, DateComponents::maximumWeekNumber), "--") range 537 Source/core/html/shadow/DateTimeFieldElements.cpp PassRefPtr<DateTimeWeekFieldElement> DateTimeWeekFieldElement::create(Document& document, FieldOwner& fieldOwner, const Range& range) range 540 Source/core/html/shadow/DateTimeFieldElements.cpp RefPtr<DateTimeWeekFieldElement> field = adoptRef(new DateTimeWeekFieldElement(document, fieldOwner, range)); range 563 Source/core/html/shadow/DateTimeFieldElements.cpp if (range().isInRange(static_cast<int>(value))) { range 631 Source/core/html/shadow/DateTimeFieldElements.cpp if (range().isInRange(static_cast<int>(value))) { range 52 Source/core/html/shadow/DateTimeNumericFieldElement.cpp DateTimeNumericFieldElement::DateTimeNumericFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Range& hardLimits, const String& placeholder, const DateTimeNumericFieldElement::Step& step) range 55 Source/core/html/shadow/DateTimeNumericFieldElement.cpp , m_range(range) range 70 Source/core/html/shadow/DateTimeNumericFieldElement.h const Range& range() const { return m_range; } range 842 Source/core/inspector/InspectorCSSAgent.cpp static bool extractRangeComponent(ErrorString* errorString, const RefPtr<JSONObject>& range, const String& component, unsigned& result) range 845 Source/core/inspector/InspectorCSSAgent.cpp if (!range->getNumber(component, &parsedValue) || parsedValue < 0) { range 853 Source/core/inspector/InspectorCSSAgent.cpp static bool jsonRangeToSourceRange(ErrorString* errorString, InspectorStyleSheetBase* inspectorStyleSheet, const RefPtr<JSONObject>& range, SourceRange* sourceRange) range 859 Source/core/inspector/InspectorCSSAgent.cpp if (!extractRangeComponent(errorString, range, "startLine", startLineNumber) range 860 Source/core/inspector/InspectorCSSAgent.cpp || !extractRangeComponent(errorString, range, "startColumn", startColumn) range 861 Source/core/inspector/InspectorCSSAgent.cpp || !extractRangeComponent(errorString, range, "endLine", endLineNumber) range 862 Source/core/inspector/InspectorCSSAgent.cpp || !extractRangeComponent(errorString, range, "endColumn", endColumn)) range 883 Source/core/inspector/InspectorCSSAgent.cpp void InspectorCSSAgent::setPropertyText(ErrorString* errorString, const String& styleSheetId, const RefPtr<JSONObject>& range, const String& text, RefPtr<TypeBuilder::CSS::CSSStyle>& result) range 889 Source/core/inspector/InspectorCSSAgent.cpp if (!jsonRangeToSourceRange(errorString, inspectorStyleSheet, range, &propertyRange)) range 132 Source/core/inspector/InspectorCSSAgent.h virtual void setPropertyText(ErrorString*, const String& styleSheetId, const RefPtr<JSONObject>& range, const String& text, RefPtr<TypeBuilder::CSS::CSSStyle>& result) OVERRIDE; range 220 Source/core/inspector/InspectorStyleSheet.cpp if (currentData->range.end > 0 && characters[styleStart + currentData->range.end - 1] == ';') range 227 Source/core/inspector/InspectorStyleSheet.cpp propertyEndInStyleSheet = styleStart + nextData->range.start - 1; range 234 Source/core/inspector/InspectorStyleSheet.cpp if (currentData->range.end != newPropertyEnd) { range 235 Source/core/inspector/InspectorStyleSheet.cpp currentData->range.end = newPropertyEnd; range 236 Source/core/inspector/InspectorStyleSheet.cpp unsigned valueStartInStyleSheet = styleStart + currentData->range.start + currentData->name.length(); range 348 Source/core/inspector/InspectorStyleSheet.cpp if (propertyData.range.length() != commentText.length()) range 459 Source/core/inspector/InspectorStyleSheet.cpp static PassRefPtr<TypeBuilder::CSS::SourceRange> buildSourceRangeObject(const SourceRange& range, Vector<unsigned>* lineEndings) range 463 Source/core/inspector/InspectorStyleSheet.cpp TextPosition start = TextPosition::fromOffsetAndLineEndings(range.start, *lineEndings); range 464 Source/core/inspector/InspectorStyleSheet.cpp TextPosition end = TextPosition::fromOffsetAndLineEndings(range.end, *lineEndings); range 696 Source/core/inspector/InspectorStyleSheet.cpp SourceRange absolutePropertyRange = propertyEntry.range; range 794 Source/core/inspector/InspectorStyleSheet.cpp int scanEnd = currentProperty.range.start; range 807 Source/core/inspector/InspectorStyleSheet.cpp scanStart = currentProperty.range.end; range 926 Source/core/inspector/InspectorStyleSheet.cpp if (sourceRange.length() && property.range.start + styleStart == sourceRange.start && property.range.end + styleStart == sourceRange.end) { range 932 Source/core/inspector/InspectorStyleSheet.cpp if (!sourceRange.length() && styleStart <= sourceRange.start && sourceRange.start <= property.range.start + styleStart) { range 1173 Source/core/inspector/InspectorStyleSheet.cpp const SourceRange& range = ranges.at(i); range 1174 Source/core/inspector/InspectorStyleSheet.cpp String selector = sheetText.substring(range.start, range.length()); range 1184 Source/core/inspector/InspectorStyleSheet.cpp simpleSelector->setRange(buildSourceRangeObject(range, lineEndings().get())); range 121 Source/core/inspector/InspectorStyleSheet.h unsigned start = sourceData.range.start; range 122 Source/core/inspector/InspectorStyleSheet.h unsigned end = sourceData.range.end; range 49 Source/core/inspector/InspectorStyleTextEditor.cpp propertyStart = property.sourceData.range.start; range 115 Source/core/inspector/InspectorStyleTextEditor.cpp const SourceRange& range = property.sourceData.range; range 116 Source/core/inspector/InspectorStyleTextEditor.cpp long replaceRangeStart = range.start; range 117 Source/core/inspector/InspectorStyleTextEditor.cpp long replaceRangeEnd = range.end; range 427 Source/core/page/DragController.cpp static bool setSelectionToDragCaret(LocalFrame* frame, VisibleSelection& dragCaret, RefPtrWillBeRawPtr<Range>& range, const IntPoint& point) range 433 Source/core/page/DragController.cpp range = dragCaret.toNormalizedRange(); range 486 Source/core/page/DragController.cpp RefPtrWillBeRawPtr<Range> range = dragCaret.toNormalizedRange(); range 491 Source/core/page/DragController.cpp if (!range) range 493 Source/core/page/DragController.cpp ResourceFetcher* fetcher = range->ownerDocument().fetcher(); range 497 Source/core/page/DragController.cpp RefPtr<DocumentFragment> fragment = documentFragmentFromDragData(dragData, innerFrame.get(), range, true, chosePlainText); range 508 Source/core/page/DragController.cpp if (setSelectionToDragCaret(innerFrame.get(), dragCaret, range, point)) { range 523 Source/core/page/DragController.cpp if (setSelectionToDragCaret(innerFrame.get(), dragCaret, range, point)) { range 525 Source/core/page/DragController.cpp ReplaceSelectionCommand::create(*m_documentUnderMouse.get(), createFragmentFromText(range.get(), text), ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting)->apply(); range 717 Source/core/page/DragController.cpp RefPtrWillBeRawPtr<Range> range = source->document()->createRange(); range 718 Source/core/page/DragController.cpp range->selectNode(node, ASSERT_NO_EXCEPTION); range 719 Source/core/page/DragController.cpp source->selection().setSelection(VisibleSelection(range.get(), DOWNSTREAM)); range 546 Source/core/page/EventHandler.cpp RefPtrWillBeRawPtr<Range> range = Range::create(*start.document(), start, end); range 547 Source/core/page/EventHandler.cpp return TextIterator::rangeLength(range.get(), true); range 152 Source/core/rendering/AbstractInlineTextBox.cpp RefPtrWillBeRawPtr<Range> range = Range::create(node->document()); range 153 Source/core/rendering/AbstractInlineTextBox.cpp range->setStart(node, start, IGNORE_EXCEPTION); range 154 Source/core/rendering/AbstractInlineTextBox.cpp range->setEnd(node, start + len, IGNORE_EXCEPTION); range 155 Source/core/rendering/AbstractInlineTextBox.cpp return plainText(range.get(), TextIteratorIgnoresStyleVisibility); range 441 Source/core/rendering/RenderFlowThread.cpp RenderRegionRange& range = it->value; range 442 Source/core/rendering/RenderFlowThread.cpp if (range.startRegion() == startRegion && range.endRegion() == endRegion) range 445 Source/core/rendering/RenderFlowThread.cpp range.setRange(startRegion, endRegion); range 456 Source/core/rendering/RenderFlowThread.cpp const RenderRegionRange& range = it->value; range 457 Source/core/rendering/RenderFlowThread.cpp startRegion = range.startRegion(); range 458 Source/core/rendering/RenderFlowThread.cpp endRegion = range.endRegion(); range 291 Source/core/rendering/RenderMarquee.cpp int range = m_end - m_start; range 293 Source/core/rendering/RenderMarquee.cpp if (range == 0) range 301 Source/core/rendering/RenderMarquee.cpp range = -range; range 304 Source/core/rendering/RenderMarquee.cpp bool positive = range > 0; range 1291 Source/core/rendering/RenderObject.cpp FloatRect RenderObject::absoluteBoundingBoxRectForRange(const Range* range) range 1293 Source/core/rendering/RenderObject.cpp if (!range || !range->startContainer()) range 1296 Source/core/rendering/RenderObject.cpp range->ownerDocument().updateLayout(); range 1299 Source/core/rendering/RenderObject.cpp range->textQuads(quads); range 268 Source/core/svg/SVGParserUtilities.cpp static bool parseUnicodeRange(const CharType* characters, unsigned length, UnicodeRange& range) range 311 Source/core/svg/SVGParserUtilities.cpp range.first = startRange; range 312 Source/core/svg/SVGParserUtilities.cpp range.second = endRange; range 332 Source/core/svg/SVGParserUtilities.cpp range.first = startRange; range 333 Source/core/svg/SVGParserUtilities.cpp range.second = endRange; range 349 Source/core/svg/SVGParserUtilities.cpp UnicodeRange range; range 350 Source/core/svg/SVGParserUtilities.cpp if (parseUnicodeRange(inputStart, ptr - inputStart, range)) range 351 Source/core/svg/SVGParserUtilities.cpp rangeList.append(range); range 887 Source/core/testing/Internals.cpp void Internals::addTextMatchMarker(const Range* range, bool isActive) range 889 Source/core/testing/Internals.cpp range->ownerDocument().updateLayoutIgnorePendingStylesheets(); range 890 Source/core/testing/Internals.cpp range->ownerDocument().markers().addTextMatchMarker(range, isActive); range 1094 Source/core/testing/Internals.cpp unsigned Internals::locationFromRange(Element* scope, const Range* range, ExceptionState& exceptionState) range 1096 Source/core/testing/Internals.cpp if (!scope || !range) { range 1104 Source/core/testing/Internals.cpp return PlainTextRange::create(*scope, *range).start(); range 1107 Source/core/testing/Internals.cpp unsigned Internals::lengthFromRange(Element* scope, const Range* range, ExceptionState& exceptionState) range 1109 Source/core/testing/Internals.cpp if (!scope || !range) { range 1117 Source/core/testing/Internals.cpp return PlainTextRange::create(*scope, *range).length(); range 1120 Source/core/testing/Internals.cpp String Internals::rangeAsText(const Range* range, ExceptionState& exceptionState) range 1122 Source/core/testing/Internals.cpp if (!range) { range 1127 Source/core/testing/Internals.cpp return range->text(); range 69 Source/modules/indexeddb/IDBIndex.cpp PassRefPtr<IDBRequest> IDBIndex::openCursor(ExecutionContext* context, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState) range 88 Source/modules/indexeddb/IDBIndex.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); range 103 Source/modules/indexeddb/IDBIndex.cpp PassRefPtr<IDBRequest> IDBIndex::count(ExecutionContext* context, const ScriptValue& range, ExceptionState& exceptionState) range 119 Source/modules/indexeddb/IDBIndex.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); range 128 Source/modules/indexeddb/IDBIndex.cpp PassRefPtr<IDBRequest> IDBIndex::openKeyCursor(ExecutionContext* context, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState) range 147 Source/modules/indexeddb/IDBIndex.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); range 61 Source/modules/indexeddb/IDBIndex.h PassRefPtr<IDBRequest> openKeyCursor(ExecutionContext*, const ScriptValue& range, const String& direction, ExceptionState&); range 62 Source/modules/indexeddb/IDBIndex.h PassRefPtr<IDBRequest> count(ExecutionContext*, const ScriptValue& range, ExceptionState&); range 43 Source/modules/indexeddb/IDBKeyRange.cpp RefPtr<IDBKeyRange> range = scriptValueToIDBKeyRange(&requestState, value); range 44 Source/modules/indexeddb/IDBKeyRange.cpp if (range) range 45 Source/modules/indexeddb/IDBKeyRange.cpp return range.release(); range 511 Source/modules/indexeddb/IDBObjectStore.cpp PassRefPtr<IDBRequest> IDBObjectStore::openCursor(ExecutionContext* context, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState) range 531 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); range 538 Source/modules/indexeddb/IDBObjectStore.cpp PassRefPtr<IDBRequest> IDBObjectStore::openCursor(ExecutionContext* context, PassRefPtr<IDBKeyRange> range, WebIDBCursor::Direction direction, WebIDBDatabase::TaskType taskType) range 543 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, range, direction, false, taskType, WebIDBCallbacksImpl::create(request).leakPtr()); range 547 Source/modules/indexeddb/IDBObjectStore.cpp PassRefPtr<IDBRequest> IDBObjectStore::openKeyCursor(ExecutionContext* context, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState) range 567 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); range 578 Source/modules/indexeddb/IDBObjectStore.cpp PassRefPtr<IDBRequest> IDBObjectStore::count(ExecutionContext* context, const ScriptValue& range, ExceptionState& exceptionState) range 594 Source/modules/indexeddb/IDBObjectStore.cpp RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); range 68 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> openCursor(ExecutionContext*, const ScriptValue& range, const String& direction, ExceptionState&); range 69 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> openKeyCursor(ExecutionContext*, const ScriptValue& range, const String& direction, ExceptionState&); range 81 Source/modules/indexeddb/IDBObjectStore.h PassRefPtr<IDBRequest> count(ExecutionContext*, const ScriptValue& range, ExceptionState&); range 58 Source/platform/CalculationValue.cpp PassRefPtr<CalculationValue> CalculationValue::create(PassOwnPtr<CalcExpressionNode> value, ValueRange range) range 60 Source/platform/CalculationValue.cpp return adoptRef(new CalculationValue(value, range)); range 93 Source/platform/CalculationValue.h CalculationValue(PassOwnPtr<CalcExpressionNode> value, ValueRange range) range 95 Source/platform/CalculationValue.h , m_isNonNegative(range == ValueRangeNonNegative) range 178 Source/platform/Length.cpp Length Length::blendMixedTypes(const Length& from, double progress, ValueRange range) const range 180 Source/platform/Length.cpp return Length(CalculationValue::create(adoptPtr(new CalcExpressionBlendLength(from, *this, progress)), range)); range 248 Source/platform/Length.h Length blend(const Length& from, double progress, ValueRange range) const range 262 Source/platform/Length.h return blendMixedTypes(from, progress, range); range 265 Source/platform/Length.h return blendMixedTypes(from, progress, range); range 275 Source/platform/Length.h if (range == ValueRangeNonNegative) range 222 Source/platform/fonts/GlyphPageTreeNode.cpp const FontDataRange& range = segmentedFontData->rangeAt(i); range 225 Source/platform/fonts/GlyphPageTreeNode.cpp int from = max(0, static_cast<int>(range.from()) - static_cast<int>(start)); range 226 Source/platform/fonts/GlyphPageTreeNode.cpp int to = 1 + min(static_cast<int>(range.to()) - static_cast<int>(start), static_cast<int>(GlyphPage::size) - 1); range 231 Source/platform/fonts/GlyphPageTreeNode.cpp RefPtr<CustomFontData> customData = range.fontData()->customFontData(); range 249 Source/platform/fonts/GlyphPageTreeNode.cpp haveGlyphs |= fill(pageToFill, from, to - from, buffer + from * (start < 0x10000 ? 1 : 2), (to - from) * (start < 0x10000 ? 1 : 2), range.fontData().get()); range 62 Source/platform/fonts/SegmentedFontData.h void appendRange(const FontDataRange& range) { m_ranges.append(range); } range 153 Source/platform/graphics/test/MockWebGraphicsContext3D.h virtual void getShaderPrecisionFormat(WGC3Denum shadertype, WGC3Denum precisiontype, WGC3Dint* range, WGC3Dint* precision) { } range 488 Source/platform/network/HTTPParsers.cpp bool parseRange(const String& range, long long& rangeOffset, long long& rangeEnd, long long& rangeSuffixLength) range 498 Source/platform/network/HTTPParsers.cpp if (!range.startsWith(bytesStart, false)) range 500 Source/platform/network/HTTPParsers.cpp String byteRange = range.substring(sizeof(bytesStart) - 1); range 79 Source/platform/network/ParsedContentType.cpp static String substringForRange(const String& string, const SubstringRange& range) range 81 Source/platform/network/ParsedContentType.cpp return string.substring(range.first, range.second); range 435 Source/platform/text/UnicodeRange.cpp unsigned range; range 438 Source/platform/text/UnicodeRange.cpp range = gUnicodeSubrangeTable[0][ch >> 12]; range 440 Source/platform/text/UnicodeRange.cpp if (range < cRangeTableBase) range 442 Source/platform/text/UnicodeRange.cpp return range; range 445 Source/platform/text/UnicodeRange.cpp range = gUnicodeSubrangeTable[range - cRangeTableBase][(ch & 0x0f00) >> 8]; range 446 Source/platform/text/UnicodeRange.cpp if (range < cRangeTableBase) range 447 Source/platform/text/UnicodeRange.cpp return range; range 448 Source/platform/text/UnicodeRange.cpp if (range < cRangeTertiaryTable) range 449 Source/platform/text/UnicodeRange.cpp return gUnicodeSubrangeTable[range - cRangeTableBase][(ch & 0x00f0) >> 4]; range 131 Source/web/FindInPageCoordinates.cpp FloatRect findInPageRectFromRange(Range* range) range 133 Source/web/FindInPageCoordinates.cpp if (!range || !range->firstNode()) range 136 Source/web/FindInPageCoordinates.cpp return findInPageRectFromAbsoluteRect(RenderObject::absoluteBoundingBoxRectForRange(range), range->firstNode()->renderer()); range 57 Source/web/TextFinder.cpp TextFinder::FindMatch::FindMatch(PassRefPtrWillBeRawPtr<Range> range, int ordinal) range 58 Source/web/TextFinder.cpp : m_range(range) range 554 Source/web/TextFinder.cpp RefPtrWillBeRawPtr<Range> range = m_findMatchesCache[index].m_range; range 555 Source/web/TextFinder.cpp if (!range->boundaryPointsValid() || !range->startContainer()->inDocument()) range 561 Source/web/TextFinder.cpp if (&m_ownerFrame != activeMatchFrame || !m_activeMatch || !areRangesEqual(m_activeMatch.get(), range.get())) { range 571 Source/web/TextFinder.cpp m_activeMatch = range.release(); range 629 Source/web/TextFinder.cpp void TextFinder::addMarker(Range* range, bool activeMatch) range 631 Source/web/TextFinder.cpp m_ownerFrame.frame()->document()->markers().addTextMatchMarker(range, activeMatch); range 634 Source/web/TextFinder.cpp void TextFinder::setMarkerActive(Range* range, bool active) range 636 Source/web/TextFinder.cpp if (!range || range->collapsed(IGNORE_EXCEPTION)) range 638 Source/web/TextFinder.cpp m_ownerFrame.frame()->document()->markers().setMarkersActive(range, active); range 336 Source/web/WebBindings.cpp bool WebBindings::getRange(NPObject* range, WebRange* webRange) range 338 Source/web/WebBindings.cpp return getRangeImpl(range, webRange, v8::Isolate::GetCurrent()); range 214 Source/web/WebFrameImpl.cpp RefPtrWillBeRawPtr<Range> range(document->createRange()); range 216 Source/web/WebFrameImpl.cpp range->selectNodeContents(document->body(), exceptionState); range 223 Source/web/WebFrameImpl.cpp for (TextIterator it(range.get()); !it.atEnd(); it.advance()) { range 1088 Source/web/WebFrameImpl.cpp RefPtrWillBeRawPtr<Range> range = PlainTextRange(location, location + length).createRange(*editable); range 1089 Source/web/WebFrameImpl.cpp if (!range) range 1091 Source/web/WebFrameImpl.cpp IntRect intRect = frame()->editor().firstRectForRange(range.get()); range 1104 Source/web/WebFrameImpl.cpp RefPtrWillBeRawPtr<Range> range = frame()->rangeForPoint(result.roundedPointInInnerNodeFrame()); range 1105 Source/web/WebFrameImpl.cpp if (!range) range 1109 Source/web/WebFrameImpl.cpp return PlainTextRange::create(*editable, *range.get()).start(); range 1253 Source/web/WebFrameImpl.cpp RefPtrWillBeRawPtr<Range> range = frame()->selection().toNormalizedRange(); range 1254 Source/web/WebFrameImpl.cpp if (!range) range 1257 Source/web/WebFrameImpl.cpp String text = range->text(); range 1271 Source/web/WebFrameImpl.cpp RefPtrWillBeRawPtr<Range> range = frame()->selection().toNormalizedRange(); range 1272 Source/web/WebFrameImpl.cpp if (!range) range 1275 Source/web/WebFrameImpl.cpp return createMarkup(range.get(), 0, AnnotateForInterchange, false, ResolveNonLocalURLs); range 1304 Source/web/WebFrameImpl.cpp if (RefPtrWillBeRawPtr<Range> range = static_cast<PassRefPtrWillBeRawPtr<Range> >(webRange)) range 1305 Source/web/WebFrameImpl.cpp frame()->selection().setSelectedRange(range.get(), WebCore::VP_DEFAULT_AFFINITY, false); range 140 Source/web/WebRange.cpp WebRange::WebRange(const PassRefPtrWillBeRawPtr<WebCore::Range>& range) range 141 Source/web/WebRange.cpp : m_private(range) range 1948 Source/web/WebViewImpl.cpp RefPtrWillBeRawPtr<Range> range = inputMethodController.compositionRange(); range 1949 Source/web/WebViewImpl.cpp if (range) { range 1950 Source/web/WebViewImpl.cpp Node* node = range->startContainer(); range 2012 Source/web/WebViewImpl.cpp RefPtrWillBeRawPtr<Range> range = focused->inputMethodController().compositionRange(); range 2013 Source/web/WebViewImpl.cpp if (!range) range 2018 Source/web/WebViewImpl.cpp PlainTextRange plainTextRange(PlainTextRange::create(*editable, *range.get())); range 2053 Source/web/WebViewImpl.cpp if (RefPtrWillBeRawPtr<Range> range = selection.selection().firstRange()) { range 2054 Source/web/WebViewImpl.cpp PlainTextRange plainTextRange(PlainTextRange::create(*node, *range.get())); range 2061 Source/web/WebViewImpl.cpp if (RefPtrWillBeRawPtr<Range> range = focused->inputMethodController().compositionRange()) { range 2062 Source/web/WebViewImpl.cpp PlainTextRange plainTextRange(PlainTextRange::create(*node, *range.get())); range 2168 Source/web/WebViewImpl.cpp RefPtrWillBeRawPtr<Range> range(Range::create(selectedRange->startContainer()->document(), range 2173 Source/web/WebViewImpl.cpp anchor = frame->editor().firstRectForRange(range.get()); range 2175 Source/web/WebViewImpl.cpp range = Range::create(selectedRange->endContainer()->document(), range 2180 Source/web/WebViewImpl.cpp focus = frame->editor().firstRectForRange(range.get()); range 2995 Source/web/tests/WebFrameTest.cpp WebRange range = frame->selectionRange(); range 2996 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(5, range.startOffset()); range 2997 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(9, range.endOffset()); range 3004 Source/web/tests/WebFrameTest.cpp range = frame->selectionRange(); range 3005 Source/web/tests/WebFrameTest.cpp ASSERT_FALSE(range.isNull()); range 3006 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(5, range.startOffset()); range 3007 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(9, range.endOffset()); range 3014 Source/web/tests/WebFrameTest.cpp range = frame->selectionRange(); range 3015 Source/web/tests/WebFrameTest.cpp ASSERT_FALSE(range.isNull()); range 3016 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(5, range.startOffset()); range 3017 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(9, range.endOffset()); range 3024 Source/web/tests/WebFrameTest.cpp range = frame->selectionRange(); range 3025 Source/web/tests/WebFrameTest.cpp ASSERT_FALSE(range.isNull()); range 3026 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(0, range.startOffset()); range 3027 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(4, range.endOffset()); range 3036 Source/web/tests/WebFrameTest.cpp range = frame->selectionRange(); range 3037 Source/web/tests/WebFrameTest.cpp ASSERT_TRUE(range.isNull()); range 39 public/platform/WebFlingAnimator.h virtual void startFling(const WebFloatPoint& velocity, const WebRect& range) = 0; range 275 public/platform/WebGraphicsContext3D.h virtual void getShaderPrecisionFormat(WGC3Denum shadertype, WGC3Denum precisiontype, WGC3Dint* range, WGC3Dint* precision) = 0; range 152 public/web/WebBindings.h BLINK_EXPORT static bool getRange(NPObject* range, WebRange*); range 42 public/web/WebContentDetectionResult.h WebContentDetectionResult(const WebRange& range, const WebString& string, const WebURL& intent) range 44 public/web/WebContentDetectionResult.h , m_range(range) range 51 public/web/WebContentDetectionResult.h const WebRange& range() const { return m_range; }