Home | History | Annotate | Download | only in common

Lines Matching refs:category

1033     uint16_t            category        = 0;
1046 RBBIDebugPuts("Handle Next pos char state category");
1071 category = 2;
1087 // Run the loop one last time with the fake end-of-input character category.
1089 category = 1;
1093 // Get the char category. An incoming category of 1 or 2 means that
1095 // that we shouldn't get a category from an actual text input character.
1098 // look up the current character's character category, which tells us
1103 UTRIE_GET16(&fData->fTrie, c, category);
1105 // Check the dictionary bit in the character's category.
1108 // in their category values.
1110 if ((category & 0x4000) != 0) {
1113 category &= ~0x4000;
1125 RBBIDebugPrintf("%3d %3d\n", state, category);
1135 U_ASSERT(category<fData->fHeader->fCatCount);
1136 state = row->fNextState[category]; /*Not accessing beyond memory*/
1224 uint16_t category = 0;
1234 RBBIDebugPuts("Handle Previous pos char state category");
1259 category = 3;
1262 category = 2;
1284 // Run the loop one last time with the fake end-of-input character category.
1286 category = 1;
1290 // Get the char category. An incoming category of 1 or 2 means that
1292 // that we shouldn't get a category from an actual text input character.
1295 // look up the current character's character category, which tells us
1300 UTRIE_GET16(&fData->fTrie, c, category);
1302 // Check the dictionary bit in the character's category.
1305 // in their category values.
1307 if ((category & 0x4000) != 0) {
1310 category &= ~0x4000;
1322 RBBIDebugPrintf("%3d %3d\n", state, category);
1332 U_ASSERT(category<fData->fHeader->fCatCount);
1333 state = row->fNextState[category]; /*Not accessing beyond memory*/
1537 // isDictionaryChar Return true if the category lookup for this char
1549 uint16_t category;
1550 UTRIE_GET16(&fData->fTrie, c, category);
1551 return (category & 0x4000) != 0;
1587 uint16_t category;
1594 UTRIE_GET16(&fData->fTrie, c, category);
1601 if (category & 0x4000) {
1606 UTRIE_GET16(&fData->fTrie, c, category);
1607 } while (c != U_SENTINEL && (category & 0x4000));
1622 UTRIE_GET16(&fData->fTrie, c, category);
1624 while (c != U_SENTINEL && (category & 0x4000));
1636 UTRIE_GET16(&fData->fTrie, c, category);
1647 UTRIE_GET16(&fData->fTrie, c, category);
1650 while((current = (int32_t)UTEXT_GETNATIVEINDEX(fText)) < rangeEnd && (category & 0x4000) == 0) {
1653 UTRIE_GET16(&fData->fTrie, c, category);
1671 UTRIE_GET16(&fData->fTrie, c, category);