HomeSort by relevance Sort by last modified time
    Searched refs:misspellingLocation (Results 1 - 17 of 17) sorted by null

  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 101 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation,
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.h 100 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
  /external/webkit/WebKit/wx/WebKitSupport/
EditorClientWx.h 104 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
EditorClientWx.cpp 500 void EditorClientWx::checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength)
  /external/webkit/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 99 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
  /external/webkit/WebCore/page/
EditorClient.h 168 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength) = 0;
  /external/webkit/WebKit/chromium/src/
EditorClientImpl.h 98 int* misspellingLocation,
EditorClientImpl.cpp 834 int* misspellingLocation,
852 if (misspellingLocation)
853 *misspellingLocation = spellLocation;
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 111 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
EditorClientGtk.cpp 594 void EditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)
638 *misspellingLocation = start;
642 *misspellingLocation = -1;
  /external/webkit/WebKit/mac/WebCoreSupport/
WebEditorClient.h 121 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
WebEditorClient.mm 636 void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)
641 if (misspellingLocation) {
644 *misspellingLocation = -1;
646 *misspellingLocation = range.location;
  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.h 103 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
WebEditorClient.cpp 642 void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)
644 *misspellingLocation = -1;
652 ed->checkSpellingOfString(m_webView, text, length, misspellingLocation, misspellingLength);
  /external/webkit/WebKitTools/DumpRenderTree/win/
EditingDelegate.h 129 /* [out] */ int *misspellingLocation,
  /external/webkit/WebCore/editing/
Editor.cpp     [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebEditingDelegate.idl 179 HRESULT checkSpellingOfString([in] IWebView* view, [in] LPCTSTR text, [in] int length, [out] int* misspellingLocation, [out] int* misspellingLength);

Completed in 126 milliseconds