summaryrefslogtreecommitdiffstats
path: root/src/storage/chewing_large_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/chewing_large_table.h')
-rw-r--r--src/storage/chewing_large_table.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/storage/chewing_large_table.h b/src/storage/chewing_large_table.h
index af5adf7..2a6e5ca 100644
--- a/src/storage/chewing_large_table.h
+++ b/src/storage/chewing_large_table.h
@@ -42,13 +42,15 @@ protected:
[CHEWING_NUMBER_OF_FINALS][CHEWING_NUMBER_OF_TONES];
/* search functions */
- int initial_level_search(int word_length, /* in */ ChewingKey keys[],
+ int initial_level_search(int phrase_length, /* in */ ChewingKey keys[],
/* out */ PhraseIndexRanges ranges) const;
- int middle_and_final_level_search(ChewingInitial initial, int word_length,
+
+ int middle_and_final_level_search(ChewingInitial initial,
+ int phrase_length,
/* in */ ChewingKey keys[],
- /* out */ PhraseIndexRanges ranges)const;
+ /* out */ PhraseIndexRanges ranges) const;
int tone_level_search(ChewingInitial initial, ChewingMiddle middle,
- ChewingFinal final, int word_length,
+ ChewingFinal final, int phrase_length,
/* in */ ChewingKey keys[],
/* out */ PhraseIndexRanges ranges) const;