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

1 2

  /external/webkit/Source/WebKit/mac/WebCoreSupport/
CorrectionPanel.h 41 void show(WebView*, WebCore::CorrectionPanelInfo::PanelType, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings);
44 static void recordAutocorrectionResponse(WebView*, NSCorrectionResponse, const String& replacedString, const String& replacementString);
CorrectionPanel.mm 58 void CorrectionPanel::show(WebView* view, CorrectionPanelInfo::PanelType type, const FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings)
65 NSString* replacedStringAsNSString = replacedString;
113 void CorrectionPanel::recordAutocorrectionResponse(WebView* view, NSCorrectionResponse response, const String& replacedString, const String& replacementString)
115 [[NSSpellChecker sharedSpellChecker] recordResponse:response toCorrection:replacementString forWord:replacedString language:nil inSpellDocumentWithTag:[view spellCheckerDocumentTag]];
WebEditorClient.h 143 virtual void showCorrectionPanel(WebCore::CorrectionPanelInfo::PanelType, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings);
146 virtual void recordAutocorrectionResponse(AutocorrectionResponseType, const String& replacedString, const String& replacementString);
WebEditorClient.mm     [all...]
  /external/webkit/Source/WebKit2/UIProcess/mac/
CorrectionPanel.h 42 void show(WKView*, WebCore::CorrectionPanelInfo::PanelType, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings);
45 static void recordAutocorrectionResponse(WKView*, NSCorrectionResponse, const String& replacedString, const String& replacementString);
CorrectionPanel.mm 64 void CorrectionPanel::show(WKView* view, CorrectionPanelInfo::PanelType type, const FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings)
71 NSString* replacedStringAsNSString = replacedString;
120 void CorrectionPanel::recordAutocorrectionResponse(WKView* view, NSCorrectionResponse response, const String& replacedString, const String& replacementString)
122 [[NSSpellChecker sharedSpellChecker] recordResponse:response toCorrection:replacementString forWord:replacedString language:nil inSpellDocumentWithTag:[view spellCheckerDocumentTag]];
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionController.h 63 String replacedString;
114 void recordAutocorrectionResponseReversed(const String& replacedString, PassRefPtr<Range> replacementRange) UNLESS_ENABLED({ UNUSED_PARAM(replacedString); UNUSED_PARAM(replacementRange); })
116 void markCorrection(PassRefPtr<Range> replacedRange, const String& replacedString) UNLESS_ENABLED({ UNUSED_PARAM(replacedRange); UNUSED_PARAM(replacedString); })
121 void recordAutocorrectionResponseReversed(const String& replacedString, const String& replacementString);
SpellingCorrectionController.cpp 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);
    [all...]
Editor.cpp     [all...]
  /external/webkit/Source/WebCore/page/
EditorClient.h 167 virtual void showCorrectionPanel(CorrectionPanelInfo::PanelType, const FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacmentString, const Vector<String>& alternativeReplacementStrings) = 0;
170 virtual void recordAutocorrectionResponse(AutocorrectionResponseType, const String& replacedString, const String& replacementString) = 0;
ContextMenuController.cpp 413 frame->editor()->changeBackToReplacedString(m_hitTestResult.replacedString());
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PageClientImpl.h 113 virtual void showCorrectionPanel(WebCore::CorrectionPanelInfo::PanelType, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings);
116 virtual void recordAutocorrectionResponse(WebCore::EditorClient::AutocorrectionResponseType, const String& replacedString, const String& replacementString);
PageClientImpl.mm 409 void PageClientImpl::showCorrectionPanel(CorrectionPanelInfo::PanelType type, const FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings)
414 m_correctionPanel.show(m_wkView, type, boundingBoxOfReplacedString, replacedString, replacementString, alternativeReplacementStrings);
434 void PageClientImpl::recordAutocorrectionResponse(EditorClient::AutocorrectionResponseType responseType, const String& replacedString, const String& replacementString)
438 CorrectionPanel::recordAutocorrectionResponse(m_wkView, response, replacedString, replacementString);
  /external/webkit/Source/WebKit2/UIProcess/
PageClient.h 140 virtual void showCorrectionPanel(WebCore::CorrectionPanelInfo::PanelType, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings) = 0;
143 virtual void recordAutocorrectionResponse(WebCore::EditorClient::AutocorrectionResponseType, const String& replacedString, const String& replacementString) = 0;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebEditorClientMac.mm 248 void WebEditorClient::showCorrectionPanel(WebCore::CorrectionPanelInfo::PanelType type, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings)
250 m_page->send(Messages::WebPageProxy::ShowCorrectionPanel(type, boundingBoxOfReplacedString, replacedString, replacementString, alternativeReplacementStrings));
265 void WebEditorClient::recordAutocorrectionResponse(EditorClient::AutocorrectionResponseType responseType, const String& replacedString, const String& replacementString)
267 m_page->send(Messages::WebPageProxy::RecordAutocorrectionResponse(responseType, replacedString, replacementString));
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
Matcher2Test.java 224 String replacedString = "me";
226 Pattern pat = Pattern.compile(replacedString);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 150 virtual void showCorrectionPanel(WebCore::CorrectionPanelInfo::PanelType, const WebCore::FloatRect& boundingBoxOfReplacedString, const String& replacedString, const String& replacementString, const Vector<String>& alternativeReplacementStrings);
153 virtual void recordAutocorrectionResponse(AutocorrectionResponseType, const String& replacedString, const String& replacementString);
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Matcher2Test.java 222 String replacedString = "me";
224 Pattern pat = Pattern.compile(replacedString);
  /external/webkit/Source/WebCore/platform/
DefaultLocalizationStrategy.h 119 virtual String contextMenuItemTagChangeBack(const String& replacedString);
LocalizationStrategy.h 120 virtual String contextMenuItemTagChangeBack(const String& replacedString) = 0;
DefaultLocalizationStrategy.cpp 500 String DefaultLocalizationStrategy::contextMenuItemTagChangeBack(const String& replacedString)
503 return replacedString;
    [all...]
LocalizedStrings.cpp 379 String contextMenuItemTagChangeBack(const String& replacedString)
381 return platformStrategies()->localizationStrategy()->contextMenuItemTagChangeBack(replacedString);
LocalizedStrings.h 116 String contextMenuItemTagChangeBack(const String& replacedString);
  /external/webkit/Source/WebCore/rendering/
HitTestResult.h 79 String replacedString() const;
  /cts/tests/tests/text/src/android/text/cts/
TextUtilsTest.java     [all...]

Completed in 171 milliseconds

1 2