Home | History | Annotate | Download | only in common

Lines Matching full:category

925     int16_t             category        = 0;
941 RBBIDebugPuts("Handle Next pos char state category");
966 category = 2;
990 // Run the loop one last time with the fake end-of-input character category.
992 category = 1;
996 // Get the char category. An incoming category of 1 or 2 means that
998 // that we shouldn't get a category from an actual text input character.
1001 // look up the current character's character category, which tells us
1006 UTRIE_GET16(&fData->fTrie, c, category);
1008 // Check the dictionary bit in the character's category.
1011 // in their category values.
1013 if ((category & 0x4000) != 0) {
1016 category &= ~0x4000;
1028 RBBIDebugPrintf("%3d %3d\n", state, category);
1034 state = row->fNextState[category];
1137 int16_t category = 0;
1149 RBBIDebugPuts("Handle Previous pos char state category");
1174 category = 3;
1177 category = 2;
1207 // Run the loop one last time with the fake end-of-input character category.
1209 category = 1;
1213 // Get the char category. An incoming category of 1 or 2 means that
1215 // that we shouldn't get a category from an actual text input character.
1218 // look up the current character's character category, which tells us
1223 UTRIE_GET16(&fData->fTrie, c, category);
1225 // Check the dictionary bit in the character's category.
1228 // in their category values.
1230 if ((category & 0x4000) != 0) {
1233 category &= ~0x4000;
1245 RBBIDebugPrintf("%3d %3d\n", state, category);
1251 state = row->fNextState[category];
1525 // isDictionaryChar Return true if the category lookup for this char
1537 uint16_t category;
1538 UTRIE_GET16(&fData->fTrie, c, category);
1539 return (category & 0x4000) != 0;
1573 uint16_t category;
1580 UTRIE_GET16(&fData->fTrie, c, category);
1587 if (category & 0x4000) {
1592 UTRIE_GET16(&fData->fTrie, c, category);
1593 } while (c != U_SENTINEL && (category & 0x4000));
1608 UTRIE_GET16(&fData->fTrie, c, category);
1610 while (c != U_SENTINEL && (category & 0x4000));
1622 UTRIE_GET16(&fData->fTrie, c, category);
1633 UTRIE_GET16(&fData->fTrie, c, category);
1636 while((current = (int32_t)UTEXT_GETNATIVEINDEX(fText)) < rangeEnd && (category & 0x4000) == 0) {
1639 UTRIE_GET16(&fData->fTrie, c, category);
1657 UTRIE_GET16(&fData->fTrie, c, category);