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

1 2

  /external/webkit/Source/WebCore/platform/text/
TextCheckerClient.h 62 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength) = 0;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
TextCheckerClientEnchant.h 48 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
TextCheckerClientEnchant.cpp 74 void TextCheckerClientEnchant::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)
116 *misspellingLength = wordLength;
120 *misspellingLength = 0;
  /external/webkit/Source/WebKit2/UIProcess/win/
WebTextCheckerClient.h 48 void checkSpellingOfString(uint64_t tag, const String& text, int32_t& misspellingLocation, int32_t& misspellingLength);
TextCheckerWin.cpp 95 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength)
97 WebTextChecker::shared()->client().checkSpellingOfString(spellDocumentTag, String(text, length), misspellingLocation, misspellingLength);
WebTextCheckerClient.cpp 94 void WebTextCheckerClient::checkSpellingOfString(uint64_t tag, const String& text, int32_t& misspellingLocation, int32_t& misspellingLength)
99 m_client.checkSpellingOfString(tag, toAPI(text.impl()), &misspellingLocation, &misspellingLength, m_client.clientInfo);
  /external/webkit/Source/WebCore/editing/
TextCheckingHelper.cpp 182 int misspellingLength = 0;
183 m_client->textChecker()->checkSpellingOfString(chars, len, &misspellingLocation, &misspellingLength);
188 ASSERT(misspellingLength >= 0);
190 ASSERT(!misspellingLength || misspellingLocation >= 0);
192 ASSERT(misspellingLength <= len);
193 ASSERT(misspellingLocation + misspellingLength <= len);
195 if (misspellingLocation >= 0 && misspellingLength > 0 && misspellingLocation < len && misspellingLength <= len && misspellingLocation + misspellingLength <= len) {
198 RefPtr<Range> misspellingRange = TextIterator::subrange(m_range.get(), currentChunkOffset + misspellingLocation, misspellingLength);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
TextChecker.h 67 static void checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 108 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 107 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 103 int* misspellingLength);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 102 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 106 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKTextChecker.h 43 typedef void (*WKTextCheckerCheckSpellingOfString)(uint64_t tag, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void *clientInfo);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 102 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
WebEditorClient.cpp 646 void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)
649 *misspellingLength = 0;
656 ed->checkSpellingOfString(m_webView, text, length, misspellingLocation, misspellingLength);
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.h 102 int* misspellingLength);
EditorClientImpl.cpp 852 int* misspellingLength)
871 if (misspellingLength)
872 *misspellingLength = spellLength;
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 130 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 135 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
WebEditorClient.cpp 388 void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)
396 *misspellingLength = resultLength;
  /external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.h 130 /* [out] */ int *misspellingLength);
EditingDelegate.cpp 378 /* [out] */ int* misspellingLength)
418 *misspellingLength = word.size();
  /external/webkit/Source/WebKit/win/Interfaces/
IWebEditingDelegate.idl 179 HRESULT checkSpellingOfString([in] IWebView* view, [in] LPCTSTR text, [in] int length, [out] int* misspellingLocation, [out] int* misspellingLength);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 456 void EditorClientWinCE::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)

Completed in 234 milliseconds

1 2