/external/webkit/Source/WebKit2/UIProcess/win/ |
WebGrammarDetail.h | 42 static PassRefPtr<WebGrammarDetail> create(const WebCore::GrammarDetail&); 49 const WebCore::GrammarDetail& grammarDetail() { return m_grammarDetail; } 53 WebGrammarDetail(const WebCore::GrammarDetail&); 57 WebCore::GrammarDetail m_grammarDetail;
|
WebTextCheckerClient.h | 49 void checkGrammarOfString(uint64_t tag, const String& text, Vector<WebCore::GrammarDetail>&, int32_t& badGrammarLocation, int32_t& badGrammarLength); 53 void updateSpellingUIWithGrammarString(uint64_t tag, const String& badGrammarPhrase, const WebCore::GrammarDetail&);
|
WebGrammarDetail.cpp | 40 PassRefPtr<WebGrammarDetail> WebGrammarDetail::create(const WebCore::GrammarDetail& grammarDetail) 42 return adoptRef(new WebGrammarDetail(grammarDetail)); 67 WebGrammarDetail::WebGrammarDetail(const WebCore::GrammarDetail& grammarDetail) 68 : m_grammarDetail(grammarDetail)
|
TextCheckerWin.cpp | 100 void TextChecker::checkGrammarOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, Vector<WebCore::GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) 120 void TextChecker::updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const GrammarDetail& grammarDetail) 122 WebTextChecker::shared()->client().updateSpellingUIWithGrammarString(spellDocumentTag, badGrammarPhrase, grammarDetail);
|
WebTextCheckerClient.cpp | 102 void WebTextCheckerClient::checkGrammarOfString(uint64_t tag, const String& text, Vector<WebCore::GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) 113 grammarDetails.append(wkGrammarDetails->at<WebGrammarDetail>(i)->grammarDetail()); 140 void WebTextCheckerClient::updateSpellingUIWithGrammarString(uint64_t tag, const String& badGrammarPhrase, const WebCore::GrammarDetail& grammarDetail) 145 m_client.updateSpellingUIWithGrammarString(tag, toAPI(badGrammarPhrase.impl()), toAPI(grammarDetail), m_client.clientInfo);
|
/external/webkit/Source/WebCore/platform/text/ |
TextCheckerClient.h | 41 struct GrammarDetail { 52 Vector<GrammarDetail> details; 64 virtual void checkGrammarOfString(const UChar*, int length, Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength) = 0;
|
/external/webkit/Source/WebKit2/UIProcess/API/C/win/ |
WKAPICastWin.h | 47 inline ProxyingRefPtr<WebGrammarDetail> toAPI(const WebCore::GrammarDetail& grammarDetail) 49 return ProxyingRefPtr<WebGrammarDetail>(WebGrammarDetail::create(grammarDetail));
|
/external/webkit/Source/WebKit2/UIProcess/ |
TextChecker.h | 68 static void checkGrammarOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, Vector<WebCore::GrammarDetail>&, int32_t& badGrammarLocation, int32_t& badGrammarLength); 72 static void updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const WebCore::GrammarDetail&);
|
/external/webkit/Source/WebKit2/UIProcess/gtk/ |
TextCheckerGtk.cpp | 77 void TextChecker::checkGrammarOfString(int64_t, const UChar*, uint32_t, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&) 98 void TextChecker::updateSpellingUIWithGrammarString(int64_t, const String&, const GrammarDetail&)
|
/external/webkit/Source/WebKit2/UIProcess/qt/ |
TextCheckerQt.cpp | 78 void TextChecker::checkGrammarOfString(int64_t, const UChar*, uint32_t, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&) 99 void TextChecker::updateSpellingUIWithGrammarString(int64_t, const String&, const GrammarDetail&)
|
/external/webkit/Source/WebCore/editing/ |
TextCheckingHelper.h | 82 String findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling, int& outFirstFoundOffset, GrammarDetail& outGrammarDetail); 83 String findFirstBadGrammar(GrammarDetail& outGrammarDetail, int& outGrammarPhraseOffset, bool markAll); 84 int findFirstGrammarDetail(const Vector<GrammarDetail>& grammarDetails, int badGrammarPhraseLocation, int badGrammarPhraseLength, int startOffset, int endOffset, bool markAll);
|
TextCheckingHelper.cpp | 225 String TextCheckingHelper::findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling, int& outFirstFoundOffset, GrammarDetail& outGrammarDetail) 296 const GrammarDetail* detail = &result->details[j]; 356 int TextCheckingHelper::findFirstGrammarDetail(const Vector<GrammarDetail>& grammarDetails, int badGrammarPhraseLocation, int /*badGrammarPhraseLength*/, int startOffset, int endOffset, bool markAll) 364 const GrammarDetail* detail = &grammarDetails[i]; 403 String TextCheckingHelper::findFirstBadGrammar(GrammarDetail& outGrammarDetail, int& outGrammarPhraseOffset, bool markAll) 423 Vector<GrammarDetail> grammarDetails; 480 GrammarDetail grammarDetail; 481 String badGrammarPhrase = const_cast<TextCheckingHelper*>(this)->findFirstBadGrammar(grammarDetail, grammarPhraseOffset, false); 491 ASSERT(grammarDetail.location >= 0 && grammarDetail.length > 0) [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
TextCheckerClientEnchant.h | 50 virtual void checkGrammarOfString(const UChar*, int length, WTF::Vector<WebCore::GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength);
|
EditorClientGtk.h | 132 virtual void updateSpellingUIWithGrammarString(const WTF::String&, const WebCore::GrammarDetail&);
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
EditorClientAndroid.h | 110 virtual void checkGrammarOfString(const UChar*, int length, WTF::Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength); 111 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail& detail);
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
EditorClientEfl.h | 109 virtual void checkGrammarOfString(const UChar*, int length, WTF::Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength); 110 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail&);
|
/external/webkit/Source/WebKit/haiku/WebCoreSupport/ |
EditorClientHaiku.h | 105 virtual void checkGrammarOfString(const UChar*, int length, Vector<GrammarDetail>&, 107 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail&);
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
EditorClientQt.h | 104 virtual void checkGrammarOfString(const UChar*, int length, Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength); 105 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail&);
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
EditorClientWx.h | 107 virtual void checkGrammarOfString(const UChar*, int length, Vector<GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength); 108 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail& detail);
|
/external/webkit/Source/WebCore/page/ |
EditorClient.h | 74 struct GrammarDetail; 173 virtual void updateSpellingUIWithGrammarString(const String&, const GrammarDetail& detail) = 0;
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebEditorClient.h | 104 virtual void checkGrammarOfString(const UChar*, int length, Vector<WebCore::GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength); 105 virtual void updateSpellingUIWithGrammarString(const WTF::String&, const WebCore::GrammarDetail& detail);
|
/external/webkit/Source/WebKit/wince/WebCoreSupport/ |
EditorClientWinCE.h | 96 virtual void checkGrammarOfString(const UChar*, int, WTF::Vector<WebCore::GrammarDetail>&, int*, int*); 97 virtual void updateSpellingUIWithGrammarString(const WTF::String&, const WebCore::GrammarDetail&);
|
/external/webkit/Source/WebKit/chromium/src/ |
EditorClientImpl.h | 104 WTF::Vector<WebCore::GrammarDetail>&, 108 virtual void updateSpellingUIWithGrammarString(const WTF::String&, const WebCore::GrammarDetail&);
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebEditorClient.h | 132 virtual void checkGrammarOfString(const UChar*, int length, WTF::Vector<WebCore::GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength); 134 virtual void updateSpellingUIWithGrammarString(const WTF::String&, const WebCore::GrammarDetail&);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebEditorClient.h | 137 virtual void checkGrammarOfString(const UChar*, int length, Vector<WebCore::GrammarDetail>&, int* badGrammarLocation, int* badGrammarLength); 141 virtual void updateSpellingUIWithGrammarString(const String&, const WebCore::GrammarDetail& detail);
|