diff options
author | 2014-09-25 19:58:33 +0900 | |
---|---|---|
committer | 2014-09-26 15:15:16 +0900 | |
commit | 8a6e96d28645ce325a38423af6967a011edefc9d (patch) | |
tree | c6d3bf8693b6d95f2acb322b5801ae61983f70d6 /java/src/com/android/inputmethod/latin/makedict/FormatSpec.java | |
parent | f4329f7fffc43840b7fb95cf181ea016108a7664 (diff) | |
download | latinime-8a6e96d28645ce325a38423af6967a011edefc9d.tar.gz latinime-8a6e96d28645ce325a38423af6967a011edefc9d.tar.xz latinime-8a6e96d28645ce325a38423af6967a011edefc9d.zip |
Create a code point table based on occurrence counts.
Bug:17097992
Change-Id: Ifd76dbd4d385d800af416368e25c9e56a76d0fbf
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/FormatSpec.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/makedict/FormatSpec.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java index ec3c6e291..2661d5d48 100644 --- a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java +++ b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java @@ -237,6 +237,8 @@ public final class FormatSpec { static final int UINT16_MAX = 0xFFFF; static final int UINT24_MAX = 0xFFFFFF; static final int MSB8 = 0x80; + static final int MINIMAL_ONE_BYTE_CHARACTER_VALUE = 0x20; + static final int MAXIMAL_ONE_BYTE_CHARACTER_VALUE = 0xFF; /** * Options about file format. |