diff options
author | 2013-08-16 08:00:54 +0000 | |
---|---|---|
committer | 2013-08-16 08:00:55 +0000 | |
commit | 21dddb1462df8f32b40365dbb27930ae6c8113b8 (patch) | |
tree | d0e17e20e3114d0814c2b723d0a50b61dcf96793 /java/src/com/android/inputmethod/latin/makedict/FormatSpec.java | |
parent | 2c67361c165cf5f8be106d04aad038b48a08790e (diff) | |
parent | af30cbf0ee8370763edf22822ea34a282e882084 (diff) | |
download | latinime-21dddb1462df8f32b40365dbb27930ae6c8113b8.tar.gz latinime-21dddb1462df8f32b40365dbb27930ae6c8113b8.tar.xz latinime-21dddb1462df8f32b40365dbb27930ae6c8113b8.zip |
Merge "Rename Node to PtNodeArray"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/makedict/FormatSpec.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/makedict/FormatSpec.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java index 9af66ed4c..5e331219c 100644 --- a/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java +++ b/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java @@ -60,7 +60,7 @@ public final class FormatSpec { */ /* - * Array of Node(FusionDictionary.Node) layout is as follows: + * Node array (FusionDictionary.PtNodeArray) layout is as follows: * * g | * r | the number of groups, 1 or 2 bytes. @@ -86,7 +86,7 @@ public final class FormatSpec { * linkaddress */ - /* Node(CharGroup) layout is as follows: + /* Node (FusionDictionary.CharGroup) layout is as follows: * | IF !SUPPORTS_DYNAMIC_UPDATE * | addressType xx : mask with MASK_GROUP_ADDRESS_TYPE * | 2 bits, 00 = no children : FLAG_GROUP_ADDRESS_TYPE_NOADDRESS @@ -251,7 +251,7 @@ public final class FormatSpec { static final int INVALID_CHARACTER = -1; static final int MAX_CHARGROUPS_FOR_ONE_BYTE_CHARGROUP_COUNT = 0x7F; // 127 - static final int MAX_CHARGROUPS_IN_A_NODE = 0x7FFF; // 32767 + static final int MAX_CHARGROUPS_IN_A_PT_NODE_ARRAY = 0x7FFF; // 32767 static final int MAX_BIGRAMS_IN_A_GROUP = 10000; static final int MAX_TERMINAL_FREQUENCY = 255; |