Searched defs:checkingTypes (Results 1 - 3 of 3) sorted by relevance
/external/webkit/Source/WebCore/editing/ |
H A D | TextCheckingHelper.cpp | 277 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 D | Editor.cpp | 3259 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 D | WebPageProxy.cpp | 2458 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 1564 milliseconds