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

  /external/chromium_org/third_party/WebKit/public/web/
WebFindOptions.h 50 bool wordStart;
52 // When combined with wordStart, accepts a match in the middle of a word if the match begins with
60 , wordStart(false)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
SentenceLevelAdapter.java 144 int wordStart = wordIterator.getBeginningOfNextWord(originalText, start);
145 int wordEnd = wordIterator.getEndOfWord(originalText, wordStart);
146 while (wordStart <= end && wordEnd != -1 && wordStart != -1) {
147 if (wordEnd >= start && wordEnd > wordStart) {
148 CharSequence subSequence = originalText.subSequence(wordStart, wordEnd).toString();
151 wordItems.add(new SentenceWordItem(ti, wordStart, wordEnd));
153 wordStart = wordIterator.getBeginningOfNextWord(originalText, wordEnd);
154 if (wordStart == -1) {
157 wordEnd = wordIterator.getEndOfWord(originalText, wordStart);
    [all...]
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 378 int wordStart = wordIterator.getBeginning(wordEnd);
380 Log.d(TAG, "iterator: break: ---- 1st word start = " + wordStart + ", end = "
383 while (wordStart <= end && wordEnd != BreakIterator.DONE
384 && wordStart != BreakIterator.DONE) {
385 if (wordEnd >= start && wordEnd > wordStart) {
386 final CharSequence query = originalText.subSequence(wordStart, wordEnd);
389 wordItems.add(new SentenceWordItem(ti, wordStart, wordEnd));
398 wordStart = wordIterator.getBeginning(wordEnd);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellChecker.h 61 void markMisspellingsAfterTypingToWord(const VisiblePosition &wordStart, const VisibleSelection& selectionAfterTyping);
TextCheckingHelper.cpp 77 int wordStart = iterator->current();
78 while (0 <= wordStart) {
82 int wordLength = wordEnd - wordStart;
85 client.checkSpellingOfString(String(text + start + wordStart, wordLength), &misspellingLocation, &misspellingLength);
91 misspelling.location = start + wordStart + misspellingLocation;
97 wordStart = wordEnd;
SpellChecker.cpp 332 void SpellChecker::markMisspellingsAfterTypingToWord(const VisiblePosition &wordStart, const VisibleSelection& selectionAfterTyping)
346 VisibleSelection adjacentWords = VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary));
348 VisibleSelection selectedSentence = VisibleSelection(startOfSentence(wordStart), endOfSentence(wordStart));
361 markMisspellings(VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)), misspellingRange);
389 markBadGrammar(VisibleSelection(startOfSentence(wordStart), endOfSentence(wordStart)));
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
StreamingTextView.java 186 int wordStart = textStart + m.start();
188 DottySpan span = new DottySpan(text.charAt(m.start()), wordStart);
189 displayText.setSpan(span, wordStart, wordEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.cpp 578 const char *wordStart = dateString;
582 if (dateString - wordStart >= 3)
583 month = findMonth(wordStart);
585 wordStart = dateString;
591 if (month == -1 && wordStart != dateString)
592 month = findMonth(wordStart);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java     [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
ArrowKeyMovementMethodTest.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorTextEditor.js 923 var wordStart = column;
925 wordStart = column - 1;
926 while (wordStart > 0 && isWordChar(line.charAt(wordStart - 1)))
927 --wordStart;
932 return new WebInspector.TextRange(lineNumber, wordStart, lineNumber, wordEnd);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
TextFinder.cpp 124 | (options.wordStart ? AtWordStarts : 0)
  /external/icu/icu4c/source/layout/
IndicReordering.cpp 320 le_bool noteMatra(const IndicClassTable *classTable, LEUnicode matra, le_uint32 matraIndex, FeatureMask matraFeatures, le_bool wordStart)
326 if (wordStart) {
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
test_runner.cc     [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 445 milliseconds