am 2d8f1b65: Merge "Make dict log cleanup." into lmp-dev

* commit '2d8f1b65dac731306b37a6f55c08975a2de0f719':
  Make dict log cleanup.
main
Akifumi Yoshimoto 2014-08-06 12:57:28 +00:00 committed by Android Git Automerger
commit adf2a2b9f7
1 changed files with 3 additions and 10 deletions

View File

@ -802,20 +802,13 @@ public class BinaryDictEncoderUtils {
}
MakedictLog.i("Statistics:\n"
+ " total file size " + size + "\n"
+ " Total file size " + size + "\n"
+ " " + ptNodeArrays.size() + " node arrays\n"
+ " " + ptNodes + " PtNodes (" + ((float)ptNodes / ptNodeArrays.size())
+ " PtNodes per node)\n"
+ " first terminal at " + firstTerminalAddress + "\n"
+ " last terminal at " + lastTerminalAddress + "\n"
+ " First terminal at " + firstTerminalAddress + "\n"
+ " Last terminal at " + lastTerminalAddress + "\n"
+ " PtNode stats : max = " + maxNodes);
for (int i = 0; i < ptNodeCounts.length; ++i) {
MakedictLog.i(" " + i + " : " + ptNodeCounts[i]);
}
MakedictLog.i(" Character run stats : max = " + maxRuns);
for (int i = 0; i < runCounts.length; ++i) {
MakedictLog.i(" " + i + " : " + runCounts[i]);
}
}
/**