Searched refs:markerType (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DSVGMarkerData.h66 SVGMarkerType markerType = markerData->m_elementIndex == 1 ? StartMarker : MidMarker; local
67 markerData->m_positions.append(MarkerPosition(markerType, markerData->m_origin, markerData->currentAngle(markerType)));
/macosx-10.10/WebCore-7600.1.25/testing/
H A DInternals.cpp221 static bool markerTypesFrom(const String& markerType, DocumentMarker::MarkerTypes& result) argument
223 if (markerType.isEmpty() || equalIgnoringCase(markerType, "all"))
225 else if (equalIgnoringCase(markerType, "Spelling"))
227 else if (equalIgnoringCase(markerType, "Grammar"))
229 else if (equalIgnoringCase(markerType, "TextMatch"))
231 else if (equalIgnoringCase(markerType, "Replacement"))
233 else if (equalIgnoringCase(markerType, "CorrectionIndicator"))
235 else if (equalIgnoringCase(markerType, "RejectedCorrection"))
237 else if (equalIgnoringCase(markerType, "Autocorrecte
744 markerCountForNode(Node* node, const String& markerType, ExceptionCode& ec) argument
762 markerAt(Node* node, const String& markerType, unsigned index, ExceptionCode& ec) argument
784 markerRangeForNode(Node* node, const String& markerType, unsigned index, ExceptionCode& ec) argument
792 markerDescriptionForNode(Node* node, const String& markerType, unsigned index, ExceptionCode& ec) argument
[all...]
H A DInternals.h131 PassRefPtr<Range> markerRangeForNode(Node*, const String& markerType, unsigned index, ExceptionCode&);
132 String markerDescriptionForNode(Node*, const String& markerType, unsigned index, ExceptionCode&);
352 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, ExceptionCode&);
H A DInternals.idl80 [RaisesException] unsigned long markerCountForNode(Node node, DOMString markerType);
81 [RaisesException] Range markerRangeForNode(Node node, DOMString markerType, unsigned long index);
82 [RaisesException] DOMString markerDescriptionForNode(Node node, DOMString markerType, unsigned long index);
/macosx-10.10/WebCore-7600.1.25/editing/
H A DAlternativeTextController.cpp544 DocumentMarker::MarkerType markerType = markerTypesToAdd[i]; local
545 if (markerType == DocumentMarker::Replacement || markerType == DocumentMarker::Autocorrected)
546 markers.addMarker(replacedRange.get(), markerType, replacedString);
548 markers.addMarker(replacedRange.get(), markerType);
672 String AlternativeTextController::markerDescriptionForAppliedAlternativeText(AlternativeTextType alternativeTextType, DocumentMarker::MarkerType markerType) argument
675 if (alternativeTextType != AlternativeTextTypeReversion && alternativeTextType != AlternativeTextTypeDictationAlternatives && (markerType == DocumentMarker::Replacement || markerType == DocumentMarker::Autocorrected))
H A DEditor.cpp3552 bool Editor::selectionStartHasMarkerFor(DocumentMarker::MarkerType markerType, int from, int length) const argument
3563 if (marker->startOffset() <= startOffset && endOffset <= marker->endOffset() && marker->type() == markerType)
/macosx-10.10/WebCore-7600.1.25/dom/
H A DDocumentMarkerController.cpp352 DocumentMarker* DocumentMarkerController::markerContainingPoint(const LayoutPoint& point, DocumentMarker::MarkerType markerType) argument
354 if (!possiblyHasMarkers(markerType))
368 if (marker.type() != markerType)
424 Vector<IntRect> DocumentMarkerController::renderedRectsForMarkers(DocumentMarker::MarkerType markerType) argument
428 if (!possiblyHasMarkers(markerType))
442 if (marker.type() != markerType)
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DInlineTextBox.cpp1070 static GraphicsContext::DocumentMarkerLineStyle lineStyleForMarkerType(DocumentMarker::MarkerType markerType) argument
1072 switch (markerType) {

Completed in 211 milliseconds