Home | History | Annotate | Download | only in makedict

Lines Matching refs:mChildren

103         Node mChildren;
114 mChildren = null;
123 mChildren = children;
127 if (null == mChildren) {
128 mChildren = new Node();
130 mChildren.mData.add(n);
367 if (null == currentGroup.mChildren) break;
370 currentNode = currentGroup.mChildren;
396 currentGroup.mChildren = new Node();
397 currentGroup.mChildren.mData.add(newNode);
411 currentGroup.mBigrams, currentGroup.mFrequency, currentGroup.mChildren);
522 node = currentGroup.mChildren;
551 if (null != group.mChildren)
552 size += countCharGroups(group.mChildren);
567 if (null != group.mChildren)
568 size += countNodes(group.mChildren);
581 if (hasBigramsInternal(group.mChildren)) return true;
735 if (null != currentGroup.mChildren) {
736 currentPos = new Position(currentGroup.mChildren.mData);