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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarkerController.h 30 #include "core/dom/DocumentMarker.h"
53 void addMarker(Range*, DocumentMarker::MarkerType);
54 void addMarker(Range*, DocumentMarker::MarkerType, const String& description);
55 void addMarker(Range*, DocumentMarker::MarkerType, const String& description, uint32_t hash);
59 bool hasMarkers(Range*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers());
66 void removeMarkers(Range*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker);
67 void removeMarkers(Node*, unsigned startOffset, int length, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers(), RemovePartiallyOverlappingMarkerOrNot = DoNotRemovePartiallyOverlappingMarker)
    [all...]
DocumentMarker.cpp 32 #include "core/dom/DocumentMarker.h"
100 DocumentMarker::DocumentMarker()
108 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset)
116 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description)
125 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash)
134 DocumentMarker::DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch
    [all...]
DocumentMarker.h 37 class DocumentMarker {
94 DocumentMarker();
95 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset);
96 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description);
97 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash);
98 DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
99 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails>);
119 bool operator==(const DocumentMarker& o) const
124 bool operator!=(const DocumentMarker& o) const
137 inline DocumentMarkerDetails* DocumentMarker::details() cons
    [all...]
RenderedDocumentMarker.h 30 #include "core/dom/DocumentMarker.h"
34 class RenderedDocumentMarker : public DocumentMarker {
37 explicit RenderedDocumentMarker(const DocumentMarker& marker)
38 : DocumentMarker(marker), m_renderedRect(invalidMarkerRect())
65 DEFINE_TYPE_CASTS(RenderedDocumentMarker, DocumentMarker, marker, true, true);
DocumentMarkerController.cpp 45 DocumentMarker::MarkerTypeIndex MarkerTypeToMarkerIndex(DocumentMarker::MarkerType type)
48 case DocumentMarker::Spelling:
49 return DocumentMarker::SpellingMarkerIndex;
50 case DocumentMarker::Grammar:
51 return DocumentMarker::GramarMarkerIndex;
52 case DocumentMarker::TextMatch:
53 return DocumentMarker::TextMatchMarkerIndex;
54 case DocumentMarker::InvisibleSpellcheck:
55 return DocumentMarker::InvisibleSpellcheckMarkerIndex
    [all...]
DocumentMarkerControllerTest.cpp 83 markerController().addMarker(range.get(), DocumentMarker::Spelling);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.h 84 virtual void paintDocumentMarker(GraphicsContext*, const FloatPoint&, DocumentMarker*, RenderStyle*, const Font&, bool) OVERRIDE FINAL;
85 virtual void paintTextMatchMarker(GraphicsContext*, const FloatPoint&, DocumentMarker*, RenderStyle*, const Font&) OVERRIDE FINAL;
SVGInlineTextBox.cpp 710 void SVGInlineTextBox::paintDocumentMarker(GraphicsContext*, const FloatPoint&, DocumentMarker*, RenderStyle*, const Font&, bool)
715 void SVGInlineTextBox::paintTextMatchMarker(GraphicsContext* context, const FloatPoint&, DocumentMarker* marker, RenderStyle* style, const Font& font)
718 if (marker->type() != DocumentMarker::TextMatch)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellCheckRequester.cpp 71 const WillBeHeapVector<DocumentMarker*>& markers = checkingRange->ownerDocument().markers().markersInRange(checkingRange.get(), DocumentMarker::SpellCheckClientMarkers());
250 DocumentMarker::MarkerTypes markers = DocumentMarker::SpellCheckClientMarkers();
252 markers.remove(DocumentMarker::Spelling);
254 markers.remove(DocumentMarker::Grammar);
SpellChecker.cpp 149 m_frame.document()->markers().removeMarkers(selectedRange.get(), DocumentMarker::Spelling);
295 m_frame.document()->markers().addMarker(badGrammarRange.get(), DocumentMarker::Grammar, grammarDetail.userDescription);
305 m_frame.document()->markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling);
324 m_frame.document()->markers().removeMarkers(selectedRange.get(), DocumentMarker::MisspellingMarkers());
574 misspellingRange->startContainer()->document().markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling, result->replacement, result->hash);
582 badGrammarRange->startContainer()->document().markers().addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->userDescription, result->hash);
588 invisibleSpellcheckRange->startContainer()->document().markers().addMarker(invisibleSpellcheckRange.get(), DocumentMarker::InvisibleSpellcheck, result->replacement, result->hash);
    [all...]
SpellChecker.h 30 #include "core/dom/DocumentMarker.h"
77 bool selectionStartHasMarkerFor(DocumentMarker::MarkerType, int from, int length) const;
TextCheckingHelper.cpp 274 misspellingRange->startContainer()->document().markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling);
416 // Optionally add a DocumentMarker for each detail in the range.
435 badGrammarRange->startContainer()->document().markers().addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->userDescription);
CompositeEditCommand.cpp 500 static void copyMarkers(const WillBeHeapVector<DocumentMarker*>& markerPointers, Vector<DocumentMarker>& markers)
512 Vector<DocumentMarker> markers;
513 copyMarkers(markerController.markersInRange(Range::create(document(), node.get(), offset, node.get(), offset + count).get(), DocumentMarker::AllMarkers()), markers);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.h 34 class DocumentMarker;
187 // These functions both paint markers and update the DocumentMarker's renderedRect.
188 virtual void paintDocumentMarker(GraphicsContext*, const FloatPoint& boxOrigin, DocumentMarker*, RenderStyle*, const Font&, bool grammar);
189 virtual void paintTextMatchMarker(GraphicsContext*, const FloatPoint& boxOrigin, DocumentMarker*, RenderStyle*, const Font&);
InlineTextBox.cpp     [all...]
HitTestResult.cpp 209 DocumentMarker* marker = m_innerNonSharedNode->document().markers().markerContainingPoint(m_hitTestLocation.point(), DocumentMarker::Grammar);
368 makeRange(pos, pos).get(), DocumentMarker::MisspellingMarkers()).size() > 0;
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 156 static String selectMisspellingAsync(LocalFrame* selectedFrame, DocumentMarker& marker)
164 WillBeHeapVector<DocumentMarker*> markers = selectedFrame->document()->markers().markersInRange(selectionRange.get(), DocumentMarker::MisspellingMarkers());
322 DocumentMarker marker;
SpellCheckerClientImpl.cpp 102 toLocalFrame(frame)->document()->markers().removeMarkers(DocumentMarker::MisspellingMarkers());
WebLocalFrameImpl.cpp 85 #include "core/dom/DocumentMarker.h"
    [all...]
TextFinder.cpp 35 #include "core/dom/DocumentMarker.h"
186 m_ownerFrame.frame()->document()->markers().removeMarkers(DocumentMarker::TextMatch);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 47 #include "core/dom/DocumentMarker.h"
147 static bool markerTypesFrom(const String& markerType, DocumentMarker::MarkerTypes& result)
150 result = DocumentMarker::AllMarkers();
152 result = DocumentMarker::Spelling;
154 result = DocumentMarker::Grammar;
156 result = DocumentMarker::TextMatch;
782 DocumentMarker::MarkerTypes markerTypes = 0;
799 DocumentMarker::MarkerType markerType = DocumentMarker::TextMatch;
800 WillBeHeapVector<DocumentMarker*> markers = node->document().markers().markersFor(node, markerType)
    [all...]
Internals.h 50 class DocumentMarker;
332 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp 100 using WebCore::DocumentMarker;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.cpp 313 toLocalFrame(frame)->document()->markers().removeMarkers(DocumentMarker::TextMatch);
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 65 third_party/WebKit/Source/core/dom/DocumentMarker.cpp \

Completed in 376 milliseconds

1 2