• Home
  • Raw
  • Download

Lines Matching full:which

47 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which);
55 static UBool defaultContains(const BinaryProperty &prop, UChar32 c, UProperty /*which*/) { in defaultContains()
60 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which)… in caseBinaryPropertyContains() argument
61 return ucase_hasBinaryProperty(c, which); in caseBinaryPropertyContains()
64 static UBool isBidiControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isBidiControl()
68 static UBool isMirrored(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isMirrored()
72 static UBool isJoinControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isJoinControl()
81 …UBool hasFullCompositionExclusion(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in hasFullCompositionExclusion()
95 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) { in isNormInert() argument
98 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode); in isNormInert()
108 static UBool changesWhenCasefolded(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in changesWhenCasefolded()
153 … UBool changesWhenNFKC_Casefolded(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in changesWhenNFKC_Casefolded()
181 static UBool isCanonSegmentStarter(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isCanonSegmentStarter()
190 static UBool isPOSIX_alnum(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isPOSIX_alnum()
194 static UBool isPOSIX_blank(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isPOSIX_blank()
198 static UBool isPOSIX_graph(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isPOSIX_graph()
202 static UBool isPOSIX_print(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isPOSIX_print()
206 static UBool isPOSIX_xdigit(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in isPOSIX_xdigit()
283 u_hasBinaryProperty(UChar32 c, UProperty which) { in u_hasBinaryProperty() argument
285 if(which<UCHAR_BINARY_START || UCHAR_BINARY_LIMIT<=which) { in u_hasBinaryProperty()
289 const BinaryProperty &prop=binProps[which]; in u_hasBinaryProperty()
290 return prop.contains(prop, c, which); in u_hasBinaryProperty()
296 typedef int32_t IntPropertyGetValue(const IntProperty &prop, UChar32 c, UProperty which);
297 typedef int32_t IntPropertyGetMaxValue(const IntProperty &prop, UProperty which);
307 static int32_t defaultGetValue(const IntProperty &prop, UChar32 c, UProperty /*which*/) { in defaultGetValue()
312 static int32_t defaultGetMaxValue(const IntProperty &prop, UProperty /*which*/) { in defaultGetMaxValue()
316 static int32_t getMaxValueFromShift(const IntProperty &prop, UProperty /*which*/) { in getMaxValueFromShift()
320 static int32_t getBiDiClass(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getBiDiClass()
324 static int32_t getBiDiPairedBracketType(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/… in getBiDiPairedBracketType()
328 static int32_t biDiGetMaxValue(const IntProperty &/*prop*/, UProperty which) { in biDiGetMaxValue() argument
329 return ubidi_getMaxValue(GET_BIDI_PROPS(), which); in biDiGetMaxValue()
337 static int32_t getCombiningClass(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getCombiningClass()
342 static int32_t getGeneralCategory(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getGeneralCategory()
346 static int32_t getJoiningGroup(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getJoiningGroup()
350 static int32_t getJoiningType(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getJoiningType()
354 static int32_t getNumericType(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getNumericType()
359 static int32_t getScript(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getScript()
385 static int32_t getHangulSyllableType(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getHangulSyllableType()
400 static int32_t getNormQuickCheck(const IntProperty &/*prop*/, UChar32 c, UProperty which) { in getNormQuickCheck() argument
401 …return (int32_t)unorm_getQuickCheck(c, (UNormalizationMode)(which-UCHAR_NFD_QUICK_CHECK+UNORM_NFD)… in getNormQuickCheck()
410 static int32_t getLeadCombiningClass(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getLeadCombiningClass()
420 static int32_t getTrailCombiningClass(const IntProperty &/*prop*/, UChar32 c, UProperty /*which*/) { in getTrailCombiningClass()
463 u_getIntPropertyValue(UChar32 c, UProperty which) { in u_getIntPropertyValue() argument
464 if(which<UCHAR_INT_START) { in u_getIntPropertyValue()
465 if(UCHAR_BINARY_START<=which && which<UCHAR_BINARY_LIMIT) { in u_getIntPropertyValue()
466 const BinaryProperty &prop=binProps[which]; in u_getIntPropertyValue()
467 return prop.contains(prop, c, which); in u_getIntPropertyValue()
469 } else if(which<UCHAR_INT_LIMIT) { in u_getIntPropertyValue()
470 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in u_getIntPropertyValue()
471 return prop.getValue(prop, c, which); in u_getIntPropertyValue()
472 } else if(which==UCHAR_GENERAL_CATEGORY_MASK) { in u_getIntPropertyValue()
479 u_getIntPropertyMinValue(UProperty /*which*/) { in u_getIntPropertyMinValue()
484 u_getIntPropertyMaxValue(UProperty which) { in u_getIntPropertyMaxValue() argument
485 if(which<UCHAR_INT_START) { in u_getIntPropertyMaxValue()
486 if(UCHAR_BINARY_START<=which && which<UCHAR_BINARY_LIMIT) { in u_getIntPropertyMaxValue()
489 } else if(which<UCHAR_INT_LIMIT) { in u_getIntPropertyMaxValue()
490 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in u_getIntPropertyMaxValue()
491 return prop.getMaxValue(prop, which); in u_getIntPropertyMaxValue()
497 uprops_getSource(UProperty which) { in uprops_getSource() argument
498 if(which<UCHAR_BINARY_START) { in uprops_getSource()
500 } else if(which<UCHAR_BINARY_LIMIT) { in uprops_getSource()
501 const BinaryProperty &prop=binProps[which]; in uprops_getSource()
507 } else if(which<UCHAR_INT_START) { in uprops_getSource()
509 } else if(which<UCHAR_INT_LIMIT) { in uprops_getSource()
510 const IntProperty &prop=intProps[which-UCHAR_INT_START]; in uprops_getSource()
516 } else if(which<UCHAR_STRING_START) { in uprops_getSource()
517 switch(which) { in uprops_getSource()
525 } else if(which<UCHAR_STRING_LIMIT) { in uprops_getSource()
526 switch(which) { in uprops_getSource()
552 switch(which) { in uprops_getSource()