Home | History | Annotate | Download | only in gencase

Lines Matching refs:row

180 The miscellaneous data takes up one pseudo-row and includes:
182 - number of UChars per row
477 /* make p point to row i-1 */
730 uint32_t *row;
766 while((row=upvec_getRow(pv, i, &start, &end))!=NULL && start<UPVEC_FIRST_SPECIAL_CP) {
767 value=*row;
774 * stop this loop because pv was changed and row is not valid any more
777 while((row=upvec_getRow(pv, i, NULL, &end))!=NULL && start>end) {
780 row=NULL; /* signal to continue with outer loop, without further ++i */
785 if(row==NULL) {
786 continue; /* see row=NULL above */
1045 uint32_t *row;
1051 while((row=upvec_getRow(pv, i, NULL, NULL))!=NULL) {
1052 value=*row;
1055 *row=(value&~(UGENCASE_EXC_MASK|UCASE_EXC_MASK))|(excIndex<<UCASE_EXC_SHIFT);
1070 const uint32_t *row;
1086 for(i=0; (row=upvec_getRow(pv, i, &start, &end))!=NULL; ++i) {
1087 if(start<UPVEC_FIRST_SPECIAL_CP && !utrie_setRange32(pTrie, start, end+1, *row, TRUE)) {