OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBigrams
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
PtNodeInfo.java
32
public final ArrayList<PendingAttribute>
mBigrams
;
45
mBigrams
= bigrams;
FusionDictionary.java
85
ArrayList<WeightedString>
mBigrams
;
108
mBigrams
= bigrams;
119
mBigrams
= bigrams;
154
if (null ==
mBigrams
) return null;
155
final ArrayList<WeightedString> copyOfBigrams = new ArrayList<>(
mBigrams
);
169
if (
mBigrams
== null) {
170
mBigrams
= new ArrayList<>();
177
mBigrams
.add(bigram);
187
if (
mBigrams
!= null) {
188
final int size =
mBigrams
.size()
[
all
...]
BinaryDictEncoderUtils.java
106
if (null != ptNode.
mBigrams
) {
109
* ptNode.
mBigrams
.size();
337
if (null != ptNode.
mBigrams
) {
338
for (WeightedString bigram : ptNode.
mBigrams
) {
547
node.
mBigrams
!= null && !node.
mBigrams
.isEmpty(),
[
all
...]
BinaryDictIOUtils.java
118
if (ptNodeInfo.
mBigrams
!= null) {
119
bigrams.put(ptNodeInfo.mOriginalAddress, ptNodeInfo.
mBigrams
);
Completed in 2996 milliseconds