Home | History | Annotate | Download | only in lib

Lines Matching defs:props

683     picoos_uint8 *props;
687 /* bitmasks to extract the property info from props */
707 ktabphones->props = &(this->base[KTAB_START_PROPS]);
747 return (KTAB_PPROP_VOWEL & ((ktabphones_SubObj)this)->props[ch]);
751 return (KTAB_PPROP_DIPHTH & ((ktabphones_SubObj)this)->props[ch]);
755 return (KTAB_PPROP_GLOTT & ((ktabphones_SubObj)this)->props[ch]);
759 return (KTAB_PPROP_NONSYLLVOWEL & ((ktabphones_SubObj)this)->props[ch]);
763 return (KTAB_PPROP_SYLLCONS & ((ktabphones_SubObj)this)->props[ch]);
768 picoos_uint8 props;
769 props = ((ktabphones_SubObj)this)->props[ch];
770 return (((KTAB_PPROP_VOWEL & props) &&
771 !(KTAB_PPROP_NONSYLLVOWEL & props))
772 || (KTAB_PPROP_SYLLCONS & props));