OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:misspelledOffset
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/testing/runner/
MockSpellCheck.h
59
// position of the first invalid word to
misspelledOffset
, and the length of
62
//
misspelledOffset
and 2 to misspelledLength, respectively.
63
bool spellCheckWord(const blink::WebString& text, int*
misspelledOffset
, int* misspelledLength);
MockSpellCheck.cpp
59
bool MockSpellCheck::spellCheckWord(const WebString& text, int*
misspelledOffset
, int* misspelledLength)
61
BLINK_ASSERT(
misspelledOffset
);
68
*
misspelledOffset
= 0;
101
*
misspelledOffset
= wordOffset + skippedLength;
SpellCheckClient.cpp
78
void SpellCheckClient::spellCheck(const WebString& text, int&
misspelledOffset
, int& misspelledLength, WebVector<WebString>* optionalSuggestions)
81
m_spellcheck.spellCheckWord(text, &
misspelledOffset
, &misspelledLength);
/external/chromium_org/third_party/WebKit/public/web/
WebSpellCheckClient.h
47
// text contains a misspelled word, then upon return
misspelledOffset
53
int&
misspelledOffset
,
/external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp
321
int
misspelledOffset
, misspelledLength;
322
m_webView->spellCheckClient()->spellCheck(data.misspelledWord,
misspelledOffset
, misspelledLength, &data.dictionarySuggestions);
331
int
misspelledOffset
, misspelledLength;
333
data.misspelledWord,
misspelledOffset
, misspelledLength,
Completed in 221 milliseconds