HomeSort by relevance Sort by last modified time
    Searched defs:misspellingLocation (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/editing/
TextCheckingHelper.cpp 181 int misspellingLocation = -1;
183 m_client->textChecker()->checkSpellingOfString(chars, len, &misspellingLocation, &misspellingLength);
189 ASSERT(misspellingLocation >= -1);
190 ASSERT(!misspellingLength || misspellingLocation >= 0);
191 ASSERT(misspellingLocation < len);
193 ASSERT(misspellingLocation + misspellingLength <= len);
195 if (misspellingLocation >= 0 && misspellingLength > 0 && misspellingLocation < len && misspellingLength <= len && misspellingLocation + misspellingLength <= len) {
198 RefPtr<Range> misspellingRange = TextIterator::subrange(m_range.get(), currentChunkOffset + misspellingLocation, misspellingLength)
    [all...]
Editor.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]

Completed in 230 milliseconds