OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebTextCheckingResult
(Results
1 - 25
of
29
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/public/web/
WebTextCheckingCompletion.h
38
struct
WebTextCheckingResult
;
44
virtual void didFinishCheckingText(const WebVector<
WebTextCheckingResult
>&) = 0;
WebTextCheckingResult.h
45
struct
WebTextCheckingResult
{
46
WebTextCheckingResult
()
54
WebTextCheckingResult
(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0)
WebSpellCheckClient.h
42
struct
WebTextCheckingResult
;
61
WebVector<
WebTextCheckingResult
>* results) { }
/external/chromium_org/third_party/WebKit/Source/testing/runner/
MockGrammarCheck.h
39
struct
WebTextCheckingResult
;
52
static bool checkGrammarOfString(const blink::WebString&, std::vector<blink::
WebTextCheckingResult
>*);
MockGrammarCheck.cpp
36
#include "public/web/
WebTextCheckingResult
.h"
44
bool MockGrammarCheck::checkGrammarOfString(const WebString& text, vector<
WebTextCheckingResult
>* results)
76
results->push_back(
WebTextCheckingResult
(WebTextDecorationTypeGrammar, offset + grammarErrors[i].location, grammarErrors[i].length));
SpellCheckClient.cpp
37
#include "public/web/
WebTextCheckingResult
.h"
84
void SpellCheckClient::checkTextOfParagraph(const WebString& text, WebTextCheckingTypeMask mask, WebVector<
WebTextCheckingResult
>* webResults)
86
vector<
WebTextCheckingResult
> results;
96
WebTextCheckingResult
result;
136
vector<
WebTextCheckingResult
> results;
148
results.push_back(
WebTextCheckingResult
(WebTextDecorationTypeSpelling, offset + misspelledPosition, misspelledLength, suggestions.isEmpty() ? WebString() : suggestions[0]));
MockSpellCheck.h
37
#include "public/web/
WebTextCheckingResult
.h"
71
bool isMultiWordMisspelling(const blink::WebString& text, std::vector<blink::
WebTextCheckingResult
>* results);
SpellCheckClient.h
56
virtual void checkTextOfParagraph(const blink::WebString&, blink::WebTextCheckingTypeMask, blink::WebVector<blink::
WebTextCheckingResult
>*);
MockSpellCheck.cpp
129
bool MockSpellCheck::isMultiWordMisspelling(const WebString& text, vector<
WebTextCheckingResult
>* results)
132
results->push_back(
WebTextCheckingResult
(WebTextDecorationTypeSpelling, 0, 6, WebString("Hello")));
133
results->push_back(
WebTextCheckingResult
(WebTextDecorationTypeSpelling, 7, 5, WebString("world")));
/external/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingCompletionImpl.cpp
35
#include "
WebTextCheckingResult
.h"
44
static Vector<TextCheckingResult> toCoreResults(const WebVector<
WebTextCheckingResult
>& results)
52
void WebTextCheckingCompletionImpl::didFinishCheckingText(const WebVector<
WebTextCheckingResult
>& results)
WebTextCheckingCompletionImpl.h
49
virtual void didFinishCheckingText(const WebVector<
WebTextCheckingResult
>&) OVERRIDE;
WebTextCheckingResult.cpp
32
#include "
WebTextCheckingResult
.h"
40
WebTextCheckingResult
::operator TextCheckingResult() const
SpellCheckerClientImpl.cpp
32
#include "
WebTextCheckingResult
.h"
184
WebVector<
WebTextCheckingResult
> webResults;
webkit.target.darwin-arm.mk
253
third_party/WebKit/Source/web/
WebTextCheckingResult
.cpp \
webkit.target.darwin-mips.mk
253
third_party/WebKit/Source/web/
WebTextCheckingResult
.cpp \
webkit.target.darwin-x86.mk
253
third_party/WebKit/Source/web/
WebTextCheckingResult
.cpp \
/external/chromium/chrome/common/
spellcheck_messages.h
10
#include "third_party/WebKit/Source/WebKit/chromium/public/
WebTextCheckingResult
.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/
spellcheck_provider_test.cc
24
const blink::WebVector<blink::
WebTextCheckingResult
>& results) {
78
std::vector<blink::
WebTextCheckingResult
> results;
79
results.push_back(blink::
WebTextCheckingResult
(
spellcheck.h
26
struct
WebTextCheckingResult
;
81
blink::WebVector<blink::
WebTextCheckingResult
>* results);
98
// Creates a list of
WebTextCheckingResult
objects (used by WebKit) from a
107
blink::WebVector<blink::
WebTextCheckingResult
>* textcheck_results);
spellcheck_provider.h
23
struct
WebTextCheckingResult
;
79
blink::WebVector<blink::
WebTextCheckingResult
>* results) OVERRIDE;
120
blink::WebVector<blink::
WebTextCheckingResult
> last_results_;
spellcheck_provider_test.h
16
#include "third_party/WebKit/public/web/
WebTextCheckingResult
.h"
29
const blink::WebVector<blink::
WebTextCheckingResult
>& results) OVERRIDE;
spellcheck.cc
20
#include "third_party/WebKit/public/web/
WebTextCheckingResult
.h"
25
using blink::
WebTextCheckingResult
;
200
WebVector<
WebTextCheckingResult
>* results) {
204
std::vector<
WebTextCheckingResult
> textcheck_results;
229
textcheck_results.push_back(
WebTextCheckingResult
(
341
WebVector<blink::
WebTextCheckingResult
> results;
353
WebVector<
WebTextCheckingResult
>* textcheck_results) {
358
std::vector<
WebTextCheckingResult
> list;
374
list.push_back(
WebTextCheckingResult
(
spellcheck_provider.cc
18
#include "third_party/WebKit/public/web/
WebTextCheckingResult
.h"
25
using blink::
WebTextCheckingResult
;
70
last_results_.assign(blink::WebVector<blink::
WebTextCheckingResult
>());
151
blink::WebVector<blink::
WebTextCheckingResult
>* results) {
227
blink::WebVector<blink::
WebTextCheckingResult
> textcheck_results;
274
blink::WebVector<blink::
WebTextCheckingResult
> textcheck_results;
347
blink::WebVector<blink::
WebTextCheckingResult
> results(result_size);
spellcheck_unittest.cc
18
#include "third_party/WebKit/public/web/
WebTextCheckingResult
.h"
90
blink::WebVector<blink::
WebTextCheckingResult
> results;
117
const blink::WebVector<blink::
WebTextCheckingResult
>& results)
128
blink::WebVector<blink::
WebTextCheckingResult
> last_results_;
[
all
...]
/external/chromium/chrome/browser/
spellcheck_message_filter_browsertest.cc
13
#include "third_party/WebKit/Source/WebKit/chromium/public/
WebTextCheckingResult
.h"
61
std::vector<WebKit::
WebTextCheckingResult
> sent_results;
69
WebKit::
WebTextCheckingResult
::ErrorSpelling);
Completed in 1054 milliseconds
1
2