OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wordStart
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/core/java/android/widget/
SpellChecker.java
328
int
wordStart
= mWordIterator.preceding(start);
330
if (
wordStart
== BreakIterator.DONE) {
333
wordStart
= mWordIterator.getBeginning(wordEnd);
336
wordEnd = mWordIterator.getEnd(
wordStart
);
353
while (
wordStart
<= end) {
354
if (wordEnd >= start && wordEnd >
wordStart
) {
357
if (
wordStart
< start && wordEnd > start) {
362
if (
wordStart
< end && wordEnd > end) {
379
if (
wordStart
== end) {
394
addSpellCheckSpan(editable,
wordStart
, wordEnd)
[
all
...]
/external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.cpp
411
int
wordStart
= indexOfFirstWordCharacter(textString.c_str());
412
if (-1 ==
wordStart
)
414
wstring word = textString.substr(
wordStart
, wordLength(textString.c_str() +
wordStart
));
417
*misspellingLocation =
wordStart
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java
[
all
...]
/external/webkit/Source/WebCore/inspector/front-end/
TextEditorModel.js
190
return new WebInspector.TextRange(lineNumber, this.
wordStart
(lineNumber, column, true), lineNumber, this.wordEnd(lineNumber, column, true));
193
wordStart
: function(lineNumber, column, gapless)
/external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp
748
const char *
wordStart
= dateString;
752
if (dateString -
wordStart
>= 3)
753
month = findMonth(
wordStart
);
755
wordStart
= dateString;
761
if (month == -1 &&
wordStart
!= dateString)
762
month = findMonth(
wordStart
);
[
all
...]
/external/webkit/Source/WebKit/mac/WebView/
WebTextCompletionController.mm
131
NSPoint
wordStart
= topLeft;
132
windowFrame.origin = [[_view window] convertBaseToScreen:[_htmlView convertPoint:
wordStart
toView:nil]];
/cts/tests/tests/text/src/android/text/method/cts/
ArrowKeyMovementMethodTest.java
[
all
...]
/external/webkit/Source/WebCore/editing/
Editor.h
222
void markMisspellingsAfterTypingToWord(const VisiblePosition &
wordStart
, const VisibleSelection& selectionAfterTyping, bool doReplacement);
Editor.cpp
[
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
...]
Completed in 1922 milliseconds