aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/makedict/FormatSpec.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-08-16 01:38:11 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-08-16 01:38:11 -0700
commit2b3ff52496dadabb0c1154de2f61b1304e62a313 (patch)
tree4121d7f7d019e62fa9adeecca46bc73c2e82dddd /java/src/com/android/inputmethod/latin/makedict/FormatSpec.java
parentd694477c3c8364f65adcff7271390693f8d50a78 (diff)
parent21dddb1462df8f32b40365dbb27930ae6c8113b8 (diff)
downloadlatinime-2b3ff52496dadabb0c1154de2f61b1304e62a313.tar.gz
latinime-2b3ff52496dadabb0c1154de2f61b1304e62a313.tar.xz
latinime-2b3ff52496dadabb0c1154de2f61b1304e62a313.zip
am 21dddb14: Merge "Rename Node to PtNodeArray"
* commit '21dddb1462df8f32b40365dbb27930ae6c8113b8': 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.java6
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;