HomeSort by relevance Sort by last modified time
    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 55 struct GrammarDetail {
66 Vector<GrammarDetail> details;
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingResult.cpp 47 GrammarDetail detail;
SpellCheckerClientImpl.h 55 virtual void checkGrammarOfString(const String&, WTF::Vector<GrammarDetail>&,
SpellCheckerClientImpl.cpp 179 void SpellCheckerClientImpl::checkGrammarOfString(const String& text, WTF::Vector<GrammarDetail>& details, int* badGrammarLocation, int* badGrammarLength)
199 GrammarDetail detail;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.h 89 String findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling, int& outFirstFoundOffset, GrammarDetail& outGrammarDetail);
90 String findFirstBadGrammar(GrammarDetail& outGrammarDetail, int& outGrammarPhraseOffset, bool markAll);
99 int findFirstGrammarDetail(const Vector<GrammarDetail>& grammarDetails, int badGrammarPhraseLocation, int startOffset, int endOffset, bool markAll) const;
TextCheckingHelper.cpp 54 Vector<GrammarDetail> badGrammarDetails;
291 String TextCheckingHelper::findFirstMisspellingOrBadGrammar(bool checkGrammar, bool& outIsSpelling, int& outFirstFoundOffset, GrammarDetail& outGrammarDetail)
361 const GrammarDetail* detail = &result->details[j];
409 int TextCheckingHelper::findFirstGrammarDetail(const Vector<GrammarDetail>& grammarDetails, int badGrammarPhraseLocation, int startOffset, int endOffset, bool markAll) const
416 const GrammarDetail* detail = &grammarDetails[i];
446 String TextCheckingHelper::findFirstBadGrammar(GrammarDetail& outGrammarDetail, int& outGrammarPhraseOffset, bool markAll)
465 Vector<GrammarDetail> grammarDetails;
517 GrammarDetail ignoredGrammarDetail;
SpellChecker.cpp 227 GrammarDetail grammarDetail;
240 foundItem = TextCheckingHelper(spellCheckerClient(), spellingSearchStart, spellingSearchEnd).findFirstMisspellingOrBadGrammar(isGrammarCheckingEnabled(), isSpelling, foundOffset, grammarDetail);
260 badGrammarPhrase = TextCheckingHelper(spellCheckerClient(), grammarSearchStart, grammarSearchEnd).findFirstBadGrammar(grammarDetail, grammarPhraseOffset, false);
273 foundItem = TextCheckingHelper(spellCheckerClient(), spellingSearchStart, spellingSearchEnd).findFirstMisspellingOrBadGrammar(isGrammarCheckingEnabled(), isSpelling, foundOffset, grammarDetail);
293 badGrammarPhrase = TextCheckingHelper(spellCheckerClient(), grammarSearchStart, grammarSearchEnd).findFirstBadGrammar(grammarDetail, grammarPhraseOffset, false);
303 ASSERT(grammarDetail.location != -1 && grammarDetail.length > 0);
308 TextIterator::subrange(badGrammarStart, badGrammarEnd, grammarPhraseOffset + grammarDetail.location, grammarDetail.length)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.h 259 virtual void checkGrammarOfString(const String&, Vector<GrammarDetail>&, int*, int*) OVERRIDE { }

Completed in 266 milliseconds