Searched refs:fDtran (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBITableBuilder.java | 50 int[] fDtran; // Transitions out of this state. field in RBBITableBuilder.RBBIStateDescriptor 58 fDtran = new int[maxInputSymbol+1]; // fDtran needs to be pre-sized. in RBBIStateDescriptor() 607 T.fDtran[a] = ux; in buildStateTable() 856 table_base = sd.fDtran[categories.first]; in findDuplCharClassFrom() 857 table_dupl = sd.fDtran[categories.second]; in findDuplCharClassFrom() 878 assert(column < sd.fDtran.length); in removeColumn() 879 int[] newArray = Arrays.copyOf(sd.fDtran, sd.fDtran.length - 1); in removeColumn() 880 System.arraycopy(sd.fDtran, column+1, newArray, column, newArray.length - column); in removeColumn() 881 sd.fDtran = newArray; in removeColumn() 910 int firstVal = firstSD.fDtran[col]; [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RBBITableBuilder.java | 51 int[] fDtran; // Transitions out of this state. field in RBBITableBuilder.RBBIStateDescriptor 59 fDtran = new int[maxInputSymbol+1]; // fDtran needs to be pre-sized. in RBBIStateDescriptor() 608 T.fDtran[a] = ux; in buildStateTable() 857 table_base = sd.fDtran[categories.first]; in findDuplCharClassFrom() 858 table_dupl = sd.fDtran[categories.second]; in findDuplCharClassFrom() 879 assert(column < sd.fDtran.length); in removeColumn() 880 int[] newArray = Arrays.copyOf(sd.fDtran, sd.fDtran.length - 1); in removeColumn() 881 System.arraycopy(sd.fDtran, column+1, newArray, column, newArray.length - column); in removeColumn() 882 sd.fDtran = newArray; in removeColumn() 911 int firstVal = firstSD.fDtran[col]; [all …]
|
/external/icu/icu4c/source/common/ |
D | rbbitblb.cpp | 696 T->fDtran->setElementAt(ux, a); in buildStateTable() 1092 table_base = (uint16_t)sd->fDtran->elementAti(categories->first); in findDuplCharClassFrom() 1093 table_dupl = (uint16_t)sd->fDtran->elementAti(categories->second); in findDuplCharClassFrom() 1114 U_ASSERT(column < sd->fDtran->size()); in removeColumn() 1115 sd->fDtran->removeElementAt(column); in removeColumn() 1137 int32_t firstVal = firstSD->fDtran->elementAti(col); in findDuplicateState() 1138 int32_t duplVal = duplSD->fDtran->elementAti(col); in findDuplicateState() 1198 int32_t existingVal = sd->fDtran->elementAti(col); in removeState() 1205 sd->fDtran->setElementAt(newVal, col); in removeState() 1332 row->fNextState[col] = (uint16_t)sd->fDtran->elementAti(col); in exportTable() [all …]
|
D | rbbitblb.h | 197 UVector32 *fDtran; // Transitions out of this state. variable
|