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

  /external/chromium_org/chrome/renderer/spellchecker/
hunspell_engine.cc 50 hunspell_.reset();
58 if (hunspell_.get())
64 hunspell_.reset(new Hunspell(bdict_file_->data(), bdict_file_->length()));
80 // If |hunspell_| is NULL here, an error has occurred, but it's better
82 if (hunspell_.get()) {
83 // |hunspell_->spell| returns 0 if the word is misspelled.
84 word_correct = (hunspell_->spell(word_to_check_utf8.c_str()) != 0);
98 // If |hunspell_| is NULL here, an error has occurred, but it's better
101 if (!hunspell_.get())
106 hunspell_->suggest(&suggestions, wrong_word_utf8.c_str())
    [all...]
hunspell_engine.h 39 // Initializes the Hunspell dictionary, or does nothing if |hunspell_| is
47 scoped_ptr<Hunspell> hunspell_; member in class:HunspellEngine

Completed in 51 milliseconds