diff options
author | 2014-09-29 20:40:16 +0000 | |
---|---|---|
committer | 2014-09-29 20:40:16 +0000 | |
commit | d5d0057a7cbc5e26114bc874406393a4287e8ed4 (patch) | |
tree | 3aaafd9d8c427cedf9305db8646e9ba0ea38ec8b /java/src/com/android/inputmethod/latin/makedict/FormatSpec.java | |
parent | ebc2e6f33e7633b22b6ed73d721b5c0790c9d7a0 (diff) | |
parent | 5e828b2c6187f9a50120444456090d18ad085c9b (diff) | |
download | latinime-d5d0057a7cbc5e26114bc874406393a4287e8ed4.tar.gz latinime-d5d0057a7cbc5e26114bc874406393a4287e8ed4.tar.xz latinime-d5d0057a7cbc5e26114bc874406393a4287e8ed4.zip |
am 5e828b2c: Merge "Create a code point table based on occurrence counts."
* commit '5e828b2c6187f9a50120444456090d18ad085c9b':
Create a code point table based on occurrence counts.
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. |