OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstWordLength
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/native/src/
correction.cpp
812
const int
firstWordLength
= isSpaceProximity ? spaceProximityPos : missingSpacePos;
[
all
...]
unigram_dictionary.cpp
400
const int
firstWordLength
= isSpaceProximity ? spaceProximityPos : missingSpacePos;
406
if (0 >=
firstWordLength
|| 0 >= secondWordLength || firstWordStartPos >= secondWordStartPos
410
const int newWordLength =
firstWordLength
+ secondWordLength + 1;
413
const int firstFreq = getMostFrequentWordLike(firstWordStartPos,
firstWordLength
, mWord);
419
for (int i = 0; i <
firstWordLength
; ++i) {
429
word[
firstWordLength
] = SPACE;
430
for (int i = (
firstWordLength
+ 1); i < newWordLength; ++i) {
431
word[i] = mWord[i -
firstWordLength
- 1];
[
all
...]
Completed in 15 milliseconds