Home | History | Annotate | Download | only in common

Lines Matching refs:category

960     int16_t             category        = 0;
976 RBBIDebugPuts("Handle Next pos char state category");
1001 category = 2;
1025 // Run the loop one last time with the fake end-of-input character category.
1027 category = 1;
1031 // Get the char category. An incoming category of 1 or 2 means that
1033 // that we shouldn't get a category from an actual text input character.
1036 // look up the current character's character category, which tells us
1041 UTRIE_GET16(&fData->fTrie, c, category);
1043 // Check the dictionary bit in the character's category.
1046 // in their category values.
1048 if ((category & 0x4000) != 0) {
1051 category &= ~0x4000;
1063 RBBIDebugPrintf("%3d %3d\n", state, category);
1069 state = row->fNextState[category];
1172 int16_t category = 0;
1184 RBBIDebugPuts("Handle Previous pos char state category");
1209 category = 3;
1212 category = 2;
1240 // Run the loop one last time with the fake end-of-input character category.
1242 category = 1;
1246 // Get the char category. An incoming category of 1 or 2 means that
1248 // that we shouldn't get a category from an actual text input character.
1251 // look up the current character's character category, which tells us
1256 UTRIE_GET16(&fData->fTrie, c, category);
1258 // Check the dictionary bit in the character's category.
1261 // in their category values.
1263 if ((category & 0x4000) != 0) {
1266 category &= ~0x4000;
1278 RBBIDebugPrintf("%3d %3d\n", state, category);
1284 state = row->fNextState[category];
1547 // isDictionaryChar Return true if the category lookup for this char
1559 uint16_t category;
1560 UTRIE_GET16(&fData->fTrie, c, category);
1561 return (category & 0x4000) != 0;
1619 uint16_t category;
1626 UTRIE_GET16(&fData->fTrie, c, category);
1633 if (category & 0x4000) {
1638 UTRIE_GET16(&fData->fTrie, c, category);
1639 } while (c != U_SENTINEL && (category & 0x4000));
1654 UTRIE_GET16(&fData->fTrie, c, category);
1656 while (c != U_SENTINEL && (category & 0x4000));
1668 UTRIE_GET16(&fData->fTrie, c, category);
1679 UTRIE_GET16(&fData->fTrie, c, category);
1682 while((current = (int32_t)UTEXT_GETNATIVEINDEX(fText)) < rangeEnd && (category & 0x4000) == 0) {
1685 UTRIE_GET16(&fData->fTrie, c, category);
1703 UTRIE_GET16(&fData->fTrie, c, category);