HomeSort by relevance Sort by last modified time
    Searched refs:badGrammarPhrase (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/win/
WebTextCheckerClient.h 53 void updateSpellingUIWithGrammarString(uint64_t tag, const String& badGrammarPhrase, const WebCore::GrammarDetail&);
TextCheckerWin.cpp 120 void TextChecker::updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const GrammarDetail& grammarDetail)
122 WebTextChecker::shared()->client().updateSpellingUIWithGrammarString(spellDocumentTag, badGrammarPhrase, grammarDetail);
WebTextCheckerClient.cpp 140 void WebTextCheckerClient::updateSpellingUIWithGrammarString(uint64_t tag, const String& badGrammarPhrase, const WebCore::GrammarDetail& grammarDetail)
145 m_client.updateSpellingUIWithGrammarString(tag, toAPI(badGrammarPhrase.impl()), toAPI(grammarDetail), m_client.clientInfo);
  /external/webkit/Source/WebCore/editing/
TextCheckingHelper.cpp 230 String badGrammarPhrase;
307 badGrammarPhrase = paragraphString.substring(result->location, result->length);
308 ASSERT(badGrammarPhrase.length());
313 if (!misspelledWord.isEmpty() && (!checkGrammar || badGrammarPhrase.isEmpty() || spellingLocation <= grammarDetailLocation)) {
324 if (checkGrammar && !badGrammarPhrase.isEmpty()) {
332 firstFoundItem = badGrammarPhrase;
481 String badGrammarPhrase = const_cast<TextCheckingHelper*>(this)->findFirstBadGrammar(grammarDetail, grammarPhraseOffset, false);
484 if (badGrammarPhrase.isEmpty())
505 m_client->updateSpellingUIWithGrammarString(badGrammarPhrase, grammarDetail);
552 String badGrammarPhrase = paragraph.textSubstring(result->location, result->length)
    [all...]
Editor.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
TextChecker.h 72 static void updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const WebCore::GrammarDetail&);
WebPageProxy.h 655 void updateSpellingUIWithGrammarString(const String& badGrammarPhrase, const WebCore::GrammarDetail&);
    [all...]
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKTextChecker.h 48 typedef void (*WKTextCheckerUpdateSpellingUIWithGrammarString)(uint64_t tag, WKStringRef badGrammarPhrase, WKGrammarDetailRef grammarDetail, const void *clientInfo);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.cpp 416 void WebEditorClient::updateSpellingUIWithGrammarString(const String& badGrammarPhrase, const GrammarDetail& grammarDetail)
418 m_page->send(Messages::WebPageProxy::UpdateSpellingUIWithGrammarString(badGrammarPhrase, grammarDetail));
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 348 void TextChecker::updateSpellingUIWithGrammarString(int64_t, const String& badGrammarPhrase, const GrammarDetail& grammarDetail)
360 [[NSSpellChecker sharedSpellChecker] updateSpellingPanelWithGrammarString:badGrammarPhrase detail:grammarDetailDict.get()];
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm     [all...]

Completed in 647 milliseconds