HomeSort by relevance Sort by last modified time
    Searched refs:stringText (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockSpellCheck.cpp 73 string16 stringText = text;
76 while (!stringText.empty()) {
84 string16::iterator firstChar = find_if(stringText.begin(), stringText.end(), isASCIIAlpha);
85 if (firstChar == stringText.end())
87 int wordOffset = distance(stringText.begin(), firstChar);
88 int maxWordLength = static_cast<int>(stringText.length()) - wordOffset;
99 word = stringText.substr(wordOffset, wordLength);
100 if (word == m_misspelledWords.at(i) && (static_cast<int>(stringText.length()) == wordOffset + wordLength || isNotASCIIAlpha(stringText[wordOffset + wordLength])))
    [all...]
MockGrammarCheck.cpp 47 string16 stringText = text;
48 if (find_if(stringText.begin(), stringText.end(), isASCIIAlpha) == stringText.end())
74 while ((offset = stringText.find(error, offset)) != string16::npos) {

Completed in 164 milliseconds