Searched refs:misspellingLocation (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
115 *misspellingLocation = start;
119 *misspellingLocation = -1;
/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...]
/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/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.h102 virtual void checkSpellingOfString(const UChar*, int length, int* misspellingLocation,
/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.h101 int* misspellingLocation,
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.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
648 *misspellingLocation = -1;
656 ed->checkSpellingOfString(m_webView, text, length, misspellingLocation, misspellingLength);
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.h129 /* [out] */ int *misspellingLocation,
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/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
395 *misspellingLocation = resultLocation;
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);
H A DWebEditorClient.mm725 void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)
730 if (misspellingLocation) {
733 *misspellingLocation = -1;
735 *misspellingLocation = range.location;

Completed in 1270 milliseconds

12