Home | History | Annotate | Download | only in common

Lines Matching refs:category

991     uint16_t            category        = 0;
1007 RBBIDebugPuts("Handle Next pos char state category");
1032 category = 2;
1056 // Run the loop one last time with the fake end-of-input character category.
1058 category = 1;
1062 // Get the char category. An incoming category of 1 or 2 means that
1064 // that we shouldn't get a category from an actual text input character.
1067 // look up the current character's character category, which tells us
1072 UTRIE_GET16(&fData->fTrie, c, category);
1074 // Check the dictionary bit in the character's category.
1077 // in their category values.
1079 if ((category & 0x4000) != 0) {
1082 category &= ~0x4000;
1094 RBBIDebugPrintf("%3d %3d\n", state, category);
1104 U_ASSERT(category<fData->fHeader->fCatCount);
1105 state = row->fNextState[category]; /*Not accessing beyond memory*/
1208 uint16_t category = 0;
1220 RBBIDebugPuts("Handle Previous pos char state category");
1245 category = 3;
1248 category = 2;
1276 // Run the loop one last time with the fake end-of-input character category.
1278 category = 1;
1282 // Get the char category. An incoming category of 1 or 2 means that
1284 // that we shouldn't get a category from an actual text input character.
1287 // look up the current character's character category, which tells us
1292 UTRIE_GET16(&fData->fTrie, c, category);
1294 // Check the dictionary bit in the character's category.
1297 // in their category values.
1299 if ((category & 0x4000) != 0) {
1302 category &= ~0x4000;
1314 RBBIDebugPrintf("%3d %3d\n", state, category);
1324 U_ASSERT(category<fData->fHeader->fCatCount);
1325 state = row->fNextState[category]; /*Not accessing beyond memory*/
1588 // isDictionaryChar Return true if the category lookup for this char
1600 uint16_t category;
1601 UTRIE_GET16(&fData->fTrie, c, category);
1602 return (category & 0x4000) != 0;
1662 uint16_t category;
1669 UTRIE_GET16(&fData->fTrie, c, category);
1676 if (category & 0x4000) {
1681 UTRIE_GET16(&fData->fTrie, c, category);
1682 } while (c != U_SENTINEL && (category & 0x4000));
1697 UTRIE_GET16(&fData->fTrie, c, category);
1699 while (c != U_SENTINEL && (category & 0x4000));
1711 UTRIE_GET16(&fData->fTrie, c, category);
1722 UTRIE_GET16(&fData->fTrie, c, category);
1725 while((current = (int32_t)UTEXT_GETNATIVEINDEX(fText)) < rangeEnd && (category & 0x4000) == 0) {
1728 UTRIE_GET16(&fData->fTrie, c, category);
1746 UTRIE_GET16(&fData->fTrie, c, category);