这篇教程C++ GET_PROPS函数代码示例写得很实用,希望能帮到您。
本文整理汇总了C++中GET_PROPS函数的典型用法代码示例。如果您正苦于以下问题:C++ GET_PROPS函数的具体用法?C++ GET_PROPS怎么用?C++ GET_PROPS使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。 在下文中一共展示了GET_PROPS函数的19个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。 示例1: u_charDigitValueU_CAPI int32_t U_EXPORT2u_charDigitValue(UChar32 c) { uint32_t props; int32_t value; GET_PROPS(c, props); value=(int32_t)GET_NUMERIC_TYPE_VALUE(props)-UPROPS_NTV_DECIMAL_START; if(value<=9) { return value; } else { return -1; }}
开发者ID:BharathMG,项目名称:mapbox-gl-native,代码行数:12,
示例2: u_isIDPart/* Checks if the Unicode character can be a Unicode identifier part other than starting the identifier.*/U_CAPI UBool U_EXPORT2u_isIDPart(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)( (CAT_MASK(props)& (U_GC_ND_MASK|U_GC_NL_MASK| U_GC_L_MASK| U_GC_PC_MASK|U_GC_MC_MASK|U_GC_MN_MASK) )!=0 || u_isIDIgnorable(c));}
开发者ID:icu-project,项目名称:icu4c,代码行数:14,
示例3: u_isxdigitU_CAPI UBool U_EXPORT2u_isxdigit(UChar32 c) { uint32_t props; /* check ASCII and Fullwidth ASCII a-fA-F */ if( (c<=0x66 && c>=0x41 && (c<=0x46 || c>=0x61)) || (c>=0xff21 && c<=0xff46 && (c<=0xff26 || c>=0xff41)) ) { return TRUE; } GET_PROPS(c, props); return (UBool)(GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER);}
开发者ID:icu-project,项目名称:icu4c,代码行数:15,
示例4: u_getNumericValueU_CAPI double U_EXPORT2u_getNumericValue(UChar32 c) { uint32_t props; int32_t ntv; GET_PROPS(c, props); ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props); if(ntv==UPROPS_NTV_NONE) { return U_NO_NUMERIC_VALUE; } else if(ntv<UPROPS_NTV_DIGIT_START) { /* decimal digit */ return ntv-UPROPS_NTV_DECIMAL_START; } else if(ntv<UPROPS_NTV_NUMERIC_START) { /* other digit */ return ntv-UPROPS_NTV_DIGIT_START; } else if(ntv<UPROPS_NTV_FRACTION_START) { /* small integer */ return ntv-UPROPS_NTV_NUMERIC_START; } else if(ntv<UPROPS_NTV_LARGE_START) { /* fraction */ int32_t numerator=(ntv>>4)-12; int32_t denominator=(ntv&0xf)+1; return (double)numerator/denominator; } else if(ntv<UPROPS_NTV_BASE60_START) {
开发者ID:icu-project,项目名称:icu4c,代码行数:24,
示例5: u_ispunctU_CAPI UBool U_EXPORT2u_ispunct(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)((CAT_MASK(props)&U_GC_P_MASK)!=0);}
开发者ID:icu-project,项目名称:icu4c,代码行数:6,
示例6: u_isJavaSpaceCharU_CAPI UBool U_EXPORT2u_isJavaSpaceChar(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)((CAT_MASK(props)&U_GC_Z_MASK)!=0);}
开发者ID:icu-project,项目名称:icu4c,代码行数:6,
示例7: u_isspace/* Checks if the Unicode character is a space character.*/U_CAPI UBool U_EXPORT2u_isspace(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)((CAT_MASK(props)&U_GC_Z_MASK)!=0 || IS_THAT_CONTROL_SPACE(c));}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例8: u_iscntrl/* Checks if the Unicode character is a control character.*/U_CAPI UBool U_EXPORT2u_iscntrl(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)((CAT_MASK(props)&(U_GC_CC_MASK|U_GC_CF_MASK|U_GC_ZL_MASK|U_GC_ZP_MASK))!=0);}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例9: ubidi_isMirroredU_CAPI UBool U_EXPORT2ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c) { uint32_t props; GET_PROPS(bdp, c, props); return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT);}
开发者ID:mathtexts,项目名称:uimacpp,代码行数:6,
示例10: u_charType/* Gets the Unicode character's general category.*/U_CAPI int8_t U_EXPORT2u_charType(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (int8_t)GET_CATEGORY(props);}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例11: u_isdigit/* Checks if ch is a decimal digit. */U_CAPI UBool U_EXPORT2u_isdigit(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(GET_CATEGORY(props)==U_DECIMAL_DIGIT_NUMBER);}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例12: u_istitle/* Checks if ch is a title case letter; usually upper case letters.*/U_CAPI UBool U_EXPORT2u_istitle(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(GET_CATEGORY(props)==U_TITLECASE_LETTER);}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例13: ubidi_getJoiningTypeU_CAPI UJoiningType U_EXPORT2ubidi_getJoiningType(const UBiDiProps *bdp, UChar32 c) { uint32_t props; GET_PROPS(bdp, c, props); return (UJoiningType)((props&UBIDI_JT_MASK)>>UBIDI_JT_SHIFT);}
开发者ID:mathtexts,项目名称:uimacpp,代码行数:6,
示例14: ubidi_isJoinControlU_CAPI UBool U_EXPORT2ubidi_isJoinControl(const UBiDiProps *bdp, UChar32 c) { uint32_t props; GET_PROPS(bdp, c, props); return (UBool)UBIDI_GET_FLAG(props, UBIDI_JOIN_CONTROL_SHIFT);}
开发者ID:mathtexts,项目名称:uimacpp,代码行数:6,
示例15: u_isJavaIDStart/*Checks if the Unicode character can start a Java identifier.*/U_CAPI UBool U_EXPORT2u_isJavaIDStart(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)((CAT_MASK(props)&(U_GC_L_MASK|U_GC_SC_MASK|U_GC_PC_MASK))!=0);}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例16: u_isdefined/* Checks if ch is a unicode character with assigned character type.*/U_CAPI UBool U_EXPORT2u_isdefined(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(GET_CATEGORY(props)!=0);}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例17: u_isbase/* Checks if the Unicode character is a base form character that can take a diacritic.*/U_CAPI UBool U_EXPORT2u_isbase(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)((CAT_MASK(props)&(U_GC_L_MASK|U_GC_N_MASK|U_GC_MC_MASK|U_GC_ME_MASK))!=0);}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例18: u_islower/* Checks if ch is a lower case letter.*/U_CAPI UBool U_EXPORT2u_islower(UChar32 c) { uint32_t props; GET_PROPS(c, props); return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER);}
开发者ID:icu-project,项目名称:icu4c,代码行数:7,
示例19: ubidi_getClassU_CAPI UCharDirection U_EXPORT2ubidi_getClass(const UBiDiProps *bdp, UChar32 c) { uint32_t props; GET_PROPS(bdp, c, props); return (UCharDirection)UBIDI_GET_CLASS(props);}
开发者ID:mathtexts,项目名称:uimacpp,代码行数:6,
注:本文中的GET_PROPS函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 C++ GET_PYCOM_CTOR函数代码示例 C++ GET_PRIVATE函数代码示例 |