Home | History | Annotate | Download | only in win

Lines Matching full:m_client

40     if (!m_client.continuousSpellCheckingAllowed)
43 return m_client.continuousSpellCheckingAllowed(m_client.clientInfo);
48 if (!m_client.continuousSpellCheckingEnabled)
51 return m_client.continuousSpellCheckingEnabled(m_client.clientInfo);
56 if (!m_client.setContinuousSpellCheckingEnabled)
59 m_client.setContinuousSpellCheckingEnabled(enabled, m_client.clientInfo);
64 if (!m_client.grammarCheckingEnabled)
67 return m_client.grammarCheckingEnabled(m_client.clientInfo);
72 if (!m_client.setGrammarCheckingEnabled)
75 m_client.setGrammarCheckingEnabled(enabled, m_client.clientInfo);
80 if (!m_client.uniqueSpellDocumentTag)
83 return m_client.uniqueSpellDocumentTag(toAPI(page), m_client.clientInfo);
88 if (!m_client.closeSpellDocumentWithTag)
91 m_client.closeSpellDocumentWithTag(tag, m_client.clientInfo);
96 if (!m_client.checkSpellingOfString)
99 m_client.checkSpellingOfString(tag, toAPI(text.impl()), &misspellingLocation, &misspellingLength, m_client.clientInfo);
104 if (!m_client.checkGrammarOfString)
108 m_client.checkGrammarOfString(tag, toAPI(text.impl()), &wkGrammarDetailsRef, &badGrammarLocation, &badGrammarLength, m_client.clientInfo);
118 if (!m_client.spellingUIIsShowing)
121 return m_client.spellingUIIsShowing(m_client.clientInfo);
126 if (!m_client.toggleSpellingUIIsShowing)
129 return m_client.toggleSpellingUIIsShowing(m_client.clientInfo);
134 if (!m_client.updateSpellingUIWithMisspelledWord)
137 m_client.updateSpellingUIWithMisspelledWord(tag, toAPI(misspelledWord.impl()), m_client.clientInfo);
142 if (!m_client.updateSpellingUIWithGrammarString)
145 m_client.updateSpellingUIWithGrammarString(tag, toAPI(badGrammarPhrase.impl()), toAPI(grammarDetail), m_client.clientInfo);
150 if (!m_client.guessesForWord)
153 RefPtr<ImmutableArray> wkGuesses = adoptRef(toImpl(m_client.guessesForWord(tag, toAPI(word.impl()), m_client.clientInfo)));
161 if (!m_client.learnWord)
164 m_client.learnWord(tag, toAPI(word.impl()), m_client.clientInfo);
169 if (!m_client.ignoreWord)
172 m_client.ignoreWord(tag, toAPI(word.impl()), m_client.clientInfo);