Searched refs:spellDocumentTag (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/
H A DTextChecker.h65 static Vector<WebCore::TextCheckingResult> checkTextOfParagraph(int64_t spellDocumentTag, const UChar* text, int length, uint64_t checkingTypes);
67 static void checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength);
68 static void checkGrammarOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, Vector<WebCore::GrammarDetail>&, int32_t& badGrammarLocation, int32_t& badGrammarLength);
71 static void updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord);
72 static void updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const WebCore::GrammarDetail&);
73 static void getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses);
74 static void learnWord(int64_t spellDocumentTag, const String& word);
75 static void ignoreWord(int64_t spellDocumentTag, const String& word);
H A DWebPageProxy.cpp2446 int64_t WebPageProxy::spellDocumentTag() function in class:WebKit::WebPageProxy
2460 results = TextChecker::checkTextOfParagraph(spellDocumentTag(), text.characters(), text.length(), checkingTypes);
2467 TextChecker::checkSpellingOfString(spellDocumentTag(), text.characters(), text.length(), misspellingLocation, misspellingLength);
2472 TextChecker::checkGrammarOfString(spellDocumentTag(), text.characters(), text.length(), grammarDetails, badGrammarLocation, badGrammarLength);
2482 TextChecker::updateSpellingUIWithMisspelledWord(spellDocumentTag(), misspelledWord);
2487 TextChecker::updateSpellingUIWithGrammarString(spellDocumentTag(), badGrammarPhrase, grammarDetail);
2492 TextChecker::getGuessesForWord(spellDocumentTag(), word, context, guesses);
2500 TextChecker::learnWord(spellDocumentTag(), word);
2508 TextChecker::ignoreWord(spellDocumentTag(), word);
H A DWebPageProxy.h647 int64_t spellDocumentTag();
/external/webkit/Source/WebKit2/UIProcess/win/
H A DTextCheckerWin.cpp95 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength) argument
97 WebTextChecker::shared()->client().checkSpellingOfString(spellDocumentTag, String(text, length), misspellingLocation, misspellingLength);
100 void TextChecker::checkGrammarOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, Vector<WebCore::GrammarDetail>& grammarDetails, int32_t& badGrammarLocation, int32_t& badGrammarLength) argument
102 WebTextChecker::shared()->client().checkGrammarOfString(spellDocumentTag, String(text, length), grammarDetails, badGrammarLocation, badGrammarLength);
115 void TextChecker::updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord) argument
117 WebTextChecker::shared()->client().updateSpellingUIWithMisspelledWord(spellDocumentTag, misspelledWord);
120 void TextChecker::updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const GrammarDetail& grammarDetail) argument
122 WebTextChecker::shared()->client().updateSpellingUIWithGrammarString(spellDocumentTag, badGrammarPhrase, grammarDetail);
125 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses) argument
127 WebTextChecker::shared()->client().guessesForWord(spellDocumentTag, wor
130 learnWord(int64_t spellDocumentTag, const String& word) argument
135 ignoreWord(int64_t spellDocumentTag, const String& word) argument
[all...]
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DTextCheckerGtk.cpp103 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses) argument
113 void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word) argument
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DTextCheckerQt.cpp104 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses) argument
114 void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word) argument
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DTextCheckerMac.mm228 Vector<TextCheckingResult> TextChecker::checkTextOfParagraph(int64_t spellDocumentTag, const UChar* text, int length, uint64_t checkingTypes)
237 inSpellDocumentWithTag:spellDocumentTag
363 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
370 [checker checkString:context range:NSMakeRange(0, context.length()) types:NSTextCheckingTypeOrthography options:0 inSpellDocumentWithTag:spellDocumentTag orthography:&orthography wordCount:0];
373 NSArray* stringsArray = [checker guessesForWordRange:NSMakeRange(0, word.length()) inString:word language:language inSpellDocumentWithTag:spellDocumentTag];
387 void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word)
389 [[NSSpellChecker sharedSpellChecker] ignoreWord:word inSpellDocumentWithTag:spellDocumentTag];

Completed in 77 milliseconds