Home
last modified time | relevance | path

Searched refs:spellChecker (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DTypingCommand.cpp164 …document.frame()->spellChecker().updateMarkersForWordsAffectedByEditing(isSpaceOrNewline(text[0])); in insertText()
295 if (!frame->spellChecker().isContinuousSpellCheckingEnabled()) in markMisspellingsAfterTyping()
298 frame->spellChecker().cancelCheck(); in markMisspellingsAfterTyping()
310 frame->spellChecker().markMisspellingsAfterTypingToWord(p1, endingSelection()); in markMisspellingsAfterTyping()
410 frame->spellChecker().updateMarkersForWordsAffectedByEditing(false); in deleteKeyPressed()
514 frame->spellChecker().updateMarkersForWordsAffectedByEditing(false); in forwardDeleteKeyPressed()
DEditor.cpp501 … if (m_frame.selection().isInPasswordField() || !spellChecker().isContinuousSpellCheckingEnabled()) in replaceSelectionWithFragment()
503spellChecker().chunkAndMarkAllMisspellingsAndBadGrammar(m_frame.selection().rootEditableElement()); in replaceSelectionWithFragment()
538 spellChecker().updateMarkersForWordsAffectedByEditing(true); in respondToChangedContents()
789 spellChecker().updateMarkersForWordsAffectedByEditing(isSpaceOrNewline(text[0])); in insertTextWithoutSendingTextEvent()
855 spellChecker().updateMarkersForWordsAffectedByEditing(true); in cut()
892 spellChecker().updateMarkersForWordsAffectedByEditing(false); in paste()
907 spellChecker().updateMarkersForWordsAffectedByEditing(false); in pasteAsPlainText()
1288 spellChecker().respondToChangedSelection(oldSelection, options); in respondToChangedSelection()
1293 SpellChecker& Editor::spellChecker() const in spellChecker() function in WebCore::Editor
1295 return m_frame.spellChecker(); in spellChecker()
DSpellCheckRequester.cpp136 return m_frame.spellChecker().textChecker(); in client()
236 m_frame.spellChecker().markAndReplaceFor(m_processingRequest, results); in didCheck()
DEditor.h276 SpellChecker& spellChecker() const;
DCompositeEditCommand.cpp1224 document().frame()->spellChecker().clearMisspellingsAndBadGrammar(endingSelection()); in moveParagraphs()
1257 document().frame()->spellChecker().markMisspellingsAndBadGrammar(endingSelection()); in moveParagraphs()
DFrameSelection.cpp1468 m_frame->spellChecker().spellCheckAfterBlur(); in focusedOrActiveStateChanged()
DEditorCommand.cpp472 frame.spellChecker().ignoreSpelling(); in executeIgnoreSpelling()
/external/chromium_org/third_party/WebKit/Source/web/
DSpellCheckerClientImpl.cpp64 if (frame->spellChecker().isSpellCheckingEnabledInFocusedNode()) in shouldSpellcheckByDefault()
112 frame->spellChecker().didBeginEditing(rootEditableElement); in toggleContinuousSpellChecking()
DWebLocalFrameImpl.cpp1073 frame()->spellChecker().advanceToNextMisspelling(false); in executeCommand()
1075 frame()->spellChecker().showSpellingGuessPanel(); in executeCommand()
1099 frame()->spellChecker().showSpellingGuessPanel(); in executeCommand()
1116 frame()->spellChecker().toggleContinuousSpellChecking(); in enableContinuousSpellChecking()
1121 return frame()->spellChecker().isContinuousSpellCheckingEnabled(); in isContinuousSpellCheckingEnabled()
1128 frame()->spellChecker().requestTextChecking(*webElement.constUnwrap<Element>()); in requestTextChecking()
1538 … return frame()->spellChecker().selectionStartHasMarkerFor(DocumentMarker::Spelling, from, length); in selectionStartHasSpellingMarkerFor()
DContextMenuClientImpl.cpp335 … toLocalFrame(m_webView->focusedWebCoreFrame())->spellChecker().isContinuousSpellCheckingEnabled(); in showContextMenu()
337 …if (toLocalFrame(m_webView->focusedWebCoreFrame())->spellChecker().isSpellCheckingEnabledInFocused… in showContextMenu()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocalFrame.h96 SpellChecker& spellChecker() const;
209 inline SpellChecker& LocalFrame::spellChecker() const in spellChecker() function
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.cpp167 return &document->frame()->spellChecker().spellCheckRequester(); in spellCheckRequester()
193 if (!page->deprecatedLocalMainFrame()->spellChecker().isContinuousSpellCheckingEnabled()) in resetToConsistentState()
194 page->deprecatedLocalMainFrame()->spellChecker().toggleContinuousSpellChecking(); in resetToConsistentState()
1502 …return document->frame()->spellChecker().selectionStartHasMarkerFor(DocumentMarker::Spelling, from… in hasSpellingMarker()
1510 if (enabled != contextDocument()->frame()->spellChecker().isContinuousSpellCheckingEnabled()) in setContinuousSpellCheckingEnabled()
1511 contextDocument()->frame()->spellChecker().toggleContinuousSpellChecking(); in setContinuousSpellCheckingEnabled()
1585 …return document->frame()->spellChecker().selectionStartHasMarkerFor(DocumentMarker::Grammar, from,… in hasGrammarMarker()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTextAreaElement.cpp265 frame->spellChecker().didBeginEditing(this); in handleFocusEvent()
DHTMLInputElement.cpp365 document().frame()->spellChecker().didBeginEditing(this); in beginEditing()
378 frame->spellChecker().didEndEditingOnTextField(this); in endEditing()
/external/chromium_org/chrome/browser/renderer_host/
Dchrome_render_widget_host_view_mac_delegate.mm205 // changed from the spellChecker.
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp3649 frame()->spellChecker().didBeginEditing(m_focusedElement.get()); in setFocusedElement()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebFrameTest.cpp4484 frame->frame()->spellChecker().cancelCheck(); in TEST_F()