OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:textCheckingOptions
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.cpp
363
TextCheckingTypeMask
textCheckingOptions
= 0;
366
textCheckingOptions
|= TextCheckingTypeSpelling;
368
if (!(
textCheckingOptions
& TextCheckingTypeSpelling))
372
textCheckingOptions
|= TextCheckingTypeGrammar;
375
if (
textCheckingOptions
& TextCheckingTypeGrammar) {
377
markAllMisspellingsAndBadGrammarInRanges(
textCheckingOptions
, adjacentWords.toNormalizedRange().get(), selectedSentence.toNormalizedRange().get());
379
markAllMisspellingsAndBadGrammarInRanges(
textCheckingOptions
, adjacentWords.toNormalizedRange().get(), adjacentWords.toNormalizedRange().get());
475
void SpellChecker::markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask
textCheckingOptions
, Range* spellingRange, Range* grammarRange)
479
bool shouldMarkGrammar =
textCheckingOptions
& TextCheckingTypeGrammar;
497
chunkAndMarkAllMisspellingsAndBadGrammar(
textCheckingOptions
, fullParagraphToCheck, asynchronous)
[
all
...]
SpellChecker.h
98
void chunkAndMarkAllMisspellingsAndBadGrammar(TextCheckingTypeMask
textCheckingOptions
, const TextCheckingParagraph& fullParagraphToCheck, bool asynchronous);
99
void markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask
textCheckingOptions
, Range* checkingRange, Range* paragraphRange, bool asynchronous, int requestNumber, int* checkingLength = 0);
SpellCheckRequester.cpp
62
PassRefPtr<SpellCheckRequest> SpellCheckRequest::create(TextCheckingTypeMask
textCheckingOptions
, TextCheckingProcessType processType, PassRefPtr<Range> checkingRange, PassRefPtr<Range> paragraphRange, int requestNumber)
79
return adoptRef(new SpellCheckRequest(checkingRange, paragraphRange, text,
textCheckingOptions
, processType, hashes, offsets, requestNumber));
Completed in 191 milliseconds