OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:spellcheckstart
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/core/java/android/widget/
SpellChecker.java
617
int
spellCheckStart
= wordStart;
627
if (spanEnd <
spellCheckStart
|| spellCheckEnd < spanStart) {
631
if (spanStart <=
spellCheckStart
&& spellCheckEnd <= spanEnd) {
642
spellCheckStart
= Math.min(spanStart,
spellCheckStart
);
648
+ ", End = " + spellCheckEnd + ", Start = " +
spellCheckStart
650
+ editable.subSequence(
spellCheckStart
, spellCheckEnd));
657
if (spellCheckEnd <=
spellCheckStart
) {
663
addSpellCheckSpan(editable,
spellCheckStart
, spellCheckEnd);
Completed in 84 milliseconds