/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | ThaiStateTable.java | 18 static Vector stateTable = null; field in ThaiStateTable 29 stateTable.addElement(stateRow); in newState() 71 ThaiStateTransition[] groundState = (ThaiStateTransition[]) stateTable.elementAt(0); in fixNextStates() 73 for (int s = 1; s < stateTable.size(); s += 1) { in fixNextStates() 74 ThaiStateTransition[] state = (ThaiStateTransition[]) stateTable.elementAt(s); in fixNextStates() 89 ThaiStateTransition[] stateRow = (ThaiStateTransition[]) stateTable.elementAt(state); in addState() 137 stateTable = new Vector(); 146 ThaiStateTransition[] row = (ThaiStateTransition[]) stateTable.elementAt(state); in getTransition() 171 for (int state = 0; state < stateTable.size(); state += 1) { in writeStateTable() 172 ThaiStateTransition[] row = (ThaiStateTransition[]) stateTable.elementAt(state); in writeStateTable() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ucmstate.c | 194 error=parseState(s, states->stateTable[states->countStates], in ucm_addState() 354 entry=states->stateTable[state][cell]; in sumUpStates() 358 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum); in sumUpStates() 362 states->stateTable[state][cell]=MBCS_ENTRY_FINAL_SET_VALUE(entry, sum); in sumUpStates() 374 entry=states->stateTable[state][cell]; in sumUpStates() 377 … states->stateTable[state][cell]=MBCS_ENTRY_TRANSITION_SET_OFFSET(entry, sum); in sumUpStates() 411 entry=states->stateTable[state][cell]; in sumUpStates() 413 states->stateTable[state][cell]=MBCS_ENTRY_TRANSITION_ADD_OFFSET(entry, sum2); in sumUpStates() 510 entry=states->stateTable[0][cell]; in ucm_processStates() 531 entry=states->stateTable[state][cell]; in ucm_processStates() [all …]
|
D | ucm.h | 94 int32_t stateTable[MBCS_MAX_STATE_COUNT][256]; member
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RuleBasedBreakIterator.java | 1158 private int handleNext(short stateTable[]) { in handleNext() argument 1186 int flagsState = fRData.getStateTableFlags(stateTable); in handleNext() 1266 state = stateTable[row + RBBIDataWrapper.NEXTSTATES + category]; in handleNext() 1269 if (stateTable[row + RBBIDataWrapper.ACCEPTING] == -1) { in handleNext() 1279 fLastRuleStatusIndex = stateTable[row + RBBIDataWrapper.TAGIDX]; in handleNext() 1282 if (stateTable[row + RBBIDataWrapper.LOOKAHEAD] != 0) { in handleNext() 1284 && stateTable[row + RBBIDataWrapper.ACCEPTING] == lookaheadStatus) { in handleNext() 1306 lookaheadStatus = stateTable[row + RBBIDataWrapper.LOOKAHEAD]; in handleNext() 1307 lookaheadTagIdx = stateTable[row + RBBIDataWrapper.TAGIDX]; in handleNext() 1311 if (stateTable[row + RBBIDataWrapper.ACCEPTING] != 0) { in handleNext() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RuleBasedBreakIterator.java | 1178 private int handleNext(short stateTable[]) { in handleNext() argument 1206 int flagsState = fRData.getStateTableFlags(stateTable); in handleNext() 1286 state = stateTable[row + RBBIDataWrapper.NEXTSTATES + category]; in handleNext() 1289 if (stateTable[row + RBBIDataWrapper.ACCEPTING] == -1) { in handleNext() 1299 fLastRuleStatusIndex = stateTable[row + RBBIDataWrapper.TAGIDX]; in handleNext() 1302 if (stateTable[row + RBBIDataWrapper.LOOKAHEAD] != 0) { in handleNext() 1304 && stateTable[row + RBBIDataWrapper.ACCEPTING] == lookaheadStatus) { in handleNext() 1326 lookaheadStatus = stateTable[row + RBBIDataWrapper.LOOKAHEAD]; in handleNext() 1327 lookaheadTagIdx = stateTable[row + RBBIDataWrapper.TAGIDX]; in handleNext() 1331 if (stateTable[row + RBBIDataWrapper.ACCEPTING] != 0) { in handleNext() [all …]
|
/external/icu/icu4c/source/common/ |
D | ucnvmbcs.cpp | 642 row=mbcsTable->stateTable[state]; in enumToU() 733 getStateProp(const int32_t (*stateTable)[256], int8_t stateProps[], int state) { in getStateProp() 737 row=stateTable[state]; in getStateProp() 745 getStateProp(stateTable, stateProps, nextState); in getStateProp() 766 getStateProp(stateTable, stateProps, nextState); in getStateProp() 783 getStateProp(stateTable, stateProps, nextState); in getStateProp() 832 getStateProp(mbcsTable->stateTable, stateProps, 0); in ucnv_MBCSEnumToUnicode() 1279 … mbcsTable->stateTable[0][EBCDIC_LF]==MBCS_ENTRY_FINAL(0, MBCS_STATE_VALID_DIRECT_16, U_LF) && in _EBCDICSwapLFNL() 1280 mbcsTable->stateTable[0][EBCDIC_NL]==MBCS_ENTRY_FINAL(0, MBCS_STATE_VALID_DIRECT_16, U_NL) in _EBCDICSwapLFNL() 1352 uprv_memcpy(newStateTable, mbcsTable->stateTable, mbcsTable->countStates*1024); in _EBCDICSwapLFNL() [all …]
|
D | ucnvmbcs.h | 373 const int32_t (*stateTable)/*[countStates]*/[256]; member 514 (UChar)MBCS_ENTRY_FINAL_VALUE_16((sharedData)->mbcs.stateTable[0][(uint8_t)(b)]) 525 (UBool)MBCS_ENTRY_IS_TRANSITION((sharedData)->mbcs.stateTable[0][(uint8_t)(byte)])
|
/external/jsilver/src/com/google/streamhtmlparser/impl/ |
D | ParserStateTable.java | 71 private final InternalState[][] stateTable; field in ParserStateTable 82 stateTable = new InternalState[MAX_STATES][MAX_CHARS]; in ParserStateTable() 113 result = stateTable[id][currentChar]; in getNextState() 171 stateTable[from.getId()][chr] = to; in setDestination()
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetMBCS.java | 75 int stateTable[/* countStates */][/* 256 */]; field in CharsetMBCS.UConverterMBCSTable 360 entry = mbcsTable.stateTable[0][0xe]; in loadConverter() 381 for (i = 0; i < mbcsTable.stateTable.length; ++i) in loadConverter() 382 System.arraycopy(mbcsTable.stateTable[i], 0, newStateTable[i], 0, in loadConverter() 383 mbcsTable.stateTable[i].length); in loadConverter() 398 mbcsTable.stateTable = newStateTable; in loadConverter() 486 … if (mbcsTable.stateTable[0][i] != MBCS_ENTRY_FINAL(0, MBCS_STATE_VALID_DIRECT_16, i)) { in loadConverter() 694 getStateProp(mbcsTable.stateTable, stateProps, 0); in MBCSEnumToUnicode() 713 row = mbcsTable.stateTable[state]; in enumToU() 799 private static byte getStateProp(int stateTable[][], byte stateProps[], int state) { in getStateProp() argument [all …]
|
D | UConverterDataReader.java | 489 mbcsTable.stateTable = new int[header.countStates][256]; in readMBCSTable() 492 intBuffer.get(mbcsTable.stateTable[i]); in readMBCSTable()
|
D | CharsetLMBCS.java | 720 … if (CharsetMBCS.MBCS_ENTRY_IS_TRANSITION(cnv.mbcs.stateTable[0][CurByte]) /* isLeadByte */) { in LMBCSGetNextUCharWorker()
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
D | NGramParser.java | 65 private StateEntry[][] stateTable = { field in NGramParser 139 StateEntry entry = stateTable[state][charClass]; in parse()
|
/external/icu/icu4c/source/layout/ |
D | HangulLayoutEngine.cpp | 75 static const StateTransition stateTable[][CC_COUNT] = variable 252 const StateTransition transition = stateTable[state][chClass]; in characterProcessing()
|
D | IndicReordering.cpp | 563 static const le_int8 stateTable[][CC_COUNT] = variable 613 state = stateTable[state][charClass & CF_CLASS_MASK]; in findSyllable()
|
/external/icu/icu4c/source/tools/makeconv/ |
D | genmbcs.cpp | 391 entry=mbcsData->ucm->states.stateTable[state][bytes[i++]]; in MBCSAddToUnicode() 452 mbcsData->ucm->states.stateTable[state][bytes[i-1]]=entry; in MBCSAddToUnicode() 1541 udata_writeBlock(pData, mbcsData->ucm->states.stateTable, header.countStates*1024); in MBCSWrite()
|