Lines Matching refs:prop

45 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which);
53 static UBool defaultContains(const BinaryProperty &prop, UChar32 c, UProperty /*which*/) { in defaultContains() argument
55 return (u_getUnicodeProperties(c, prop.column)&prop.mask)!=0; in defaultContains()
283 const BinaryProperty &prop=binProps[which]; in u_hasBinaryProperty() local
284 return prop.contains(prop, c, which); in u_hasBinaryProperty()
290 typedef int32_t IntPropertyGetValue(const IntProperty &prop, UChar32 c, UProperty which);
291 typedef int32_t IntPropertyGetMaxValue(const IntProperty &prop, UProperty which);
301 static int32_t defaultGetValue(const IntProperty &prop, UChar32 c, UProperty /*which*/) { in defaultGetValue() argument
303 return (int32_t)(u_getUnicodeProperties(c, prop.column)&prop.mask)>>prop.shift; in defaultGetValue()
306 static int32_t defaultGetMaxValue(const IntProperty &prop, UProperty /*which*/) { in defaultGetMaxValue() argument
307 return (uprv_getMaxValues(prop.column)&prop.mask)>>prop.shift; in defaultGetMaxValue()
310 static int32_t getMaxValueFromShift(const IntProperty &prop, UProperty /*which*/) { in getMaxValueFromShift() argument
311 return prop.shift; in getMaxValueFromShift()
460 const BinaryProperty &prop=binProps[which]; in u_getIntPropertyValue() local
461 return prop.contains(prop, c, which); in u_getIntPropertyValue()
464 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in u_getIntPropertyValue() local
465 return prop.getValue(prop, c, which); in u_getIntPropertyValue()
484 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in u_getIntPropertyMaxValue() local
485 return prop.getMaxValue(prop, which); in u_getIntPropertyMaxValue()
495 const BinaryProperty &prop=binProps[which]; in uprops_getSource() local
496 if(prop.mask!=0) { in uprops_getSource()
499 return (UPropertySource)prop.column; in uprops_getSource()
504 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in uprops_getSource() local
505 if(prop.mask!=0) { in uprops_getSource()
508 return (UPropertySource)prop.column; in uprops_getSource()