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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarkerController.h 30 #include "core/dom/DocumentMarker.h"
52 void addMarker(Range*, DocumentMarker::MarkerType);
53 void addMarker(Range*, DocumentMarker::MarkerType, const String& description);
54 void addMarker(Range*, DocumentMarker::MarkerType, const String& description, uint32_t hash);
55 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType);
56 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType, PassRefPtr<DocumentMarkerDetails>);
60 bool hasMarkers(Range*, DocumentMarker::MarkerTypes = DocumentMarker::AllMarkers());
67 void removeMarkers(Range*, 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...]
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 inline RenderedDocumentMarker* toRenderedDocumentMarker(DocumentMarker* marker)
DocumentMarker.h 39 class DocumentMarker {
96 DocumentMarker();
97 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset);
98 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description);
99 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash);
100 DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
101 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails>);
121 bool operator==(const DocumentMarker& o) const
126 bool operator!=(const DocumentMarker& o) const
139 inline DocumentMarkerDetails* DocumentMarker::details() cons
    [all...]
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/
SVGInlineFlowBox.cpp 93 Vector<DocumentMarker*> markers = document.markers()->markersFor(textRenderer->node());
95 Vector<DocumentMarker*>::iterator markerEnd = markers.end();
96 for (Vector<DocumentMarker*>::iterator markerIt = markers.begin(); markerIt != markerEnd; ++markerIt) {
97 DocumentMarker* marker = *markerIt;
100 if (marker->type() != DocumentMarker::TextMatch)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellCheckRequester.cpp 71 const Vector<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 147 m_frame.document()->markers()->removeMarkers(selectedRange.get(), DocumentMarker::Spelling);
293 m_frame.document()->markers()->addMarker(badGrammarRange.get(), DocumentMarker::Grammar, grammarDetail.userDescription);
303 m_frame.document()->markers()->addMarker(misspellingRange.get(), DocumentMarker::Spelling);
352 m_frame.document()->markers()->removeMarkers(selectedRange.get(), DocumentMarker::MisspellingMarkers());
602 misspellingRange->startContainer()->document().markers()->addMarker(misspellingRange.get(), DocumentMarker::Spelling, result->replacement, result->hash);
610 badGrammarRange->startContainer()->document().markers()->addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->userDescription, result->hash);
616 invisibleSpellcheckRange->startContainer()->document().markers()->addMarker(invisibleSpellcheckRange.get(), DocumentMarker::InvisibleSpellcheck, result->replacement, result->hash);
    [all...]
SpellChecker.h 30 #include "core/dom/DocumentMarker.h"
78 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 530 static void copyMarkers(const Vector<DocumentMarker*>& markerPointers, Vector<DocumentMarker>& markers)
542 Vector<DocumentMarker> markers;
543 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 35 class DocumentMarker;
186 void paintDocumentMarker(GraphicsContext*, const FloatPoint& boxOrigin, DocumentMarker*, RenderStyle*, const Font&, bool grammar);
187 void paintTextMatchMarker(GraphicsContext*, const FloatPoint& boxOrigin, DocumentMarker*, RenderStyle*, const Font&);
InlineTextBox.cpp     [all...]
HitTestResult.cpp 224 DocumentMarker* marker = m_innerNonSharedNode->document().markers()->markerContainingPoint(m_hitTestLocation.point(), DocumentMarker::Grammar);
371 makeRange(pos, pos).get(), DocumentMarker::MisspellingMarkers()).size() > 0;
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 154 static String selectMisspellingAsync(Frame* selectedFrame, DocumentMarker& marker)
162 Vector<DocumentMarker*> markers = selectedFrame->document()->markers()->markersInRange(selectionRange.get(), DocumentMarker::MisspellingMarkers());
313 DocumentMarker marker;
SpellCheckerClientImpl.cpp 98 frame->document()->markers()->removeMarkers(DocumentMarker::MisspellingMarkers());
WebFrameImpl.cpp 117 #include "core/dom/DocumentMarker.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 54 #include "core/dom/DocumentMarker.h"
156 static bool markerTypesFrom(const String& markerType, DocumentMarker::MarkerTypes& result)
159 result = DocumentMarker::AllMarkers();
161 result = DocumentMarker::Spelling;
163 result = DocumentMarker::Grammar;
165 result = DocumentMarker::TextMatch;
813 DocumentMarker::MarkerTypes markerTypes = 0;
830 DocumentMarker::MarkerType markerType = DocumentMarker::TextMatch;
831 Vector<DocumentMarker*> markers = node->document().markers()->markersFor(node, markerType)
    [all...]
Internals.h 49 class DocumentMarker;
317 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.cpp 323 frame->document()->markers()->removeMarkers(DocumentMarker::TextMatch);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp 94 using WebCore::DocumentMarker;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 55 third_party/WebKit/Source/core/dom/DocumentMarker.cpp \
webcore_dom.target.darwin-mips.mk 55 third_party/WebKit/Source/core/dom/DocumentMarker.cpp \
webcore_dom.target.darwin-x86.mk 55 third_party/WebKit/Source/core/dom/DocumentMarker.cpp \

Completed in 1059 milliseconds

1 2