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

  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 379 int wordStart = wordIterator.getBeginning(wordEnd);
381 Log.d(TAG, "iterator: break: ---- 1st word start = " + wordStart + ", end = "
384 while (wordStart <= end && wordEnd != BreakIterator.DONE
385 && wordStart != BreakIterator.DONE) {
386 if (wordEnd >= start && wordEnd > wordStart) {
387 final String query = originalText.subSequence(wordStart, wordEnd).toString();
389 wordItems.add(new SentenceWordItem(ti, wordStart, wordEnd));
398 wordStart = wordIterator.getBeginning(wordEnd);
  /frameworks/base/core/java/android/widget/
SpellChecker.java 566 int wordStart = mWordIterator.preceding(start);
568 if (wordStart == BreakIterator.DONE) {
571 wordStart = mWordIterator.getBeginning(wordEnd);
574 wordEnd = mWordIterator.getEnd(wordStart);
617 int spellCheckStart = wordStart;
666 wordStart = spellCheckEnd;
668 while (wordStart <= end) {
669 if (wordEnd >= start && wordEnd > wordStart) {
677 if (wordStart < start && wordEnd > start) {
682 if (wordStart < end && wordEnd > end)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp 76 int wordStart = textBreakCurrent(iterator);
77 while (0 <= wordStart) {
81 int wordLength = wordEnd - wordStart;
84 client->checkSpellingOfString(String(text + start + wordStart, wordLength), &misspellingLocation, &misspellingLength);
90 misspelling.location = start + wordStart + misspellingLocation;
96 wordStart = wordEnd;
Editor.cpp     [all...]
Editor.h 194 void markMisspellingsAfterTypingToWord(const VisiblePosition &wordStart, const VisibleSelection& selectionAfterTyping);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.cpp 772 const char *wordStart = dateString;
776 if (dateString - wordStart >= 3)
777 month = findMonth(wordStart);
779 wordStart = dateString;
785 if (month == -1 && wordStart != dateString)
786 month = findMonth(wordStart);
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
ArrowKeyMovementMethodTest.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CodeMirrorTextEditor.js 922 var wordStart = column - 1;
923 while(wordStart > 0 && WebInspector.TextUtils.isWordChar(line.charAt(wordStart - 1)))
924 --wordStart;
926 return new WebInspector.TextRange(lineNumber, wordStart, lineNumber, column);
930 return new WebInspector.TextRange(lineNumber, wordStart, lineNumber, wordEnd);
    [all...]
TextEditorModel.js 313 return new WebInspector.TextRange(lineNumber, this.wordStart(lineNumber, column, true), lineNumber, this.wordEnd(lineNumber, column, true));
322 wordStart: function(lineNumber, column, gapless)
  /external/icu4c/layout/
IndicReordering.cpp 320 le_bool noteMatra(const IndicClassTable *classTable, LEUnicode matra, le_uint32 matraIndex, FeatureMask matraFeatures, le_bool wordStart)
326 if (wordStart) {
    [all...]

Completed in 167 milliseconds