OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_misspelledWords
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/testing/runner/
MockSpellCheck.h
78
std::vector<string16>
m_misspelledWords
;
MockSpellCheck.cpp
72
//
m_misspelledWords
and WebString has no find().
97
for (size_t i = 0; i <
m_misspelledWords
.size(); ++i) {
98
wordLength = static_cast<int>(
m_misspelledWords
.at(i).length()) > maxWordLength ? maxWordLength : static_cast<int>(
m_misspelledWords
.at(i).length());
100
if (word ==
m_misspelledWords
.at(i) && (static_cast<int>(stringText.length()) == wordOffset + wordLength || isNotASCIIAlpha(stringText[wordOffset + wordLength]))) {
183
m_misspelledWords
.clear();
185
m_misspelledWords
.push_back(string16(misspelledWords[i], misspelledWords[i] + strlen(misspelledWords[i])));
Completed in 124 milliseconds