HomeSort by relevance Sort by last modified time
    Searched refs:spellcheck (Results 1 - 25 of 31) sorted by null

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSessionFactory.java 17 package com.android.inputmethod.latin.spellcheck;
SpellCheckerSettingsActivity.java 17 package com.android.inputmethod.latin.spellcheck;
SpellCheckerSettingsFragment.java 17 package com.android.inputmethod.latin.spellcheck;
DictAndKeyboard.java 17 package com.android.inputmethod.latin.spellcheck;
DictionaryPool.java 17 package com.android.inputmethod.latin.spellcheck;
AndroidWordLevelSpellCheckerSession.java 17 package com.android.inputmethod.latin.spellcheck;
35 import com.android.inputmethod.latin.spellcheck.AndroidSpellCheckerService.SuggestionsGatherer;
AndroidSpellCheckerSession.java 17 package com.android.inputmethod.latin.spellcheck;
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter.cc 32 // IPC messages arrive on IO thread, but spellcheck data lives on UI thread.
34 // access spellcheck data.
89 SpellcheckService* spellcheck = GetSpellcheckService(); local
90 // Spellcheck service may not be available for a renderer process that is
92 if (!spellcheck)
94 if (spellcheck->GetMetrics())
95 spellcheck->GetMetrics()->RecordCheckedWordStats(word, misspelled);
100 SpellcheckService* spellcheck = GetSpellcheckService(); local
101 // Spellcheck service may not be available for a renderer process that is
103 if (!spellcheck)
134 SpellcheckService* spellcheck = GetSpellcheckService(); local
    [all...]
spellcheck_factory.cc 56 SpellcheckService* spellcheck = new SpellcheckService(context); local
62 spellcheck->StartRecordingMetrics(
65 return spellcheck;
feedback.h 5 // An object to store user feedback to spellcheck suggestions from spelling
21 namespace spellcheck { namespace
23 // Stores user feedback to spellcheck suggestions. Sample usage:
110 } // namespace spellcheck
spellcheck_service.h 33 // Encapsulates the browser side spellcheck service. There is one of these per
35 // SpellcheckService maintains any per-profile information about spellcheck.
98 spellcheck::FeedbackSender* GetFeedbackSender();
166 scoped_ptr<spellcheck::FeedbackSender> feedback_sender_;
feedback_sender.h 35 namespace spellcheck { namespace
80 // will never see the spellcheck suggestions for the misspelling.
92 // Generates feedback data based on spellcheck results. The new feedback data
175 } // namespace spellcheck
feedback_unittest.cc 12 namespace spellcheck { namespace
37 spellcheck::Feedback feedback_;
257 } // namespace spellcheck
spellcheck_service.cc 51 feedback_sender_.reset(new spellcheck::FeedbackSender(
207 spellcheck::FeedbackSender* SpellcheckService::GetFeedbackSender() {
324 context_, SpellingServiceClient::SPELLCHECK)) {
feedback.cc 24 namespace spellcheck { namespace
185 } // namespace spellcheck
feedback_sender_unittest.cc 27 namespace spellcheck { namespace
39 // Builds a simple spellcheck result.
141 scoped_ptr<spellcheck::FeedbackSender> feedback_;
305 // 2) No feedback is sent until a spellcheck request happens.
343 // The first spellcheck request after session expiration creates different
403 // Flush all feedback when the spellcheck language and country change.
501 // Duplicate spellcheck results should be matched to the existing markers.
570 // Spellcheck results that are out-of-bounds are not added to feedback.
624 } // namespace spellcheck
  /external/chromium_org/chrome/browser/extensions/api/spellcheck/
spellcheck_api.cc 5 #include "chrome/browser/extensions/api/spellcheck/spellcheck_api.h"
11 #include "chrome/common/extensions/api/spellcheck/spellcheck_handler.h"
65 SpellcheckService* spellcheck = NULL; local
73 spellcheck = SpellcheckServiceFactory::GetForContext(profile);
74 spellcheck->LoadExternalDictionary(
89 spellcheck = SpellcheckServiceFactory::GetForContext(profile);
90 spellcheck->UnloadExternalDictionary(spellcheck_info->path);
  /external/chromium_org/chrome/browser/tab_contents/
spelling_menu_observer.cc 87 // The service types |SpellingServiceClient::SPELLCHECK| and
91 // When |SpellingServiceClient::SPELLCHECK| is available, the contextual
102 // misspelled word without the surrounding context. Spellcheck suggestions
149 profile, SpellingServiceClient::SPELLCHECK);
156 // provided by Web SpellCheck API.
259 // by Web SpellCheck API.
262 SpellcheckService* spellcheck = local
264 if (spellcheck) {
265 if (spellcheck->GetMetrics())
266 spellcheck->GetMetrics()->RecordReplacedWordStats(1)
288 SpellcheckService* spellcheck = local
    [all...]
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_provider.h 16 class SpellCheck;
26 // This class deals with invoking browser-side spellcheck mechanism
36 SpellCheck* spellcheck);
51 // Replace shared spellcheck data.
52 void set_spellcheck(SpellCheck* spellcheck) { spellcheck_ = spellcheck; }
71 virtual void spellCheck(
117 // The last text sent to the browser process to spellcheck it and it
    [all...]
spellcheck_provider.cc 13 #include "chrome/renderer/spellchecker/spellcheck.h"
38 SpellCheck* spellcheck)
42 spellcheck_(spellcheck) {
127 void SpellCheckProvider::spellCheck(
139 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check.suggestions", word.size());
141 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check", word.size());
162 UMA_HISTOGRAM_COUNTS("SpellCheck.api.paragraph", text.length());
176 UMA_HISTOGRAM_COUNTS("SpellCheck.api.async", text.length());
182 UMA_HISTOGRAM_COUNTS("SpellCheck.api.autocorrect", word.length())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.idl 49 attribute boolean spellcheck;
HTMLElement.h 65 bool spellcheck() const;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
FragmentUtils.java 24 import com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsFragment;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerServiceTest.java 17 package com.android.inputmethod.latin.spellcheck;
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.h 26 class SpellCheck;
142 // Sets a new |spellcheck|. Used for low-mem restart and testing only.
143 // Takes ownership of |spellcheck|.
144 void SetSpellcheck(SpellCheck* spellcheck);
201 scoped_ptr<SpellCheck> spellcheck_;

Completed in 260 milliseconds

1 2