HomeSort by relevance Sort by last modified time
    Searched refs:replacementString (Results 1 - 25 of 29) 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)
66 NSString* replacementStringAsNSString = replacementString;
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 831 result.replacement = [incomingResult replacementString];
838 result.replacement = [incomingResult replacementString];
    [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)
72 NSString* replacementStringAsNSString = replacementString;
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]];
TextCheckerMac.mm 286 result.replacement = [incomingResult replacementString];
293 result.replacement = [incomingResult replacementString];
300 result.replacement = [incomingResult replacementString];
307 result.replacement = [incomingResult replacementString];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
CompletionProposal.java 66 Object choice, String replacementString, int replacementOffset,
69 assert replacementString != null;
79 mReplacementString = replacementString;
  /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/webkit/Source/WebCore/editing/
SpellingCorrectionController.cpp 161 m_correctionPanelInfo.replacementString = replacement;
228 applyCommand(SpellingCorrectionCommand::create(rangeToBeReplaced, m_correctionPanelInfo.replacementString));
230 RefPtr<Range> replacementRange = TextIterator::subrange(paragraphRangeContainingCorrection.get(), correctionStartOffsetInParagraph, m_correctionPanelInfo.replacementString.length());
234 if (newText != m_correctionPanelInfo.replacementString)
299 client()->showCorrectionPanel(m_correctionPanelInfo.panelType, boundingBox, m_correctionPanelInfo.replacedString, m_correctionPanelInfo.replacementString, Vector<String>());
339 m_correctionPanelInfo.replacementString = correction;
347 m_correctionPanelInfo.replacementString = correction;
404 m_correctionPanelInfo.replacementString = marker.description;
430 void SpellingCorrectionController::recordAutocorrectionResponseReversed(const String& replacedString, const String& replacementString)
432 client()->recordAutocorrectionResponse(EditorClient::AutocorrectionReverted, replacedString, replacementString);
    [all...]
SpellingCorrectionController.h 64 String replacementString;
121 void recordAutocorrectionResponseReversed(const String& replacedString, const String& replacementString);
  /external/webkit/Source/WebCore/bindings/objc/
DOMPrivate.h 76 - (void)_replaceCharactersInRange:(NSRange)targetRange withString:(NSString *)replacementString selectingFromIndex:(int)index;
DOMHTML.mm 124 - (void)_replaceCharactersInRange:(NSRange)targetRange withString:(NSString *)replacementString selectingFromIndex:(int)index
129 newValue.replace(targetRange.location, targetRange.length, replacementString);
  /external/webkit/Source/WebKit/win/Interfaces/
DOMPrivate.idl 79 - (void)_replaceCharactersInRange:(NSRange)targetRange withString:(NSString *)replacementString selectingFromIndex:(int)index;
81 HRESULT replaceCharactersInRange([in] int startTarget, [in] int endTarget, [in] BSTR replacementString, [in] int index);
  /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);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtype.java 261 final String replacementString =
267 subtypeName.toString(), replacementString != null ? replacementString : "");
  /external/webkit/Source/WebCore/page/
EditorClient.h 170 virtual void recordAutocorrectionResponse(AutocorrectionResponseType, const String& replacedString, const String& replacementString) = 0;
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiffWithMockFiles.pl 294 my ($string, $searchString, $replacementString) = @_;
295 $string =~ s/$searchString/$replacementString/g;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeLocale.java 168 final String replacementString = (Build.VERSION.SDK_INT >= /* JELLY_BEAN */ 15
177 return res.getString(nameResId, replacementString);
  /libcore/luni/src/main/java/java/lang/
String.java     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
StylesSidebarPane.js     [all...]
  /external/webkit/Source/WebKit/win/
DOMHTMLClasses.cpp     [all...]

Completed in 458 milliseconds

1 2