Searched refs:grammarDetails (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/gtk/
H A DTextCheckerGtk.cpp101 void TextChecker::checkGrammarOfString(int64_t spellDocumentTag, StringView text, Vector<WebCore::GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) argument
103 WebTextChecker::shared()->client().checkGrammarOfString(spellDocumentTag, text.toStringWithoutCopying(), grammarDetails, badGrammarLocation, badGrammarLength);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebTextCheckerClient.cpp105 void WebTextCheckerClient::checkGrammarOfString(uint64_t tag, const String& text, Vector<WebCore::GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) argument
119 grammarDetails.append(wkGrammarDetails->at<WebGrammarDetail>(i)->grammarDetail());
H A DWebPageProxy.cpp3915 void WebPageProxy::checkGrammarOfString(const String& text, Vector<GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) argument
3917 TextChecker::checkGrammarOfString(spellDocumentTag(), text, grammarDetails, badGrammarLocation, badGrammarLength); local
/macosx-10.10.1/WebKit2-7600.1.25/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.10.1/WebKit-7600.1.25/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.10.1/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebEditorClient.mm931 NSArray *grammarDetails;
932 NSRange range = [[NSSpellChecker sharedSpellChecker] checkGrammarOfString:text.createNSStringWithoutCopying().get() startingAt:0 language:nil wrap:NO inSpellDocumentWithTag:spellCheckerDocumentTag() details:&grammarDetails];
938 for (NSDictionary *detail in grammarDetails) {
973 NSArray *details = [incomingResult grammarDetails];
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp457 void WebEditorClient::checkGrammarOfString(StringView text, Vector<WebCore::GrammarDetail>& grammarDetails, int* badGrammarLocation, int* badGrammarLength) argument
462 Messages::WebPageProxy::CheckGrammarOfString::Reply(grammarDetails, resultLocation, resultLength));
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/mac/
H A DTextCheckerMac.mm324 NSArray *details = [incomingResult grammarDetails];

Completed in 294 milliseconds