OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:misspelledWord
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/text/
TextCheckerClient.h
45
virtual String getAutoCorrectSuggestionForMisspelledWord(const String&
misspelledWord
) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
SpellCheckerClientImpl.cpp
162
String SpellCheckerClientImpl::getAutoCorrectSuggestionForMisspelledWord(const String&
misspelledWord
)
169
for (size_t i = 1; i <
misspelledWord
.length(); i++) {
170
if (u_isupper(static_cast<UChar32>(
misspelledWord
[i])))
175
return m_webView->spellCheckClient()->autoCorrectWord(WebString(
misspelledWord
));
214
void SpellCheckerClientImpl::updateSpellingUIWithMisspelledWord(const String&
misspelledWord
)
217
m_webView->spellCheckClient()->updateSpellingUIWithMisspelledWord(WebString(
misspelledWord
));
ContextMenuClientImpl.cpp
116
String
misspelledWord
= selectedFrame->selectedText().stripWhiteSpace();
119
if (!
misspelledWord
.isEmpty()) {
121
if (!isASingleWord(
misspelledWord
))
123
return
misspelledWord
;
134
return
misspelledWord
; // It is empty.
137
misspelledWord
= selectedFrame->selectedText().stripWhiteSpace();
142
if (
misspelledWord
.isEmpty())
148
return
misspelledWord
;
329
data.
misspelledWord
= selectMisspellingAsync(selectedFrame, description, hash);
337
m_webView->spellCheckClient()->spellCheck(data.
misspelledWord
, misspelledOffset, misspelledLength, &data.dictionarySuggestions)
[
all
...]
/external/chromium_org/third_party/WebKit/public/web/
WebSpellCheckClient.h
72
virtual WebString autoCorrectWord(const WebString&
misspelledWord
) { return WebString(); }
WebContextMenuData.h
124
WebString
misspelledWord
;
129
// If
misspelledWord
is not empty, holds suggestions from the dictionary.
/external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.cpp
231
String
misspelledWord
;
242
misspelledWord
= foundItem;
249
misspelledWord
= TextCheckingHelper(spellCheckerClient(), spellingSearchStart, spellingSearchEnd).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
252
if (!
misspelledWord
.isEmpty()) {
265
if (startedWithSelection && !
misspelledWord
&& !badGrammarPhrase) {
275
misspelledWord
= foundItem;
282
misspelledWord
= TextCheckingHelper(spellCheckerClient(), spellingSearchStart, spellingSearchEnd).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
285
if (!
misspelledWord
.isEmpty()) {
313
} else if (!
misspelledWord
.isEmpty()) {
319
TextIterator::subrange(misspellingStart, misspellingEnd, misspellingOffset,
misspelledWord
.length())
[
all
...]
TextCheckingHelper.cpp
297
String
misspelledWord
;
350
misspelledWord
= paragraphString.substring(result->location, result->length);
351
ASSERT(
misspelledWord
.length());
378
if (!
misspelledWord
.isEmpty() && (!checkGrammar || badGrammarPhrase.isEmpty() || spellingLocation <= grammarDetailLocation)) {
384
firstFoundItem =
misspelledWord
;
/external/chromium_org/content/renderer/
context_menu_params_builder.cc
34
params.misspelled_word = data.
misspelledWord
;
/external/chromium_org/content/shell/renderer/test_runner/
event_sender.cc
203
MockSpellCheck::FillSuggestionList(context_menu->
misspelledWord
,
[
all
...]
Completed in 326 milliseconds