lineEndings 1506 Source/core/css/parser/BisonCSSParser-in.cpp m_lineEndings = lineEndings(*m_source); lineEndings 66 Source/core/inspector/ContentSearchUtils.cpp OwnPtr<Vector<unsigned> > endings(lineEndings(text)); lineEndings 459 Source/core/inspector/InspectorStyleSheet.cpp static PassRefPtr<TypeBuilder::CSS::SourceRange> buildSourceRangeObject(const SourceRange& range, Vector<unsigned>* lineEndings) lineEndings 461 Source/core/inspector/InspectorStyleSheet.cpp if (!lineEndings) lineEndings 463 Source/core/inspector/InspectorStyleSheet.cpp TextPosition start = TextPosition::fromOffsetAndLineEndings(range.start, *lineEndings); lineEndings 464 Source/core/inspector/InspectorStyleSheet.cpp TextPosition end = TextPosition::fromOffsetAndLineEndings(range.end, *lineEndings); lineEndings 529 Source/core/inspector/InspectorStyleSheet.cpp result->setRange(buildSourceRangeObject(sourceData->ruleBodyRange, m_parentStyleSheet->lineEndings().get())); lineEndings 668 Source/core/inspector/InspectorStyleSheet.cpp OwnPtr<Vector<unsigned> > lineEndings(m_parentStyleSheet ? m_parentStyleSheet->lineEndings() : PassOwnPtr<Vector<unsigned> >()); lineEndings 699 Source/core/inspector/InspectorStyleSheet.cpp property->setRange(buildSourceRangeObject(absolutePropertyRange, lineEndings.get())); lineEndings 895 Source/core/inspector/InspectorStyleSheet.cpp return WTF::lineEndings(text); lineEndings 900 Source/core/inspector/InspectorStyleSheet.cpp OwnPtr<Vector<unsigned> > endings = lineEndings(); lineEndings 1184 Source/core/inspector/InspectorStyleSheet.cpp simpleSelector->setRange(buildSourceRangeObject(range, lineEndings().get())); lineEndings 1274 Source/core/inspector/InspectorStyleSheet.cpp return buildSourceRangeObject(sourceData->ruleHeaderRange, lineEndings().get()); lineEndings 200 Source/core/inspector/InspectorStyleSheet.h PassOwnPtr<Vector<unsigned> > lineEndings(); lineEndings 51 Source/wtf/text/TextPosition.cpp OrdinalNumber TextPosition::toOffset(const Vector<unsigned>& lineEndings) lineEndings 53 Source/wtf/text/TextPosition.cpp unsigned lineStartOffset = m_line != OrdinalNumber::first() ? lineEndings.at(m_line.zeroBasedInt() - 1) + 1 : 0; lineEndings 57 Source/wtf/text/TextPosition.cpp TextPosition TextPosition::fromOffsetAndLineEndings(unsigned offset, const Vector<unsigned>& lineEndings) lineEndings 59 Source/wtf/text/TextPosition.cpp const unsigned* foundLineEnding = std::lower_bound(lineEndings.begin(), lineEndings.end(), offset); lineEndings 60 Source/wtf/text/TextPosition.cpp int lineIndex = foundLineEnding - &lineEndings.at(0); lineEndings 61 Source/wtf/text/TextPosition.cpp unsigned lineStartOffset = lineIndex > 0 ? lineEndings.at(lineIndex - 1) + 1 : 0; lineEndings 86 Source/wtf/text/TextPosition.h WTF_EXPORT PassOwnPtr<Vector<unsigned> > lineEndings(const String&); lineEndings 94 Source/wtf/text/TextPosition.h using WTF::lineEndings;