Searched refs:misspellingLength (Results 1 - 25 of 31) sorted by relevance

12

/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DTextCheckerClientEnchant.h48 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
H A DTextCheckerClientEnchant.cpp74 void TextCheckerClientEnchant::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) argument
116 *misspellingLength = wordLength;
120 *misspellingLength = 0;
/external/webkit/Source/WebKit2/UIProcess/win/
H A DTextCheckerWin.cpp95 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength) argument
97 WebTextChecker::shared()->client().checkSpellingOfString(spellDocumentTag, String(text, length), misspellingLocation, misspellingLength);
H A DWebTextCheckerClient.h48 void checkSpellingOfString(uint64_t tag, const String& text, int32_t& misspellingLocation, int32_t& misspellingLength);
H A DWebTextCheckerClient.cpp94 void WebTextCheckerClient::checkSpellingOfString(uint64_t tag, const String& text, int32_t& misspellingLocation, int32_t& misspellingLength) argument
99 m_client.checkSpellingOfString(tag, toAPI(text.impl()), &misspellingLocation, &misspellingLength, m_client.clientInfo);
/external/webkit/Source/WebCore/editing/
H A DTextCheckingHelper.cpp182 int misspellingLength = 0; local
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/WebCore/platform/text/
H A DTextCheckerClient.h62 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength) = 0;
/external/webkit/Source/WebKit2/UIProcess/
H A DTextChecker.h67 static void checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength);
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKTextChecker.h43 typedef void (*WKTextCheckerCheckSpellingOfString)(uint64_t tag, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void *clientInfo);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DEditorClientAndroid.h108 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DEditorClientEfl.h107 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DEditorClientHaiku.h103 int* misspellingLength);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.h102 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.h106 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.h102 int* misspellingLength);
H A DEditorClientImpl.cpp852 int* misspellingLength)
871 if (misspellingLength)
872 *misspellingLength = spellLength;
850 checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) argument
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebEditorClient.h102 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
H A DWebEditorClient.cpp646 void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) argument
649 *misspellingLength = 0;
656 ed->checkSpellingOfString(m_webView, text, length, misspellingLocation, misspellingLength);
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.h130 /* [out] */ int *misspellingLength);
H A DEditingDelegate.cpp378 /* [out] */ int* misspellingLength)
418 *misspellingLength = word.size();
373 checkSpellingOfString( IWebView* view, LPCTSTR text, int length, int* misspellingLocation, int* misspellingLength) argument
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebEditingDelegate.idl179 HRESULT checkSpellingOfString([in] IWebView* view, [in] LPCTSTR text, [in] int length, [out] int* misspellingLocation, [out] int* misspellingLength);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp388 void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) argument
396 *misspellingLength = resultLength;
H A DWebEditorClient.h135 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebEditorClient.h130 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp456 void EditorClientWinCE::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) argument

Completed in 227 milliseconds

12