HomeSort by relevance Sort by last modified time
    Searched refs:DocumentMarker (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/Source/WebCore/dom/
DocumentMarkerController.h 30 #include "DocumentMarker.h"
48 void addMarker(Range*, DocumentMarker::MarkerType, String description = String());
49 void addMarker(Node*, DocumentMarker);
51 bool hasMarkers(Range*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers());
57 void removeMarkers(Range*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker);
58 void removeMarkers(Node*, unsigned startOffset, int length, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker);
60 void removeMarkers(DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers())
    [all...]
DocumentMarkerController.cpp 41 inline bool DocumentMarkerController::possiblyHasMarkers(DocumentMarker::MarkerTypes types)
60 void DocumentMarkerController::addMarker(Range* range, DocumentMarker::MarkerType type, String description)
66 DocumentMarker marker = {type, textPiece->startOffset(exception), textPiece->endOffset(exception), description, false};
71 void DocumentMarkerController::removeMarkers(Range* range, DocumentMarker::MarkerTypes markerTypes, RemovePartiallyOverlappingMarkerOrNot shouldRemovePartiallyOverlappingMarker)
88 void DocumentMarkerController::addMarker(Node* node, DocumentMarker newMarker)
104 Vector<DocumentMarker>& markers = vectorPair->first;
113 DocumentMarker marker = markers[i];
129 DocumentMarker marker = markers[j];
160 if (!possiblyHasMarkers(DocumentMarker::AllMarkers()))
172 Vector<DocumentMarker>& markers = vectorPair->first
    [all...]
DocumentMarker.h 35 struct DocumentMarker {
88 bool operator==(const DocumentMarker& o) const
93 bool operator!=(const DocumentMarker& o) const
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionController.cpp 51 static const Vector<DocumentMarker::MarkerType>& markerTypesForAutocorrection()
53 DEFINE_STATIC_LOCAL(Vector<DocumentMarker::MarkerType>, markerTypesForAutoCorrection, ());
55 markerTypesForAutoCorrection.append(DocumentMarker::Replacement);
56 markerTypesForAutoCorrection.append(DocumentMarker::CorrectionIndicator);
57 markerTypesForAutoCorrection.append(DocumentMarker::SpellCheckingExemption);
58 markerTypesForAutoCorrection.append(DocumentMarker::Autocorrected);
63 static const Vector<DocumentMarker::MarkerType>& markerTypesForReplacement()
65 DEFINE_STATIC_LOCAL(Vector<DocumentMarker::MarkerType>, markerTypesForReplacement, ());
67 markerTypesForReplacement.append(DocumentMarker::Replacement);
68 markerTypesForReplacement.append(DocumentMarker::SpellCheckingExemption)
    [all...]
SpellingCorrectionController.h 40 #include "DocumentMarker.h"
94 void applyCorrectionPanelInfo(const Vector<DocumentMarker::MarkerType>&) UNLESS_ENABLED({})
123 bool shouldStartTimeFor(const DocumentMarker& marker, int endOffset) const
125 return (((marker.type == DocumentMarker::Replacement && !marker.description.isNull())
126 || marker.type == DocumentMarker::Spelling) && static_cast<int>(marker.endOffset) == endOffset);
SpellChecker.cpp 142 static DocumentMarker::MarkerType toMarkerType(TextCheckingType type)
145 return DocumentMarker::Spelling;
147 return DocumentMarker::Grammar;
Editor.cpp     [all...]
Editor.h 31 #include "DocumentMarker.h"
386 bool selectionStartHasMarkerFor(DocumentMarker::MarkerType, int from, int length) const;
432 void applyCorrectionPanelInfo(const Vector<DocumentMarker::MarkerType>& markerTypesToAdd);
TextCheckingHelper.cpp 209 misspellingRange->startContainer(ec)->document()->markers()->addMarker(misspellingRange.get(), DocumentMarker::Spelling);
360 // Optionally add a DocumentMarker for each detail in the range.
380 badGrammarRange->startContainer(ec)->document()->markers()->addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->userDescription);
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineFlowBox.cpp 96 Vector<DocumentMarker> markers = document->markers()->markersForNode(textRenderer->node());
98 Vector<DocumentMarker>::iterator markerEnd = markers.end();
99 for (Vector<DocumentMarker>::iterator markerIt = markers.begin(); markerIt != markerEnd; ++markerIt) {
100 const DocumentMarker& marker = *markerIt;
103 if (marker.type != DocumentMarker::TextMatch)
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.h 33 struct DocumentMarker;
170 void paintSpellingOrGrammarMarker(GraphicsContext*, const FloatPoint& boxOrigin, const DocumentMarker&, RenderStyle*, const Font&, bool grammar);
171 void paintTextMatchMarker(GraphicsContext*, const FloatPoint& boxOrigin, const DocumentMarker&, RenderStyle*, const Font&);
172 void computeRectForReplacementMarker(const DocumentMarker&, RenderStyle*, const Font&);
InlineTextBox.cpp     [all...]
HitTestResult.cpp 203 DocumentMarker* marker = m_innerNonSharedNode->document()->markers()->markerContainingPoint(m_point, DocumentMarker::Grammar);
219 DocumentMarker* marker = m_innerNonSharedNode->document()->markers()->markerContainingPoint(m_point, DocumentMarker::Replacement);
  /external/webkit/Source/WebKit/chromium/src/
AssertMatchingEnums.cpp 39 #include "DocumentMarker.h"
419 COMPILE_ASSERT_MATCHING_ENUM(WebTextCheckingResult::ErrorSpelling, DocumentMarker::Spelling);
420 COMPILE_ASSERT_MATCHING_ENUM(WebTextCheckingResult::ErrorGrammar, DocumentMarker::Grammar);
WebFrameImpl.cpp 84 #include "DocumentMarker.h"
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 236 Vector<IntRect> frameRects = document->markers()->renderedRectsForMarkers(DocumentMarker::TextMatch);
WebPage.cpp     [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.mm 402 document->markers()->removeMarkers(DocumentMarker::Grammar);
412 document->markers()->removeMarkers(DocumentMarker::Spelling);
    [all...]
WebHTMLView.mm     [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 680 return core(frame)->editor()->selectionStartHasMarkerFor(DocumentMarker::Spelling, from, length);
  /external/webkit/Source/WebKit/win/
WebFrame.cpp 1031 *result = coreFrame->editor()->selectionStartHasMarkerFor(DocumentMarker::Spelling, from, length);
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_frame.cpp 794 sd->frame->document()->markers()->removeMarkers(WebCore::DocumentMarker::TextMatch);
860 Vector<WebCore::IntRect> intRects = sd->frame->document()->markers()->renderedRectsForMarkers(WebCore::DocumentMarker::TextMatch);
    [all...]
  /external/webkit/Source/WebCore/page/
Page.cpp 560 frame->document()->markers()->removeMarkers(DocumentMarker::TextMatch);
FrameView.cpp     [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 491 milliseconds

1 2