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

  /external/webkit/Source/WebKit2/UIProcess/
TextChecker.h 65 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);
WebPageProxy.cpp     [all...]
WebPageProxy.h 647 int64_t spellDocumentTag();
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
TextCheckerWin.cpp 95 void TextChecker::checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength)
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)
102 WebTextChecker::shared()->client().checkGrammarOfString(spellDocumentTag, String(text, length), grammarDetails, badGrammarLocation, badGrammarLength);
115 void TextChecker::updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord)
117 WebTextChecker::shared()->client().updateSpellingUIWithMisspelledWord(spellDocumentTag, misspelledWord);
120 void TextChecker::updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const GrammarDetail& grammarDetail)
122 WebTextChecker::shared()->client().updateSpellingUIWithGrammarString(spellDocumentTag, badGrammarPhrase, grammarDetail);
125 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
127 WebTextChecker::shared()->client().guessesForWord(spellDocumentTag, word, guesses)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/gtk/
TextCheckerGtk.cpp 103 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
113 void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word)
  /external/webkit/Source/WebKit2/UIProcess/qt/
TextCheckerQt.cpp 104 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
114 void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word)
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 228 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 57 milliseconds