Home
last modified time | relevance | path

Searched refs:misspellingLength (Results 1 – 13 of 13) sorted by relevance

/external/webkit/WebCore/editing/
DEditor.cpp1378 int misspellingLength = 0; in findFirstMisspellingInRange() local
1379 client->checkSpellingOfString(chars, len, &misspellingLocation, &misspellingLength); in findFirstMisspellingInRange()
1384 ASSERT(misspellingLength >= 0); in findFirstMisspellingInRange()
1386 ASSERT(misspellingLength == 0 || misspellingLocation >= 0); in findFirstMisspellingInRange()
1388 ASSERT(misspellingLength <= len); in findFirstMisspellingInRange()
1389 ASSERT(misspellingLocation + misspellingLength <= len); in findFirstMisspellingInRange()
1391 …ocation >= 0 && misspellingLength > 0 && misspellingLocation < len && misspellingLength <= len && … in findFirstMisspellingInRange()
1396 firstMisspelling = String(chars + misspellingLocation, misspellingLength); in findFirstMisspellingInRange()
1404 …= TextIterator::subrange(searchRange, currentChunkOffset + misspellingLocation, misspellingLength); in findFirstMisspellingInRange()
1704 int misspellingLength = 0; in isSelectionMisspelled() local
[all …]
/external/webkit/WebKit/android/WebCoreSupport/
DEditorClientAndroid.h96 … checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/WebKit/wx/WebKitSupport/
DEditorClientWx.h102 … checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
DEditorClientWx.cpp403 …:checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength) in checkSpellingOfString() argument
/external/webkit/WebKit/qt/WebCoreSupport/
DEditorClientQt.h100 … checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/WebKit/win/WebCoreSupport/
DWebEditorClient.cpp636 …ckSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength) in checkSpellingOfString() argument
639 *misspellingLength = 0; in checkSpellingOfString()
646 ed->checkSpellingOfString(m_webView, text, length, misspellingLocation, misspellingLength); in checkSpellingOfString()
DWebEditorClient.h103 … checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/WebCore/page/
DEditorClient.h131 …ckSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength) = 0;
/external/webkit/WebKit/gtk/WebCoreSupport/
DEditorClientGtk.h104 … checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
/external/webkit/WebKit/mac/WebCoreSupport/
DWebEditorClient.h102 … checkSpellingOfString(const UChar*, int length, int* misspellingLocation, int* misspellingLength);
DWebEditorClient.mm552 …ckSpellingOfString(const UChar* text, int length, int* misspellingLocation, int* misspellingLength)
565 if (misspellingLength)
566 *misspellingLength = range.length;
/external/webkit/WebKitTools/DumpRenderTree/win/
DEditingDelegate.h130 /* [out] */ int *misspellingLength) { return E_NOTIMPL; } in checkSpellingOfString() argument
/external/webkit/WebKit/win/Interfaces/
DIWebEditingDelegate.idl179 … [in] LPCTSTR text, [in] int length, [out] int* misspellingLocation, [out] int* misspellingLength);