Searched refs:misspellingLocation (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/platform/text/enchant/
H A DTextCheckerEnchant.h43 void checkSpellingOfString(const String&, int& misspellingLocation, int& misspellingLength);
53 void checkSpellingOfWord(const CString&, int start, int end, int& misspellingLocation, int& misspellingLength);
H A DTextCheckerEnchant.cpp66 void TextCheckerEnchant::checkSpellingOfWord(const CString& word, int start, int end, int& misspellingLocation, int& misspellingLength) argument
75 misspellingLocation = -1;
81 misspellingLocation = start;
85 void TextCheckerEnchant::checkSpellingOfString(const String& string, int& misspellingLocation, int& misspellingLength) argument
88 misspellingLocation = -1;
102 checkSpellingOfWord(utf8String, start, end, misspellingLocation, misspellingLength);
/macosx-10.9.5/WebKit2-7537.78.2/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);
111 void WebKitTextChecker::checkSpellingOfString(const String& string, int& misspellingLocation, int& misspellingLength) argument
113 m_textChecker->checkSpellingOfString(string, misspellingLocation, misspellingLength);
H A DWebKitTextChecker.h42 void checkSpellingOfString(const String& string, int& misspellingLocation, int& misspellingLength);
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DTextCheckerClientGtk.cpp62 void TextCheckerClientGtk::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) argument
65 webkit_spell_checker_check_spelling_of_string(m_spellChecker.get(), textAsString.utf8().data(), misspellingLocation, misspellingLength);
H A DTextCheckerClientGtk.h48 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextCheckingHelper.cpp84 int misspellingLocation = -1; local
86 client->checkSpellingOfString(text + start + wordStart, wordLength, &misspellingLocation, &misspellingLength);
88 ASSERT(0 <= misspellingLocation && misspellingLocation <= wordLength);
89 ASSERT(0 < misspellingLength && misspellingLocation + misspellingLength <= wordLength);
92 misspelling.location = start + wordStart + misspellingLocation;
251 int misspellingLocation = -1; local
253 m_client->textChecker()->checkSpellingOfString(chars, len, &misspellingLocation, &misspellingLength);
259 ASSERT(misspellingLocation >= -1);
260 ASSERT(!misspellingLength || misspellingLocation >
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DTextCheckerEfl.cpp168 int32_t misspellingLocation = -1; local
170 checkSpellingOfString(spellDocumentTag, text + offset, lengthStrip - offset, misspellingLocation, misspellingLength);
176 misspellingResult.location = offset + misspellingLocation;
179 offset += misspellingLocation + misspellingLength;
194 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength) argument
197 WebTextChecker::shared()->client().checkSpellingOfString(spellDocumentTag, String(text, length), misspellingLocation, misspellingLength);
202 UNUSED_PARAM(misspellingLocation);
H A DTextCheckerClientEfl.cpp159 void TextCheckerClientEfl::checkSpellingOfStringCallback(uint64_t tag, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void* clientInfo) argument
163 textCheckerClient->clientCallbacks().string_spelling_check(tag, WKEinaSharedString(text), misspellingLocation, misspellingLength);
165 textCheckerClient->m_textCheckerEnchant->checkSpellingOfString(toWTFString(text), *misspellingLocation, *misspellingLength); local
H A DTextCheckerClientEfl.h71 static void checkSpellingOfStringCallback(uint64_t, WKStringRef text, int32_t* misspellingLocation, int32_t* misspellingLength, const void*);
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextCheckerClient.h47 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength) = 0;
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DTextCheckerClientQt.h47 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
H A DTextCheckerClientQt.cpp79 void TextCheckerClientQt::checkSpellingOfString(const UChar* buffer, int length, int* misspellingLocation, int* misspellingLength) argument
85 m_spellChecker->checkSpellingOfString(text, misspellingLocation, misspellingLength);
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitspellcheckerenchant.cpp74 static void checkSpellingOfString(WebKitSpellChecker* checker, const char* string, int* misspellingLocation, int* misspellingLength) argument
77 priv->textCheckerEnchant->checkSpellingOfString(String::fromUTF8(string), *misspellingLocation, *misspellingLength); local
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DTextChecker.h72 static void checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& 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);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/gtk/
H A DTextCheckerGtk.cpp96 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength) argument
98 WebTextChecker::shared()->client().checkSpellingOfString(spellDocumentTag, String(text, length), misspellingLocation, misspellingLength);
/macosx-10.9.5/WebKit2-7537.78.2/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.9.5/WebKit2-7537.78.2/UIProcess/API/efl/tests/
H A Dtest_ewk2_text_checker.cpp152 static void onSpellingCheck(uint64_t tag, const char* text, int32_t* misspellingLocation, int32_t* misspellingLength) argument
157 ASSERT_TRUE(misspellingLocation);
162 *misspellingLocation = 0;
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DEditorClientEfl.h140 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebkitplatformplugin.h156 virtual void checkSpellingOfString(const QString& word, int* misspellingLocation, int* misspellingLength) = 0;
/macosx-10.9.5/WebKit-7537.78.2/qt/examples/platformplugin/
H A Dqwebkitplatformplugin.h156 virtual void checkSpellingOfString(const QString& word, int* misspellingLocation, int* misspellingLength) = 0;
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebEditorClient.h105 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
H A DWebEditorClient.cpp665 void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) argument
667 *misspellingLocation = -1;
675 ed->checkSpellingOfString(m_webView, text, length, misspellingLocation, misspellingLength);

Completed in 125 milliseconds

12