am 599d8778: Specify OOV for the OOV word correction

* commit '599d8778f475f5d2f4db9ae34ad9f963d7b5f261':
  Specify OOV for the OOV word correction
main
Satoshi Kataoka 2013-05-27 18:11:14 -07:00 committed by Android Git Automerger
commit ba07f8c018
1 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,10 @@ class Dictionary {
static const int KIND_APP_DEFINED = 6; // Suggested by the application static const int KIND_APP_DEFINED = 6; // Suggested by the application
static const int KIND_SHORTCUT = 7; // A shortcut static const int KIND_SHORTCUT = 7; // A shortcut
static const int KIND_PREDICTION = 8; // A prediction (== a suggestion with no input) static const int KIND_PREDICTION = 8; // A prediction (== a suggestion with no input)
// KIND_RESUMED: A resumed suggestion (comes from a span, currently this type is used only
// in java for re-correction)
static const int KIND_RESUMED = 9;
static const int KIND_OOV_CORRECTION = 10; // Most probable string correction
static const int KIND_MASK_FLAGS = 0xFFFFFF00; // Mask to get the flags static const int KIND_MASK_FLAGS = 0xFFFFFF00; // Mask to get the flags
static const int KIND_FLAG_POSSIBLY_OFFENSIVE = 0x80000000; static const int KIND_FLAG_POSSIBLY_OFFENSIVE = 0x80000000;