HomeSort by relevance Sort by last modified time
    Searched defs:wordStart (Results 1 - 9 of 9) 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)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
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;
  /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);
  /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);
  /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);
  /frameworks/base/core/java/android/widget/
SpellChecker.java 562 int wordStart = mWordIterator.preceding(start);
564 if (wordStart == BreakIterator.DONE) {
567 wordStart = mWordIterator.getBeginning(wordEnd);
570 wordEnd = mWordIterator.getEnd(wordStart);
613 int spellCheckStart = wordStart;
662 wordStart = spellCheckEnd;
664 while (wordStart <= end) {
665 if (wordEnd >= start && wordEnd > wordStart) {
673 if (wordStart < start && wordEnd > start) {
678 if (wordStart < end && wordEnd > end)
    [all...]
  /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/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...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 238 milliseconds