• Home
  • Raw
  • Download

Lines Matching refs:which

48 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which);
61 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which)… in caseBinaryPropertyContains() argument
62 return ucase_hasBinaryProperty(c, which); in caseBinaryPropertyContains()
96 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) { in isNormInert() argument
99 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode); in isNormInert()
280 u_hasBinaryProperty(UChar32 c, UProperty which) { in u_hasBinaryProperty() argument
282 if(which<UCHAR_BINARY_START || UCHAR_BINARY_LIMIT<=which) { in u_hasBinaryProperty()
286 const BinaryProperty &prop=binProps[which]; in u_hasBinaryProperty()
287 return prop.contains(prop, c, which); in u_hasBinaryProperty()
293 typedef int32_t IntPropertyGetValue(const IntProperty &prop, UChar32 c, UProperty which);
294 typedef int32_t IntPropertyGetMaxValue(const IntProperty &prop, UProperty which);
321 static int32_t biDiGetMaxValue(const IntProperty &/*prop*/, UProperty which) { in biDiGetMaxValue() argument
322 return ubidi_getMaxValue(GET_BIDI_PROPS(), which); in biDiGetMaxValue()
393 static int32_t getNormQuickCheck(const IntProperty &/*prop*/, UChar32 c, UProperty which) { in getNormQuickCheck() argument
394 …return (int32_t)unorm_getQuickCheck(c, (UNormalizationMode)(which-UCHAR_NFD_QUICK_CHECK+UNORM_NFD)… in getNormQuickCheck()
455 u_getIntPropertyValue(UChar32 c, UProperty which) { in u_getIntPropertyValue() argument
456 if(which<UCHAR_INT_START) { in u_getIntPropertyValue()
457 if(UCHAR_BINARY_START<=which && which<UCHAR_BINARY_LIMIT) { in u_getIntPropertyValue()
458 const BinaryProperty &prop=binProps[which]; in u_getIntPropertyValue()
459 return prop.contains(prop, c, which); in u_getIntPropertyValue()
461 } else if(which<UCHAR_INT_LIMIT) { in u_getIntPropertyValue()
462 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in u_getIntPropertyValue()
463 return prop.getValue(prop, c, which); in u_getIntPropertyValue()
464 } else if(which==UCHAR_GENERAL_CATEGORY_MASK) { in u_getIntPropertyValue()
476 u_getIntPropertyMaxValue(UProperty which) { in u_getIntPropertyMaxValue() argument
477 if(which<UCHAR_INT_START) { in u_getIntPropertyMaxValue()
478 if(UCHAR_BINARY_START<=which && which<UCHAR_BINARY_LIMIT) { in u_getIntPropertyMaxValue()
481 } else if(which<UCHAR_INT_LIMIT) { in u_getIntPropertyMaxValue()
482 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in u_getIntPropertyMaxValue()
483 return prop.getMaxValue(prop, which); in u_getIntPropertyMaxValue()
489 uprops_getSource(UProperty which) { in uprops_getSource() argument
490 if(which<UCHAR_BINARY_START) { in uprops_getSource()
492 } else if(which<UCHAR_BINARY_LIMIT) { in uprops_getSource()
493 const BinaryProperty &prop=binProps[which]; in uprops_getSource()
499 } else if(which<UCHAR_INT_START) { in uprops_getSource()
501 } else if(which<UCHAR_INT_LIMIT) { in uprops_getSource()
502 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in uprops_getSource()
508 } else if(which<UCHAR_STRING_START) { in uprops_getSource()
509 switch(which) { in uprops_getSource()
517 } else if(which<UCHAR_STRING_LIMIT) { in uprops_getSource()
518 switch(which) { in uprops_getSource()
544 switch(which) { in uprops_getSource()