/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
D | SpellCheckClient.cpp | 84 …ph(const WebString& text, WebTextCheckingTypeMask mask, WebVector<WebTextCheckingResult>* webResul… in checkTextOfParagraph() 86 vector<WebTextCheckingResult> results; in checkTextOfParagraph() 96 WebTextCheckingResult result; in checkTextOfParagraph() 136 vector<WebTextCheckingResult> results; in finishLastTextCheck() 148 …results.push_back(WebTextCheckingResult(WebTextDecorationTypeSpelling, offset + misspelledPosition… in finishLastTextCheck()
|
D | MockGrammarCheck.h | 39 struct WebTextCheckingResult; 52 …tic bool checkGrammarOfString(const blink::WebString&, std::vector<blink::WebTextCheckingResult>*);
|
D | MockGrammarCheck.cpp | 44 bool MockGrammarCheck::checkGrammarOfString(const WebString& text, vector<WebTextCheckingResult>* r… in checkGrammarOfString() 76 …results->push_back(WebTextCheckingResult(WebTextDecorationTypeGrammar, offset + grammarErrors[i].l… in checkGrammarOfString()
|
D | MockSpellCheck.cpp | 129 bool MockSpellCheck::isMultiWordMisspelling(const WebString& text, vector<WebTextCheckingResult>* r… in isMultiWordMisspelling() 132 …results->push_back(WebTextCheckingResult(WebTextDecorationTypeSpelling, 0, 6, WebString("Hello"))); in isMultiWordMisspelling() 133 …results->push_back(WebTextCheckingResult(WebTextDecorationTypeSpelling, 7, 5, WebString("world"))); in isMultiWordMisspelling()
|
D | MockSpellCheck.h | 71 …iWordMisspelling(const blink::WebString& text, std::vector<blink::WebTextCheckingResult>* results);
|
D | SpellCheckClient.h | 56 …link::WebString&, blink::WebTextCheckingTypeMask, blink::WebVector<blink::WebTextCheckingResult>*);
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebTextCheckingResult.h | 45 struct WebTextCheckingResult { struct 46 WebTextCheckingResult() in WebTextCheckingResult() function 54 …WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString&…
|
D | WebTextCheckingCompletion.h | 38 struct WebTextCheckingResult; 44 virtual void didFinishCheckingText(const WebVector<WebTextCheckingResult>&) = 0;
|
D | WebSpellCheckClient.h | 42 struct WebTextCheckingResult; 61 WebVector<WebTextCheckingResult>* results) { } in checkTextOfParagraph()
|
/external/chromium/chrome/common/ |
D | spellcheck_messages.h | 14 IPC_ENUM_TRAITS(WebKit::WebTextCheckingResult::Error) 16 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebTextCheckingResult) 33 std::vector<WebKit::WebTextCheckingResult>)
|
/external/chromium_org/chrome/renderer/spellchecker/ |
D | spellcheck.cc | 25 using blink::WebTextCheckingResult; 200 WebVector<WebTextCheckingResult>* results) { in SpellCheckParagraph() 204 std::vector<WebTextCheckingResult> textcheck_results; in SpellCheckParagraph() 229 textcheck_results.push_back(WebTextCheckingResult( in SpellCheckParagraph() 341 WebVector<blink::WebTextCheckingResult> results; in PerformSpellCheck() 353 WebVector<WebTextCheckingResult>* textcheck_results) { in CreateTextCheckingResults() 358 std::vector<WebTextCheckingResult> list; in CreateTextCheckingResults() 374 list.push_back(WebTextCheckingResult( in CreateTextCheckingResults()
|
D | spellcheck_provider_test.cc | 24 const blink::WebVector<blink::WebTextCheckingResult>& results) { in didFinishCheckingText() 78 std::vector<blink::WebTextCheckingResult> results; in OnCallSpellingService() 79 results.push_back(blink::WebTextCheckingResult( in OnCallSpellingService()
|
D | spellcheck.h | 26 struct WebTextCheckingResult; 81 blink::WebVector<blink::WebTextCheckingResult>* results); 107 blink::WebVector<blink::WebTextCheckingResult>* textcheck_results);
|
D | spellcheck_provider.cc | 25 using blink::WebTextCheckingResult; 70 last_results_.assign(blink::WebVector<blink::WebTextCheckingResult>()); in RequestTextChecking() 151 blink::WebVector<blink::WebTextCheckingResult>* results) { in checkTextOfParagraph() 227 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; in OnRespondSpellingService() 274 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; in OnRespondTextCheck() 347 blink::WebVector<blink::WebTextCheckingResult> results(result_size); in SatisfyRequestFromCache()
|
D | spellcheck_provider.h | 23 struct WebTextCheckingResult; 79 blink::WebVector<blink::WebTextCheckingResult>* results) OVERRIDE; 120 blink::WebVector<blink::WebTextCheckingResult> last_results_;
|
D | spellcheck_provider_test.h | 29 const blink::WebVector<blink::WebTextCheckingResult>& results) OVERRIDE;
|
D | spellcheck_unittest.cc | 90 blink::WebVector<blink::WebTextCheckingResult> results; in TestSpellCheckParagraph() 117 const blink::WebVector<blink::WebTextCheckingResult>& results) in didFinishCheckingText() 128 blink::WebVector<blink::WebTextCheckingResult> last_results_; 1124 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; in TEST_F() 1144 blink::WebVector<blink::WebTextCheckingResult> textcheck_results; in TEST_F()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebTextCheckingCompletionImpl.cpp | 44 static Vector<TextCheckingResult> toCoreResults(const WebVector<WebTextCheckingResult>& results) in toCoreResults() 52 void WebTextCheckingCompletionImpl::didFinishCheckingText(const WebVector<WebTextCheckingResult>& r… in didFinishCheckingText()
|
D | WebTextCheckingCompletionImpl.h | 49 virtual void didFinishCheckingText(const WebVector<WebTextCheckingResult>&) OVERRIDE;
|
D | WebTextCheckingResult.cpp | 40 WebTextCheckingResult::operator TextCheckingResult() const in operator TextCheckingResult()
|
D | SpellCheckerClientImpl.cpp | 184 WebVector<WebTextCheckingResult> webResults; in checkGrammarOfString()
|
D | web.gypi | 243 'WebTextCheckingResult.cpp',
|
D | webkit.target.linux-x86.mk | 253 third_party/WebKit/Source/web/WebTextCheckingResult.cpp \
|
/external/chromium/chrome/browser/ |
D | spellcheck_message_filter_browsertest.cc | 61 std::vector<WebKit::WebTextCheckingResult> sent_results; in IN_PROC_BROWSER_TEST_F() 69 WebKit::WebTextCheckingResult::ErrorSpelling); in IN_PROC_BROWSER_TEST_F()
|
D | spellchecker_mac.mm | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCheckingResult.h" 52 std::vector<WebKit::WebTextCheckingResult> check_results; 65 check_results.push_back(WebKit::WebTextCheckingResult( 66 WebKit::WebTextCheckingResult::ErrorSpelling,
|