Home | History | Annotate | Download | only in common

Lines Matching refs:category

990     uint16_t            category        = 0;
1006 RBBIDebugPuts("Handle Next pos char state category");
1031 category = 2;
1055 // Run the loop one last time with the fake end-of-input character category.
1057 category = 1;
1061 // Get the char category. An incoming category of 1 or 2 means that
1063 // that we shouldn't get a category from an actual text input character.
1066 // look up the current character's character category, which tells us
1071 UTRIE_GET16(&fData->fTrie, c, category);
1073 // Check the dictionary bit in the character's category.
1076 // in their category values.
1078 if ((category & 0x4000) != 0) {
1081 category &= ~0x4000;
1093 RBBIDebugPrintf("%3d %3d\n", state, category);
1103 U_ASSERT(category<fData->fHeader->fCatCount);
1104 state = row->fNextState[category]; /*Not accessing beyond memory*/
1207 uint16_t category = 0;
1219 RBBIDebugPuts("Handle Previous pos char state category");
1244 category = 3;
1247 category = 2;
1275 // Run the loop one last time with the fake end-of-input character category.
1277 category = 1;
1281 // Get the char category. An incoming category of 1 or 2 means that
1283 // that we shouldn't get a category from an actual text input character.
1286 // look up the current character's character category, which tells us
1291 UTRIE_GET16(&fData->fTrie, c, category);
1293 // Check the dictionary bit in the character's category.
1296 // in their category values.
1298 if ((category & 0x4000) != 0) {
1301 category &= ~0x4000;
1313 RBBIDebugPrintf("%3d %3d\n", state, category);
1323 U_ASSERT(category<fData->fHeader->fCatCount);
1324 state = row->fNextState[category]; /*Not accessing beyond memory*/
1542 // isDictionaryChar Return true if the category lookup for this char
1554 uint16_t category;
1555 UTRIE_GET16(&fData->fTrie, c, category);
1556 return (category & 0x4000) != 0;
1616 uint16_t category;
1623 UTRIE_GET16(&fData->fTrie, c, category);
1630 if (category & 0x4000) {
1635 UTRIE_GET16(&fData->fTrie, c, category);
1636 } while (c != U_SENTINEL && (category & 0x4000));
1651 UTRIE_GET16(&fData->fTrie, c, category);
1653 while (c != U_SENTINEL && (category & 0x4000));
1665 UTRIE_GET16(&fData->fTrie, c, category);
1676 UTRIE_GET16(&fData->fTrie, c, category);
1679 while((current = (int32_t)UTEXT_GETNATIVEINDEX(fText)) < rangeEnd && (category & 0x4000) == 0) {
1682 UTRIE_GET16(&fData->fTrie, c, category);
1700 UTRIE_GET16(&fData->fTrie, c, category);