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

  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
NGramParser.java 43 static final class StateEntry
48 StateEntry(int theState, int theAction)
65 private StateEntry[][] stateTable = {
66 {new StateEntry(S_START, A_NULL), new StateEntry(S_LETTER, A_ADDC), new StateEntry(S_PUNCT, A_ADDS)},
67 {new StateEntry(S_LETTER, A_NULL), new StateEntry(S_LETTER, A_ADDC), new StateEntry(S_PUNCT, A_ADDS)},
68 {new StateEntry(S_PUNCT, A_NULL), new StateEntry(S_LETTER, A_ADDC), new StateEntry(S_PUNCT, A_NULL)
    [all...]
  /external/icu/icu4c/source/layout/
ContextualGlyphSubstitution.h 39 struct ContextualGlyphSubstitutionStateEntry : StateEntry
ContextualGlyphInsertion.h 44 struct ContextualGlyphInsertionStateEntry : StateEntry
IndicRearrangement.h 63 struct IndicRearrangementStateEntry : StateEntry
LigatureSubstitution.h 45 struct LigatureSubstitutionStateEntry : StateEntry
StateTables.h 101 struct StateEntry
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
StateManager.java 44 private Stack<StateEntry> mStack = new Stack<StateEntry>();
72 mStack.push(new StateEntry(data, state));
101 mStack.push(new StateEntry(data, state));
115 for (StateEntry entry : mStack) {
251 mStack.push(new StateEntry(data, state));
288 mStack.push(new StateEntry(data, activityState));
302 for (StateEntry entry : mStack) {
316 for (StateEntry entry : mStack) {
329 private static class StateEntry {
    [all...]
  /external/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 564 std::vector<int> StateEntry(numStates+1);
568 // to construct the StateEntry table.
573 StateEntry[i] = ValidTransitions;
585 if (ValidTransitions == StateEntry[i]) {
590 OS << " // state " << i << ": " << StateEntry[i];
591 if (StateEntry[i] != (ValidTransitions-1)) { // More than one transition.
619 OS << StateEntry[i] << ", ";
    [all...]

Completed in 224 milliseconds