HomeSort by relevance Sort by last modified time
    Searched refs:stateProps (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/common/
ucnvmbcs.cpp 631 enumToU(UConverterMBCSTable *mbcsTable, int8_t stateProps[],
648 b=(stateProps[state]&0x38)<<2;
649 if(b==0 && stateProps[state]>=0x40) {
654 limit=((stateProps[state]&7)+1)<<5;
659 if(stateProps[nextState]>=0) {
662 mbcsTable, stateProps, nextState,
728 * Only called if stateProps[state]==-1.
729 * A recursive call may do stateProps[state]|=0x40 if this state is the target of an
733 getStateProp(const int32_t (*stateTable)[256], int8_t stateProps[], int state) {
738 stateProps[state]=0
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetMBCS.java 690 byte stateProps[] = new byte[MBCS_MAX_STATE_COUNT];
693 /* recurse from state 0 and set all stateProps */
694 getStateProp(mbcsTable.stateTable, stateProps, 0);
697 if (stateProps[state] >= 0x40) {
699 enumToU(mbcsTable, stateProps, state, 0, 0);
706 private static boolean enumToU(UConverterMBCSTable mbcsTable, byte stateProps[], int state, int offset, int value) {
719 b = (stateProps[state]&0x38)<<2;
720 if (b == 0 && stateProps[state] >= 0x40) {
725 limit = ((stateProps[state]&7)+1)<<5;
730 if (stateProps[nextState] >= 0)
    [all...]

Completed in 408 milliseconds