Home | History | Annotate | Download | only in editing

Lines Matching refs:replacedString

159     m_correctionPanelInfo.replacedString = plainText(rangeToReplace.get());
163 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, replacement, Vector<String>());
243 description = m_correctionPanelInfo.replacedString;
296 m_correctionPanelInfo.replacedString = plainText(m_correctionPanelInfo.rangeToBeReplaced.get());
299 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, m_correctionPanelInfo.replacementString, Vector<String>());
303 if (plainText(m_correctionPanelInfo.rangeToBeReplaced.get()) != m_correctionPanelInfo.replacedString)
307 textChecker()->getGuessesForWord(m_correctionPanelInfo.replacedString, paragraphText, suggestions);
317 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, topSuggestion, suggestions);
331 if (currentWord != m_correctionPanelInfo.replacedString)
342 replacedRange->startContainer()->document()->markers()->addMarker(replacedRange, DocumentMarker::RejectedCorrection, m_correctionPanelInfo.replacedString);
400 m_correctionPanelInfo.replacedString = currentWord;
430 void SpellingCorrectionController::recordAutocorrectionResponseReversed(const String& replacedString, const String& replacementString)
432 client()->recordAutocorrectionResponse(EditorClient::AutocorrectionReverted, replacedString, replacementString);
435 void SpellingCorrectionController::recordAutocorrectionResponseReversed(const String& replacedString, PassRefPtr<Range> replacementRange)
437 recordAutocorrectionResponseReversed(replacedString, plainText(replacementRange.get()));
446 void SpellingCorrectionController::markCorrection(PassRefPtr<Range> replacedRange, const String& replacedString)
453 markers->addMarker(replacedRange.get(), markerType, replacedString);