OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GrammarDetail
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/text/
TextCheckerClient.h
46
virtual void checkGrammarOfString(const String&, Vector<
GrammarDetail
>&, int* badGrammarLocation, int* badGrammarLength) = 0;
TextChecking.h
54
struct
GrammarDetail
{
65
Vector<
GrammarDetail
> details;
/external/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingResult.cpp
49
GrammarDetail
detail;
SpellCheckerClientImpl.h
56
virtual void checkGrammarOfString(const String&, WTF::Vector<WebCore::
GrammarDetail
>&,
SpellCheckerClientImpl.cpp
175
void SpellCheckerClientImpl::checkGrammarOfString(const String& text, WTF::Vector<
GrammarDetail
>& details, int* badGrammarLocation, int* badGrammarLength)
195
GrammarDetail
detail;
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.h
86
String findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling, int& outFirstFoundOffset,
GrammarDetail
& outGrammarDetail);
87
String findFirstBadGrammar(
GrammarDetail
& outGrammarDetail, int& outGrammarPhraseOffset, bool markAll);
95
int findFirstGrammarDetail(const Vector<
GrammarDetail
>& grammarDetails, int badGrammarPhraseLocation, int startOffset, int endOffset, bool markAll) const;
TextCheckingHelper.cpp
54
Vector<
GrammarDetail
> badGrammarDetails;
289
String TextCheckingHelper::findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling, int& outFirstFoundOffset,
GrammarDetail
& outGrammarDetail)
361
const
GrammarDetail
* detail = &result->details[j];
413
int TextCheckingHelper::findFirstGrammarDetail(const Vector<
GrammarDetail
>& grammarDetails, int badGrammarPhraseLocation, int startOffset, int endOffset, bool markAll) const
420
const
GrammarDetail
* detail = &grammarDetails[i];
448
String TextCheckingHelper::findFirstBadGrammar(
GrammarDetail
& outGrammarDetail, int& outGrammarPhraseOffset, bool markAll)
467
Vector<
GrammarDetail
> grammarDetails;
519
GrammarDetail
ignoredGrammarDetail;
SpellChecker.cpp
214
GrammarDetail
grammarDetail
;
226
foundItem = TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspellingOrBadGrammar(isGrammarCheckingEnabled(), isSpelling, foundOffset,
grammarDetail
);
245
badGrammarPhrase = TextCheckingHelper(spellCheckerClient(), grammarSearchRange).findFirstBadGrammar(
grammarDetail
, grammarPhraseOffset, false);
257
foundItem = TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspellingOrBadGrammar(isGrammarCheckingEnabled(), isSpelling, foundOffset,
grammarDetail
);
276
badGrammarPhrase = TextCheckingHelper(spellCheckerClient(), grammarSearchRange).findFirstBadGrammar(
grammarDetail
, grammarPhraseOffset, false);
286
ASSERT(
grammarDetail
.location != -1 &&
grammarDetail
.length > 0);
289
RefPtr<Range> badGrammarRange = TextIterator::subrange(grammarSearchRange.get(), grammarPhraseOffset +
grammarDetail
.location,
grammarDetail
.length)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.h
264
virtual void checkGrammarOfString(const String&, Vector<
GrammarDetail
>&, int*, int*) OVERRIDE { }
Completed in 543 milliseconds