OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:wordProperty
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
Ver4DictDecoder.java
68
final ArrayList<
WordProperty
> wordProperties = new ArrayList<>();
72
final
WordProperty
wordProperty
= result.mWordProperty;
73
if (
wordProperty
== null) {
80
wordProperties.add(
wordProperty
);
85
for (final
WordProperty
wordProperty
: wordProperties) {
86
fusionDict.add(
wordProperty
.mWord,
wordProperty
.mProbabilityInfo,
87
wordProperty
.mIsNotAWord
[
all
...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryTests.java
30
import com.android.inputmethod.latin.makedict.
WordProperty
;
[
all
...]
/packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp
352
const
WordProperty
wordProperty
= dictionary->getWordProperty(
354
JniDataUtils::outputWordProperty(env,
wordProperty
, outCodePoints, outFlags, outProbabilityInfo,
572
const
WordProperty
wordProperty
= dictionary->getWordProperty(
588
&
wordProperty
.getUnigramProperty())) {
597
const
WordProperty
wordProperty
= dictionary->getWordProperty(
607
for (const NgramProperty &ngramProperty :
wordProperty
.getNgramProperties()) {
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableBinaryDictionary.java
30
import com.android.inputmethod.latin.makedict.
WordProperty
;
78
private static final
WordProperty
[] DEFAULT_WORD_PROPERTIES_FOR_SYNC =
79
new
WordProperty
[0] /* default */;
711
final
WordProperty
wordProperty
= result.mWordProperty;
712
if (
wordProperty
== null) {
716
Log.d(tag,
wordProperty
.toString());
726
public
WordProperty
[] getWordPropertiesForSyncing() {
728
final AsyncResultHolder<
WordProperty
[]> result =
733
final ArrayList<
WordProperty
> wordPropertyList = new ArrayList<>()
[
all
...]
Completed in 99 milliseconds