Home | History | Annotate | Download | only in impl

Lines Matching refs:props

182     private final int getMirror(int c, int props) {
183 int delta=getMirrorDeltaFromProps(props);
212 int props=trie.get(c);
213 return getMirror(c, props);
249 int props=trie.get(c);
250 if((props&BPT_MASK)==0) {
253 return getMirror(c, props);
308 private static final int getClassFromProps(int props) {
309 return props&CLASS_MASK;
311 private static final boolean getFlagFromProps(int props, int shift) {
312 return ((props>>shift)&1)!=0;
314 private static final int getMirrorDeltaFromProps(int props) {
315 return (short)props>>MIRROR_DELTA_SHIFT;