Searched defs:misspellingLength (Results 1 - 12 of 12) sorted by relevance

/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.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/WebKit/gtk/WebCoreSupport/
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/Tools/DumpRenderTree/win/
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/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...]
H A DEditor.cpp1854 int misspellingLength = 0; local
1855 textChecker()->checkSpellingOfString(selectedString.characters(), length, &misspellingLocation, &misspellingLength);
1858 if (misspellingLength != length)
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp456 void EditorClientWinCE::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) argument
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp512 void EditorClientWx::checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength) argument
/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;
/external/webkit/Source/WebKit/chromium/src/
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.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/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp2465 void WebPageProxy::checkSpellingOfString(const String& text, int32_t& misspellingLocation, int32_t& misspellingLength) argument
2467 TextChecker::checkSpellingOfString(spellDocumentTag(), text.characters(), text.length(), misspellingLocation, misspellingLength); local

Completed in 264 milliseconds