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

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitTextChecker.cpp50 static void checkSpellingOfStringCallback(uint64_t /* tag */, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void* clientInfo) argument
52 toTextChecker(clientInfo)->checkSpellingOfString(toImpl(text)->string(), *misspellingLocation, *misspellingLength);
113 void WebKitTextChecker::checkSpellingOfString(const String& string, int& misspellingLocation, int& misspellingLength) argument
115 m_textChecker->checkSpellingOfString(string, misspellingLocation, misspellingLength);
H A DWebKitTextChecker.h45 void checkSpellingOfString(const String& string, int& misspellingLocation, int& misspellingLength);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/efl/
H A DTextCheckerEfl.cpp169 int32_t misspellingLength = 0; local
170 checkSpellingOfString(spellDocumentTag, text.substring(offset, lengthStrip - offset), misspellingLocation, misspellingLength);
171 if (!misspellingLength)
177 misspellingResult.length = misspellingLength;
179 offset += misspellingLocation + misspellingLength;
194 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, StringView text, int32_t& misspellingLocation, int32_t& misspellingLength) argument
197 WebTextChecker::shared()->client().checkSpellingOfString(spellDocumentTag, text.toStringWithoutCopying(), misspellingLocation, misspellingLength);
203 UNUSED_PARAM(misspellingLength);
H A DTextCheckerClientEfl.cpp162 void TextCheckerClientEfl::checkSpellingOfStringCallback(uint64_t tag, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void* clientInfo) argument
166 textCheckerClient->clientCallbacks().string_spelling_check(tag, WKEinaSharedString(text), misspellingLocation, misspellingLength);
168 textCheckerClient->m_textCheckerEnchant->checkSpellingOfString(toWTFString(text), *misspellingLocation, *misspellingLength); local
H A DTextCheckerClientEfl.h72 static void checkSpellingOfStringCallback(uint64_t, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void*);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebTextCheckerClient.cpp94 void WebTextCheckerClient::checkSpellingOfString(uint64_t tag, const String& text, int32_t& misspellingLocation, int32_t& misspellingLength) argument
97 misspellingLength = 0;
102 m_client.checkSpellingOfString(tag, toAPI(text.impl()), &misspellingLocation, &misspellingLength, m_client.base.clientInfo);
H A DTextChecker.h72 static void checkSpellingOfString(int64_t spellDocumentTag, StringView text, int32_t& misspellingLocation, int32_t& misspellingLength);
H A DWebTextCheckerClient.h54 void checkSpellingOfString(uint64_t tag, const String& text, int32_t& misspellingLocation, int32_t& misspellingLength);
H A DWebPageProxy.h1143 void checkSpellingOfString(const String& text, int32_t& misspellingLocation, int32_t& misspellingLength);
H A DWebPageProxy.cpp3910 void WebPageProxy::checkSpellingOfString(const String& text, int32_t& misspellingLocation, int32_t& misspellingLength) argument
3912 TextChecker::checkSpellingOfString(spellDocumentTag(), text, misspellingLocation, misspellingLength); local
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/gtk/
H A DTextCheckerGtk.cpp96 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, StringView text, int32_t& misspellingLocation, int32_t& misspellingLength) argument
98 WebTextChecker::shared()->client().checkSpellingOfString(spellDocumentTag, text.toStringWithoutCopying(), misspellingLocation, misspellingLength);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKTextChecker.h43 typedef void (*WKTextCheckerCheckSpellingOfString)(uint64_t tag, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void *clientInfo);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/tests/
H A Dtest_ewk2_text_checker.cpp140 static void onSpellingCheck(uint64_t tag, const char* text, int32_t* misspellingLocation, int32_t* misspellingLength) argument
146 ASSERT_TRUE(misspellingLength);
151 *misspellingLength = strlen(expectedMisspelledWord);
165 static void onSpellingForKnownWord(uint64_t, const char* text, int32_t* misspellingLocation, int32_t* misspellingLength) argument
170 ASSERT_TRUE(misspellingLength);
173 *misspellingLength = 0;
/macosx-10.10.1/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebEditorClient.h104 virtual void checkSpellingOfString(StringView, int* misspellingLocation, int* misspellingLength) override;
H A DWebEditorClient.cpp661 void WebEditorClient::checkSpellingOfString(StringView text, int* misspellingLocation, int* misspellingLength) argument
664 *misspellingLength = 0;
671 ed->checkSpellingOfString(m_webView, text.upconvertedCharacters(), text.length(), misspellingLocation, misspellingLength);
/macosx-10.10.1/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebEditorClient.h153 virtual void checkSpellingOfString(StringView, int* misspellingLocation, int* misspellingLength) override;
212 inline void WebEditorClient::checkSpellingOfString(StringView, int* misspellingLocation, int* misspellingLength) argument
H A DWebEditorClient.mm906 void WebEditorClient::checkSpellingOfString(StringView text, int* misspellingLocation, int* misspellingLength)
918 if (misspellingLength)
919 *misspellingLength = range.length;
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DIWebEditingDelegate.idl179 HRESULT checkSpellingOfString([in] IWebView* view, [in] LPCTSTR text, [in] int length, [out] int* misspellingLocation, [out] int* misspellingLength);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebEditorClient.h139 virtual void checkSpellingOfString(StringView, int* misspellingLocation, int* misspellingLength) override;
H A DWebEditorClient.cpp441 void WebEditorClient::checkSpellingOfString(StringView text, int* misspellingLocation, int* misspellingLength) argument
448 *misspellingLength = resultLength;
/macosx-10.10.1/WebKit-7600.1.25/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp469 void EditorClientWinCE::checkSpellingOfString(StringView, int* misspellingLocation, int* misspellingLength) argument

Completed in 287 milliseconds