HomeSort by relevance Sort by last modified time
    Searched defs:occur (Results 1 - 2 of 2) sorted by null

  /development/tools/makedict/src/com/android/tools/dict/
MakeBinaryDictionary.java 149 private void addWordTop(String word, int occur) {
150 if (occur > 255) occur = 255;
156 newNode.freq = occur;
160 roots.get(index).freq += occur;
163 addWordRec(roots.get(index), word, 1, occur); local
169 private void addWordRec(CharNode parent, String word, int charAt, int occur) {
188 if (child.freq == 0) child.freq = occur;
190 addWordRec(child, word, charAt + 1, occur);
193 child.freq = occur;
    [all...]
  /external/libxml2/
tree.c 4528 int occur = 0, generic; local
    [all...]

Completed in 118 milliseconds