HomeSort by relevance Sort by last modified time
    Searched refs:badGrammarLength (Results 1 - 4 of 4) 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;
  /external/chromium_org/third_party/WebKit/Source/web/
SpellCheckerClientImpl.cpp 175 void SpellCheckerClientImpl::checkGrammarOfString(const String& text, WTF::Vector<GrammarDetail>& details, int* badGrammarLocation, int* badGrammarLength)
179 if (badGrammarLength)
180 *badGrammarLength = 0;
191 // badGrammarLocation and badGrammarLength to tell WebKit that the input
206 if (badGrammarLength)
207 *badGrammarLength = text.length();
SpellCheckerClientImpl.h 57 int* badGrammarLocation, int* badGrammarLength) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp 53 int badGrammarLength = 0;
55 client.checkGrammarOfString(String(text + checkLocation, checkLength), badGrammarDetails, &badGrammarLocation, &badGrammarLength);
56 if (!badGrammarLength)
59 ASSERT(0 < badGrammarLength && badGrammarLocation + badGrammarLength <= checkLength);
63 badGrammar.length = badGrammarLength;
67 checkLocation += (badGrammarLocation + badGrammarLength);
68 checkLength -= (badGrammarLocation + badGrammarLength);

Completed in 33 milliseconds