OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SpellCheck
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/chrome/renderer/spellchecker/
spellcheck.cc
5
#include "chrome/renderer/spellchecker/
spellcheck
.h"
36
bool enabled_; // New
spellcheck
-enabled state.
72
class
SpellCheck
::SpellcheckRequest {
94
// Initializes
SpellCheck
object.
99
// which in turn triggers the delayed initialization sequence in
SpellCheck
.
108
SpellCheck
::
SpellCheck
()
113
SpellCheck
::~
SpellCheck
() {
116
bool
SpellCheck
::OnControlMessageReceived(const IPC::Message& message)
[
all
...]
spellcheck.h
33
class
SpellCheck
: public content::RenderProcessObserver,
34
public base::SupportsWeakPtr<
SpellCheck
> {
43
SpellCheck
();
44
virtual ~
SpellCheck
();
59
//
SpellCheck
a word.
76
//
SpellCheck
a paragraph.
91
// Requests to
spellcheck
the specified text in the background. This function
133
// Posts delayed
spellcheck
task and clear it if any.
159
DISALLOW_COPY_AND_ASSIGN(
SpellCheck
);
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_test.cc
10
#include "chrome/renderer/spellchecker/
spellcheck
.h"
13
class MockSpellcheck: public
SpellCheck
{
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
...]
spellcheck_unittest.cc
15
#include "chrome/renderer/spellchecker/
spellcheck
.h"
43
spell_check_.reset(new
SpellCheck
());
48
spell_check_.reset(new
SpellCheck
());
63
// TODO(groby): Forcing
spellcheck
to use hunspell, even on OSX.
78
SpellCheck
* spell_check() { return spell_check_.get(); }
105
scoped_ptr<
SpellCheck
> spell_check_;
353
//
spellcheck
" <http://crbug.com/13432>.
[
all
...]
/external/chromium_org/chrome/test/base/
chrome_render_view_test.cc
13
#include "chrome/renderer/spellchecker/
spellcheck
.h"
58
chrome_content_renderer_client_.SetSpellcheck(new
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_;
chrome_content_renderer_client.cc
112
#include "chrome/renderer/spellchecker/
spellcheck
.h"
176
explicit SpellCheckReplacer(
SpellCheck
*
spellcheck
)
177
: spellcheck_(
spellcheck
) {}
181
SpellCheck
* spellcheck_; // New shared
spellcheck
for all views. Weak Ptr.
239
// ChromeRenderViewTest::SetUp() creates a
Spellcheck
and injects it using
242
spellcheck_.reset(new
SpellCheck
());
[
all
...]
Completed in 214 milliseconds