Searched refs:badGrammarLength (Results 1 - 22 of 22) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextCheckerClient.h49 virtual void checkGrammarOfString(const UChar*, int length, Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength) = 0;
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DTextCheckerClientGtk.h50 virtual void checkGrammarOfString(const UChar*, int length, WTF::Vector<WebCore::GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength);
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DTextCheckerClientQt.h49 virtual void checkGrammarOfString(const UChar*, int length, Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength);
H A DTextCheckerClientQt.cpp88 void TextCheckerClientQt::checkGrammarOfString(const UChar* buffer, int length, Vector<GrammarDetail>& details, int* badGrammarLocation, int* badGrammarLength) argument
97 m_spellChecker->checkGrammarOfString(text, qGrammarDetails, badGrammarLocation, badGrammarLength);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DTextChecker.h73 static void checkGrammarOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, Vector<WebCore::GrammarDetail>&, int32_t& badGrammarLocation, int32_t& badGrammarLength);
H A DWebTextCheckerClient.h49 void checkGrammarOfString(uint64_t tag, const String& text, Vector<WebCore::GrammarDetail>&, int32_t& badGrammarLocation, int32_t& badGrammarLength);
H A DWebTextCheckerClient.cpp102 void WebTextCheckerClient::checkGrammarOfString(uint64_t tag, const String& text, Vector<WebCore::GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) argument
108 m_client.checkGrammarOfString(tag, toAPI(text.impl()), &wkGrammarDetailsRef, &badGrammarLocation, &badGrammarLength, m_client.clientInfo);
H A DWebPageProxy.h976 void checkGrammarOfString(const String& text, Vector<WebCore::GrammarDetail>&, int32_t& badGrammarLocation, int32_t& badGrammarLength);
H A DWebPageProxy.cpp3474 void WebPageProxy::checkGrammarOfString(const String& text, Vector<GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) argument
3476 TextChecker::checkGrammarOfString(spellDocumentTag(), text.characters(), text.length(), grammarDetails, badGrammarLocation, badGrammarLength); local
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextCheckingHelper.cpp53 int badGrammarLength = 0; local
55 client->checkGrammarOfString(text + checkLocation, checkLength, badGrammarDetails, &badGrammarLocation, &badGrammarLength);
56 if (!badGrammarLength)
59 ASSERT(0 < badGrammarLength && badGrammarLocation + badGrammarLength <= checkLength);
63 badGrammar.length = badGrammarLength;
67 checkLocation += (badGrammarLocation + badGrammarLength);
68 checkLength -= (badGrammarLocation + badGrammarLength);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/gtk/
H A DTextCheckerGtk.cpp101 void TextChecker::checkGrammarOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, Vector<WebCore::GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) argument
103 WebTextChecker::shared()->client().checkGrammarOfString(spellDocumentTag, String(text, length), grammarDetails, badGrammarLocation, badGrammarLength);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKTextChecker.h44 typedef void (*WKTextCheckerCheckGrammarOfString)(uint64_t tag, WKStringRef text, WKArrayRef* grammarDetails, int32_t* badGrammarLocation, int32_t* badGrammarLength, const void *clientInfo);
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DEditorClientEfl.h142 virtual void checkGrammarOfString(const UChar*, int length, WTF::Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength);
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebkitplatformplugin.h162 virtual void checkGrammarOfString(const QString&, QList<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength) = 0;
/macosx-10.9.5/WebKit-7537.78.2/qt/examples/platformplugin/
H A Dqwebkitplatformplugin.h162 virtual void checkGrammarOfString(const QString&, QList<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength) = 0;
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebEditorClient.h107 virtual void checkGrammarOfString(const UChar*, int length, Vector<WebCore::GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength);
H A DWebEditorClient.cpp685 void WebEditorClient::checkGrammarOfString(const UChar* text, int length, Vector<GrammarDetail>& details, int* badGrammarLocation, int* badGrammarLength) argument
689 *badGrammarLength = 0;
697 if (FAILED(ed->checkGrammarOfString(m_webView, text, length, &enumDetailsObj, badGrammarLocation, badGrammarLength)))
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebEditingDelegate.idl180 HRESULT checkGrammarOfString([in] IWebView* view, [in] LPCTSTR text, [in] int length, [out] IEnumWebGrammarDetails** grammarDetails, [out] int* badGrammarLocation, [out] int* badGrammarLength);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebEditorClient.h138 virtual void checkGrammarOfString(const UChar*, int length, WTF::Vector<WebCore::GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength) OVERRIDE;
H A DWebEditorClient.mm767 void WebEditorClient::checkGrammarOfString(const UChar* text, int length, Vector<GrammarDetail>& details, int* badGrammarLocation, int* badGrammarLength)
776 if (badGrammarLength)
777 *badGrammarLength = range.length;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/
H A DWebEditorClient.h144 virtual void checkGrammarOfString(const UChar*, int length, Vector<WebCore::GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength) OVERRIDE;
H A DWebEditorClient.cpp456 void WebEditorClient::checkGrammarOfString(const UChar* text, int length, Vector<WebCore::GrammarDetail>& grammarDetails, int* badGrammarLocation, int* badGrammarLength) argument
464 *badGrammarLength = resultLength;

Completed in 284 milliseconds