OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:misspelledWord
(Results
1 - 10
of
10
) 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
158
String SpellCheckerClientImpl::getAutoCorrectSuggestionForMisspelledWord(const String&
misspelledWord
)
165
for (size_t i = 1; i <
misspelledWord
.length(); i++) {
166
if (u_isupper(static_cast<UChar32>(
misspelledWord
[i])))
171
return m_webView->spellCheckClient()->autoCorrectWord(WebString(
misspelledWord
));
210
void SpellCheckerClientImpl::updateSpellingUIWithMisspelledWord(const String&
misspelledWord
)
213
m_webView->spellCheckClient()->updateSpellingUIWithMisspelledWord(WebString(
misspelledWord
));
ContextMenuClientImpl.cpp
114
String
misspelledWord
= selectedFrame->selectedText().stripWhiteSpace();
117
if (!
misspelledWord
.isEmpty()) {
119
if (!isASingleWord(
misspelledWord
))
121
return
misspelledWord
;
132
return
misspelledWord
; // It is empty.
135
misspelledWord
= selectedFrame->selectedText().stripWhiteSpace();
140
if (
misspelledWord
.isEmpty())
146
return
misspelledWord
;
314
data.
misspelledWord
= selectMisspellingAsync(selectedFrame, marker);
322
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
121
WebString
misspelledWord
;
126
// If
misspelledWord
is not empty, holds suggestions from the dictionary.
/external/chromium/webkit/glue/
context_menu.cc
35
misspelled_word(data.
misspelledWord
),
/external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.cpp
218
String
misspelledWord
;
228
misspelledWord
= foundItem;
235
misspelledWord
= TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
237
if (!
misspelledWord
.isEmpty()) {
250
if (startedWithSelection && !
misspelledWord
&& !badGrammarPhrase) {
259
misspelledWord
= foundItem;
266
misspelledWord
= TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
268
if (!
misspelledWord
.isEmpty()) {
294
} else if (!
misspelledWord
.isEmpty()) {
298
RefPtr<Range> misspellingRange = TextIterator::subrange(spellingSearchRange.get(), misspellingOffset,
misspelledWord
.length())
[
all
...]
TextCheckingHelper.cpp
295
String
misspelledWord
;
350
misspelledWord
= paragraphString.substring(result->location, result->length);
351
ASSERT(
misspelledWord
.length());
378
if (!
misspelledWord
.isEmpty() && (!checkGrammar || badGrammarPhrase.isEmpty() || spellingLocation <= grammarDetailLocation)) {
386
firstFoundItem =
misspelledWord
;
/external/chromium_org/content/renderer/
context_menu_params_builder.cc
33
params.misspelled_word = data.
misspelledWord
;
/external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp
874
MockSpellCheck::fillSuggestionList(contextMenu->
misspelledWord
, &suggestions);
[
all
...]
Completed in 1047 milliseconds