Home | History | Annotate | Download | only in layout

Lines Matching refs:le_uint8

63         le_uint8 nextState;
64 le_uint8 action;
66 le_uint8 getNextState() { return nextState; };
67 le_uint8 getAction() { return action; };
70 static le_int32 compose(const LEUnicode *input, le_int32 offset, le_int32 charCount, le_uint8 glyphSet,
77 static const le_uint8 classTable[];
80 inline static StateTransition getTransition(le_uint8 state, le_uint8 currClass);
82 static le_uint8 doTransition(StateTransition transition, LEUnicode currChar, le_int32 inputIndex, le_uint8 glyphSet,
85 static le_uint8 getNextState(LEUnicode ch, le_uint8 state, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorChar,
86 le_uint8 &charClass, LEUnicode *output, LEGlyphStorage &glyphStorage, le_int32 &outputIndex);
88 static le_bool isLegalHere(LEUnicode ch, le_uint8 prevState);
89 static le_uint8 getCharClass(LEUnicode ch);
91 static LEUnicode noDescenderCOD(LEUnicode cod, le_uint8 glyphSet);
92 static LEUnicode leftAboveVowel(LEUnicode vowel, le_uint8 glyphSet);
93 static LEUnicode lowerBelowVowel(LEUnicode vowel, le_uint8 glyphSet);
94 static LEUnicode lowerRightTone(LEUnicode tone, le_uint8 glyphSet);
95 static LEUnicode lowerLeftTone(LEUnicode tone, le_uint8 glyphSet);
96 static LEUnicode upperLeftTone(LEUnicode tone, le_uint8 glyphSet);
100 inline ThaiShaping::StateTransition ThaiShaping::getTransition(le_uint8 state, le_uint8 currClass)