Home | History | Annotate | Download | only in UIProcess

Lines Matching full:static

39     static const TextCheckerState& state();
40 static bool isContinuousSpellCheckingAllowed();
42 static void setContinuousSpellCheckingEnabled(bool);
43 static void setGrammarCheckingEnabled(bool);
46 static void setAutomaticSpellingCorrectionEnabled(bool);
47 static void setAutomaticQuoteSubstitutionEnabled(bool);
48 static void setAutomaticDashSubstitutionEnabled(bool);
49 static void setAutomaticLinkDetectionEnabled(bool);
50 static void setAutomaticTextReplacementEnabled(bool);
52 static bool isSmartInsertDeleteEnabled();
53 static void setSmartInsertDeleteEnabled(bool);
55 static bool substitutionsPanelIsShowing();
56 static void toggleSubstitutionsPanelIsShowing();
58 static void continuousSpellCheckingEnabledStateChanged(bool);
59 static void grammarCheckingEnabledStateChanged(bool);
62 static int64_t uniqueSpellDocumentTag(WebPageProxy*);
63 static void closeSpellDocumentWithTag(int64_t);
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);
69 static bool spellingUIIsShowing();
70 static void toggleSpellingUIIsShowing();
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);