HomeSort by relevance Sort by last modified time
    Searched refs:spellcheck (Results 1 - 25 of 30) 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;
AndroidSpellCheckerSession.java 17 package com.android.inputmethod.latin.spellcheck;
SentenceLevelAdapter.java 17 package com.android.inputmethod.latin.spellcheck;
AndroidSpellCheckerService.java 17 package com.android.inputmethod.latin.spellcheck;
  /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.
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 14 namespace spellcheck { namespace
39 spellcheck::Feedback feedback_;
259 } // namespace spellcheck
spellcheck_service.cc 50 feedback_sender_.reset(new spellcheck::FeedbackSender(
195 spellcheck::FeedbackSender* SpellcheckService::GetFeedbackSender() {
312 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"
10 #include "chrome/common/extensions/api/spellcheck/spellcheck_handler.h"
64 SpellcheckService* spellcheck = local
66 spellcheck->LoadExternalDictionary(
81 SpellcheckService* spellcheck = local
83 spellcheck->UnloadExternalDictionary(spellcheck_info->path);
  /external/chromium_org/chrome/browser/renderer_context_menu/
spelling_menu_observer.cc 86 // The service types |SpellingServiceClient::SPELLCHECK| and
90 // When |SpellingServiceClient::SPELLCHECK| is available, the contextual
101 // misspelled word without the surrounding context. Spellcheck suggestions
148 profile, SpellingServiceClient::SPELLCHECK);
155 // provided by Web SpellCheck API.
248 // by Web SpellCheck API.
251 SpellcheckService* spellcheck = local
253 if (spellcheck) {
254 if (spellcheck->GetMetrics())
255 spellcheck->GetMetrics()->RecordReplacedWordStats(1)
277 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"
39 SpellCheck* spellcheck)
43 spellcheck_(spellcheck) {
128 void SpellCheckProvider::spellCheck(
140 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check.suggestions", word.size());
142 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check", word.size());
163 UMA_HISTOGRAM_COUNTS("SpellCheck.api.paragraph", text.length());
177 UMA_HISTOGRAM_COUNTS("SpellCheck.api.async", text.length());
183 UMA_HISTOGRAM_COUNTS("SpellCheck.api.autocorrect", word.length())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.idl 44 attribute boolean spellcheck;
HTMLElement.h 59 bool spellcheck() const;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerServiceTest.java 17 package com.android.inputmethod.latin.spellcheck;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
FragmentUtils.java 31 import com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsFragment;
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.h 24 class SpellCheck;
139 // Sets a new |spellcheck|. Used for testing only.
140 // Takes ownership of |spellcheck|.
141 void SetSpellcheck(SpellCheck* spellcheck);
192 scoped_ptr<SpellCheck> spellcheck_;
chrome_content_renderer_client.cc 124 #include "chrome/renderer/spellchecker/spellcheck.h"
195 explicit SpellCheckReplacer(SpellCheck* spellcheck)
196 : spellcheck_(spellcheck) {}
200 SpellCheck* spellcheck_; // New shared spellcheck for all views. Weak Ptr.
268 // ChromeRenderViewTest::SetUp() creates a Spellcheck and injects it using
271 spellcheck_.reset(new SpellCheck());
    [all...]

Completed in 1110 milliseconds

1 2