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
354
TextCheckingTypeMask
textCheckingOptions
= 0;
357
textCheckingOptions
|= TextCheckingTypeSpelling;
360
textCheckingOptions
|= TextCheckingTypeGrammar;
367
textCheckingOptions
, wordSelection.toNormalizedRange().get(),
378
TextCheckingTypeMask
textCheckingOptions
= 0;
381
textCheckingOptions
|= TextCheckingTypeSpelling;
383
if (!(
textCheckingOptions
& TextCheckingTypeSpelling))
387
textCheckingOptions
|= TextCheckingTypeGrammar;
390
if (
textCheckingOptions
& TextCheckingTypeGrammar) {
392
markAllMisspellingsAndBadGrammarInRanges(
textCheckingOptions
, adjacentWords.toNormalizedRange().get(), selectedSentence.toNormalizedRange().get())
[
all
...]
SpellChecker.h
106
void chunkAndMarkAllMisspellingsAndBadGrammar(TextCheckingTypeMask
textCheckingOptions
, const TextCheckingParagraph& fullParagraphToCheck, bool asynchronous);
107
void markAllMisspellingsAndBadGrammarInRanges(TextCheckingTypeMask
textCheckingOptions
, Range* checkingRange, Range* paragraphRange, bool asynchronous, int requestNumber, int* checkingLength = 0);
SpellCheckRequester.cpp
71
PassRefPtrWillBeRawPtr<SpellCheckRequest> SpellCheckRequest::create(TextCheckingTypeMask
textCheckingOptions
, TextCheckingProcessType processType, PassRefPtrWillBeRawPtr<Range> checkingRange, PassRefPtrWillBeRawPtr<Range> paragraphRange, int requestNumber)
88
return adoptRefWillBeNoop(new SpellCheckRequest(checkingRange, paragraphRange, text,
textCheckingOptions
, processType, hashes, offsets, requestNumber));
Completed in 921 milliseconds