Home | History | Annotate | Download | only in common

Lines Matching defs:props

144     uint16_t props=UTRIE2_GET16(&bdp->trie, c);
145 return (UCharDirection)UBIDI_GET_CLASS(props);
150 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
151 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT);
155 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) {
156 int32_t delta=UBIDI_GET_MIRROR_DELTA(props);
188 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
189 return getMirror(bdp, c, props);
194 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
195 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIFT);
200 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
201 return (UBool)UBIDI_GET_FLAG(props, UBIDI_JOIN_CONTROL_SHIFT);
206 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
207 return (UJoiningType)((props&UBIDI_JT_MASK)>>UBIDI_JT_SHIFT);
229 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
230 return (UBidiPairedBracketType)((props&UBIDI_BPT_MASK)>>UBIDI_BPT_SHIFT);
235 uint16_t props=UTRIE2_GET16(&bdp->trie, c);
236 if((props&UBIDI_BPT_MASK)==0) {
239 return getMirror(bdp, c, props);