Searched defs:checkingTypes (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DTextCheckingHelper.cpp277 TextCheckingTypeMask checkingTypes = checkGrammar ? (TextCheckingTypeSpelling | TextCheckingTypeGrammar) : TextCheckingTypeSpelling; local
278 m_client->textChecker()->checkTextOfParagraph(paragraphString.characters(), paragraphString.length(), checkingTypes, results);
527 TextCheckingTypeMask checkingTypes = checkGrammar ? (TextCheckingTypeSpelling | TextCheckingTypeGrammar) : TextCheckingTypeSpelling; local
528 m_client->textChecker()->checkTextOfParagraph(paragraph.textCharacters(), paragraph.textLength(), checkingTypes, results);
H A DEditor.cpp3259 TextCheckingTypeMask checkingTypes = 0; local
3261 checkingTypes |= TextCheckingTypeSpelling;
3263 checkingTypes |= TextCheckingTypeGrammar;
3265 checkingTypes |= TextCheckingTypeCorrection;
3271 checkingTypes |= TextCheckingTypeLink;
3273 checkingTypes |= TextCheckingTypeQuote;
3275 checkingTypes |= TextCheckingTypeDash;
3277 checkingTypes |= TextCheckingTypeReplacement;
3279 checkingTypes |= TextCheckingTypeCorrection;
3283 return checkingTypes;
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp2458 void WebPageProxy::checkTextOfParagraph(const String& text, uint64_t checkingTypes, Vector<TextCheckingResult>& results) argument
2460 results = TextChecker::checkTextOfParagraph(spellDocumentTag(), text.characters(), text.length(), checkingTypes);

Completed in 147 milliseconds