/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)
|
/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/ |
SpellChecker.h | 62 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 | 360 void SpellChecker::markMisspellingsAfterTypingToWord(const VisiblePosition &wordStart, const VisibleSelection& selectionAfterTyping) 374 VisibleSelection adjacentWords = VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)); 376 VisibleSelection selectedSentence = VisibleSelection(startOfSentence(wordStart), endOfSentence(wordStart)); 389 markMisspellings(VisibleSelection(startOfWord(wordStart, LeftWordIfOnBoundary), endOfWord(wordStart, RightWordIfOnBoundary)), misspellingRange); 417 markBadGrammar(VisibleSelection(startOfSentence(wordStart), endOfSentence(wordStart))); [all...] |
/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...] |
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
WebAXObjectProxy.cpp | 412 void getBoundariesForOneWord(const WebAXObject& object, int characterIndex, int& wordStart, int& wordEnd) 432 wordStart = start; 440 wordStart = start + starts[j]; 447 wordStart = start + starts[wordCount - 1]; 554 bindMethod("wordStart", &WebAXObjectProxy::wordStartCallback); [all...] |
TestRunner.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
CodeMirrorTextEditor.js | 890 var wordStart = column - 1; 891 while(wordStart > 0 && WebInspector.TextUtils.isWordChar(line.charAt(wordStart - 1))) 892 --wordStart; 894 return new WebInspector.TextRange(lineNumber, wordStart, lineNumber, column); 898 return new WebInspector.TextRange(lineNumber, wordStart, lineNumber, wordEnd); [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
ArrowKeyMovementMethodTest.java | [all...] |
/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...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebFrameImpl.cpp | [all...] |