HomeSort by relevance Sort by last modified time
    Searched refs:spellcheck (Results 1 - 25 of 32) 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;
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter.cc 33 // IPC messages arrive on IO thread, but spellcheck data lives on UI thread.
35 // access spellcheck data.
91 SpellcheckService* spellcheck = GetSpellcheckService(); local
92 // Spellcheck service may not be available for a renderer process that is
94 if (!spellcheck)
96 if (spellcheck->GetMetrics())
97 spellcheck->GetMetrics()->RecordCheckedWordStats(word, misspelled);
102 SpellcheckService* spellcheck = GetSpellcheckService(); local
103 // Spellcheck service may not be available for a renderer process that is
105 if (!spellcheck)
136 SpellcheckService* spellcheck = GetSpellcheckService(); local
    [all...]
spellcheck_factory.cc 65 SpellcheckService* spellcheck = new SpellcheckService(profile); local
68 spellcheck->StartRecordingMetrics(
71 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 32 // Encapsulates the browser side spellcheck service. There is one of these per
34 // SpellcheckService maintains any per-profile information about spellcheck.
97 spellcheck::FeedbackSender* GetFeedbackSender();
161 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
164 } // namespace spellcheck
feedback_unittest.cc 12 namespace spellcheck { namespace
37 spellcheck::Feedback feedback_;
256 } // namespace spellcheck
spellcheck_service.cc 49 feedback_sender_.reset(new spellcheck::FeedbackSender(
205 spellcheck::FeedbackSender* SpellcheckService::GetFeedbackSender() {
feedback_sender_unittest.cc 27 namespace spellcheck { namespace
39 // Builds a simple spellcheck result.
125 scoped_ptr<spellcheck::FeedbackSender> feedback_;
289 // 2) No feedback is sent until a spellcheck request happens.
327 // The first spellcheck request after session expiration creates different
387 // Flush all feedback when the spellcheck language and country change.
436 // Duplicate spellcheck results should be matched to the existing markers.
505 // Spellcheck results that are out-of-bounds are not added to feedback.
527 } // namespace spellcheck
feedback.cc 22 namespace spellcheck { namespace
186 } // 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"
66 SpellcheckService* spellcheck = NULL; local
74 spellcheck = SpellcheckServiceFactory::GetForProfile(profile);
75 spellcheck->LoadExternalDictionary(
90 spellcheck = SpellcheckServiceFactory::GetForProfile(profile);
91 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"
36 SpellCheck* spellcheck)
40 spellcheck_(spellcheck) {
125 void SpellCheckProvider::spellCheck(
137 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check.suggestions", word.size());
139 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check", word.size());
160 UMA_HISTOGRAM_COUNTS("SpellCheck.api.paragraph", text.length());
174 UMA_HISTOGRAM_COUNTS("SpellCheck.api.async", text.length());
180 UMA_HISTOGRAM_COUNTS("SpellCheck.api.autocorrect", word.length())
    [all...]
  /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/third_party/WebKit/Source/core/html/
HTMLElement.idl 53 attribute boolean spellcheck;
HTMLElement.h 70 bool spellcheck() const;
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.cc 106 #include "chrome/renderer/spellchecker/spellcheck.h"
169 explicit SpellCheckReplacer(SpellCheck* spellcheck)
170 : spellcheck_(spellcheck) {}
174 SpellCheck* spellcheck_; // New shared spellcheck for all views. Weak Ptr.
241 spellcheck_.reset(new SpellCheck());
    [all...]
chrome_content_renderer_client.h 25 class SpellCheck;
145 // Sets a new |spellcheck|. Used for low-mem restart and testing only.
146 // Takes ownership of |spellcheck|.
147 void SetSpellcheck(SpellCheck* spellcheck);
197 scoped_ptr<SpellCheck> spellcheck_;

Completed in 276 milliseconds

1 2