Searched defs:misspellingLocation (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
115 *misspellingLocation = start;
119 *misspellingLocation = -1;
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.cpp377 /* [out] */ int* misspellingLocation,
417 *misspellingLocation = wordStart;
373 checkSpellingOfString( IWebView* view, LPCTSTR text, int length, int* misspellingLocation, int* misspellingLength) argument
/external/webkit/Source/WebCore/editing/
H A DTextCheckingHelper.cpp181 int misspellingLocation = -1; local
183 m_client->textChecker()->checkSpellingOfString(chars, len, &misspellingLocation, &misspellingLength);
189 ASSERT(misspellingLocation >= -1);
190 ASSERT(!misspellingLength || misspellingLocation >= 0);
191 ASSERT(misspellingLocation < 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, misspellingLengt
[all...]
H A DEditor.cpp1853 int misspellingLocation = -1; local
1855 textChecker()->checkSpellingOfString(selectedString.characters(), length, &misspellingLocation, &misspellingLength);
/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
395 *misspellingLocation = resultLocation;
/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.cpp851 int* misspellingLocation,
869 if (misspellingLocation)
870 *misspellingLocation = spellLocation;
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
648 *misspellingLocation = -1;
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 441 milliseconds