OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextCheckingTypeMask
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/text/
TextChecking.h
47
typedef unsigned
TextCheckingTypeMask
;
80
TextCheckingRequestData(int sequence, const String& text,
TextCheckingTypeMask
mask, TextCheckingProcessType processType, const Vector<uint32_t>& markers, const Vector<unsigned>& offsets)
91
TextCheckingTypeMask
mask() const { return m_mask; }
100
TextCheckingTypeMask
m_mask;
/external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.h
67
void markAllMisspellingsAndBadGrammarInRanges(
TextCheckingTypeMask
, Range* spellingRange, Range* grammarRange);
94
TextCheckingTypeMask
resolveTextCheckingTypeMask(
TextCheckingTypeMask
);
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.h
48
static PassRefPtr<SpellCheckRequest> create(
TextCheckingTypeMask
, TextCheckingProcessType, PassRefPtr<Range> checkingRange, PassRefPtr<Range> paragraphRange, int requestNumber = 0);
66
SpellCheckRequest(PassRefPtr<Range> checkingRange, PassRefPtr<Range> paragraphRange, const String&,
TextCheckingTypeMask
, TextCheckingProcessType, const Vector<uint32_t>& documentMarkersInRange, const Vector<unsigned>& documentMarkerOffsets, int requestNumber);
TextCheckingHelper.h
99
void checkTextOfParagraph(TextCheckerClient&, const String&,
TextCheckingTypeMask
, Vector<TextCheckingResult>&);
SpellChecker.cpp
363
TextCheckingTypeMask
textCheckingOptions = 0;
475
void SpellChecker::markAllMisspellingsAndBadGrammarInRanges(
TextCheckingTypeMask
textCheckingOptions, Range* spellingRange, Range* grammarRange)
510
void SpellChecker::chunkAndMarkAllMisspellingsAndBadGrammar(
TextCheckingTypeMask
textCheckingOptions, const TextCheckingParagraph& fullParagraphToCheck, bool asynchronous)
540
void SpellChecker::markAllMisspellingsAndBadGrammarInRanges(
TextCheckingTypeMask
textCheckingOptions, Range* checkRange, Range* paragraphRange, bool asynchronous, int requestNumber, int* checkingLength)
561
TextCheckingTypeMask
textCheckingOptions = request->data().mask();
644
TextCheckingTypeMask
textCheckingOptions = TextCheckingTypeSpelling;
[
all
...]
SpellCheckRequester.cpp
43
TextCheckingTypeMask
mask,
62
PassRefPtr<SpellCheckRequest> SpellCheckRequest::create(
TextCheckingTypeMask
textCheckingOptions, TextCheckingProcessType processType, PassRefPtr<Range> checkingRange, PassRefPtr<Range> paragraphRange, int requestNumber)
TextCheckingHelper.cpp
342
TextCheckingTypeMask
checkingTypes = checkGrammar ? (TextCheckingTypeSpelling | TextCheckingTypeGrammar) : TextCheckingTypeSpelling;
533
void checkTextOfParagraph(TextCheckerClient& client, const String& text,
TextCheckingTypeMask
checkingTypes, Vector<TextCheckingResult>& results)
Completed in 146 milliseconds