OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wordLength
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/third_party/WebKit/Source/testing/runner/
MockSpellCheck.cpp
89
int
wordLength
;
98
wordLength
= static_cast<int>(m_misspelledWords.at(i).length()) > maxWordLength ? maxWordLength : static_cast<int>(m_misspelledWords.at(i).length());
99
word = stringText.substr(wordOffset,
wordLength
);
100
if (word == m_misspelledWords.at(i) && (static_cast<int>(stringText.length()) == wordOffset +
wordLength
|| isNotASCIIAlpha(stringText[wordOffset +
wordLength
]))) {
102
*misspelledLength =
wordLength
;
112
wordLength
= static_cast<int>(stringText.length()) - wordOffset;
114
wordLength
= distance(firstChar, lastChar);
116
BLINK_ASSERT(0 < wordOffset +
wordLength
);
117
stringText = stringText.substr(wordOffset +
wordLength
);
[
all
...]
/external/icu4c/common/
dictbe.cpp
247
int32_t
wordLength
;
256
wordLength
= 0;
263
wordLength
= words[wordsFound % THAI_LOOKAHEAD].acceptMarked(text);
299
wordLength
= words[wordsFound % THAI_LOOKAHEAD].acceptMarked(text);
308
if ((int32_t)utext_getNativeIndex(text) < rangeEnd &&
wordLength
< THAI_ROOT_COMBINE_THRESHOLD) {
313
&& (
wordLength
== 0
317
int32_t remaining = rangeEnd - (current+
wordLength
);
336
utext_setNativeIndex(text, current +
wordLength
+ chars);
345
if (
wordLength
<= 0) {
350
wordLength
+= chars
[
all
...]
/external/chromium_org/third_party/icu/source/common/
dictbe.cpp
256
int32_t
wordLength
;
265
wordLength
= 0;
272
wordLength
= words[wordsFound%THAI_LOOKAHEAD].acceptMarked(text);
309
wordLength
= words[wordsFound%THAI_LOOKAHEAD].acceptMarked(text);
318
if ((int32_t)utext_getNativeIndex(text) < rangeEnd &&
wordLength
< THAI_ROOT_COMBINE_THRESHOLD) {
323
&& (
wordLength
== 0
327
int32_t remaining = rangeEnd - (current+
wordLength
);
346
utext_setNativeIndex(text, current+
wordLength
+chars);
355
if (
wordLength
<= 0) {
360
wordLength
+= chars
[
all
...]
/packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp
235
const jsize
wordLength
= env->GetArrayLength(word);
236
int codePoints[
wordLength
];
237
env->GetIntArrayRegion(word, 0,
wordLength
, codePoints);
238
return dictionary->getProbability(codePoints,
wordLength
);
285
jsize
wordLength
= env->GetArrayLength(word);
286
int codePoints[
wordLength
];
287
env->GetIntArrayRegion(word, 0,
wordLength
, codePoints);
288
dictionary->addUnigramWord(codePoints,
wordLength
, probability);
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp
82
int
wordLength
= wordEnd - wordStart;
85
client.checkSpellingOfString(String(text + start + wordStart,
wordLength
), &misspellingLocation, &misspellingLength);
87
ASSERT(0 <= misspellingLocation && misspellingLocation <=
wordLength
);
88
ASSERT(0 < misspellingLength && misspellingLocation + misspellingLength <=
wordLength
);
SpellChecker.cpp
329
int
wordLength
= word.length();
334
return misspellingLength ==
wordLength
? word : String();
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java
264
int
wordLength
, int score) {
282
// mBestSuggestion = new String(word, wordOffset,
wordLength
);
293
final String wordString = new String(word, wordOffset,
wordLength
);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java
189
final int
wordLength
= word.length();
190
if (
wordLength
<= depth) return;
210
if (
wordLength
== depth + 1) {
561
final int
wordLength
= word.length();
579
if (
wordLength
== depth + 1) {
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockLineLayout.cpp
497
int
wordLength
= lastEndOffset - wordMeasurement.startOffset;
498
measuredWidth += renderer->width(wordMeasurement.startOffset,
wordLength
, xPos, lineInfo.isFirstLine());
499
if (i > 0 &&
wordLength
== 1 && renderer->characterAt(wordMeasurement.startOffset) == ' ')
[
all
...]
/prebuilts/devtools/tools/lib/
lint-checks.jar
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.2.0/
lint-checks-22.2.0.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar
/prebuilts/misc/common/icu4j/
icu4j.jar
Completed in 1315 milliseconds