OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:checkingtypes
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/ui/cocoa/find_bar/
find_bar_text_field.mm
47
NSTextCheckingTypes
checkingTypes
= [textView enabledTextCheckingTypes];
48
checkingTypes
&= ~NSTextCheckingTypeReplacement;
49
checkingTypes
&= ~NSTextCheckingTypeCorrection;
50
[textView setEnabledTextCheckingTypes:
checkingTypes
];
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field_editor.mm
63
NSTextCheckingTypes
checkingTypes
= [self enabledTextCheckingTypes];
64
checkingTypes
&= ~NSTextCheckingTypeReplacement;
65
checkingTypes
&= ~NSTextCheckingTypeCorrection;
66
[self setEnabledTextCheckingTypes:
checkingTypes
];
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp
342
TextCheckingTypeMask
checkingTypes
= checkGrammar ? (TextCheckingTypeSpelling | TextCheckingTypeGrammar) : TextCheckingTypeSpelling;
343
checkTextOfParagraph(m_client->textChecker(), paragraphString,
checkingTypes
, results);
533
void checkTextOfParagraph(TextCheckerClient& client, const String& text, TextCheckingTypeMask
checkingTypes
, Vector<TextCheckingResult>& results)
540
if (
checkingTypes
& TextCheckingTypeSpelling)
544
if (
checkingTypes
& TextCheckingTypeGrammar) {
SpellChecker.cpp
[
all
...]
Completed in 313 milliseconds