ELC in dev
ELC-lang
|
变量 | |
constexpr auto | U_GC_CN_MASK = ((uint32_t)1<<( U_GENERAL_OTHER_TYPES )) |
constexpr auto | U_GC_LU_MASK = ((uint32_t)1<<( U_UPPERCASE_LETTER )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_LL_MASK = ((uint32_t)1<<( U_LOWERCASE_LETTER )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_LT_MASK = ((uint32_t)1<<( U_TITLECASE_LETTER )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_LM_MASK = ((uint32_t)1<<( U_MODIFIER_LETTER )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_LO_MASK = ((uint32_t)1<<( U_OTHER_LETTER )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_MN_MASK = ((uint32_t)1<<( U_NON_SPACING_MARK )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_ME_MASK = ((uint32_t)1<<( U_ENCLOSING_MARK )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_MC_MASK = ((uint32_t)1<<( U_COMBINING_SPACING_MARK )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_ND_MASK = ((uint32_t)1<<( U_DECIMAL_DIGIT_NUMBER )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_NL_MASK = ((uint32_t)1<<( U_LETTER_NUMBER )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_NO_MASK = ((uint32_t)1<<( U_OTHER_NUMBER )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_ZS_MASK = ((uint32_t)1<<( U_SPACE_SEPARATOR )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_ZL_MASK = ((uint32_t)1<<( U_LINE_SEPARATOR )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_ZP_MASK = ((uint32_t)1<<( U_PARAGRAPH_SEPARATOR )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_CC_MASK = ((uint32_t)1<<( U_CONTROL_CHAR )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_CF_MASK = ((uint32_t)1<<( U_FORMAT_CHAR )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_CO_MASK = ((uint32_t)1<<( U_PRIVATE_USE_CHAR )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_CS_MASK = ((uint32_t)1<<( U_SURROGATE )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_PD_MASK = ((uint32_t)1<<( U_DASH_PUNCTUATION )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_PS_MASK = ((uint32_t)1<<( U_START_PUNCTUATION )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_PE_MASK = ((uint32_t)1<<( U_END_PUNCTUATION )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_PC_MASK = ((uint32_t)1<<( U_CONNECTOR_PUNCTUATION )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_PO_MASK = ((uint32_t)1<<( U_OTHER_PUNCTUATION )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_SM_MASK = ((uint32_t)1<<( U_MATH_SYMBOL )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_SC_MASK = ((uint32_t)1<<( U_CURRENCY_SYMBOL )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_SK_MASK = ((uint32_t)1<<( U_MODIFIER_SYMBOL )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_SO_MASK = ((uint32_t)1<<( U_OTHER_SYMBOL )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_PI_MASK = ((uint32_t)1<<( U_INITIAL_PUNCTUATION )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_PF_MASK = ((uint32_t)1<<( U_FINAL_PUNCTUATION )) |
Mask constant for a UCharCategory. | |
constexpr auto | U_GC_L_MASK = (U_GC_LU_MASK|U_GC_LL_MASK|U_GC_LT_MASK|U_GC_LM_MASK|U_GC_LO_MASK) |
Mask constant for multiple UCharCategory bits (L Letters). | |
constexpr auto | U_GC_LC_MASK = (U_GC_LU_MASK|U_GC_LL_MASK|U_GC_LT_MASK) |
Mask constant for multiple UCharCategory bits (LC Cased Letters). | |
constexpr auto | U_GC_M_MASK = (U_GC_MN_MASK|U_GC_ME_MASK|U_GC_MC_MASK) |
Mask constant for multiple UCharCategory bits (M Marks). | |
constexpr auto | U_GC_N_MASK = (U_GC_ND_MASK|U_GC_NL_MASK|U_GC_NO_MASK) |
Mask constant for multiple UCharCategory bits (N Numbers). | |
constexpr auto | U_GC_Z_MASK = (U_GC_ZS_MASK|U_GC_ZL_MASK|U_GC_ZP_MASK) |
Mask constant for multiple UCharCategory bits (Z Separators). | |
constexpr auto | U_GC_C_MASK = (U_GC_CN_MASK|U_GC_CC_MASK|U_GC_CF_MASK|U_GC_CO_MASK|U_GC_CS_MASK) |
Mask constant for multiple UCharCategory bits (C Others). | |
constexpr auto | U_GC_P_MASK = (U_GC_PD_MASK|U_GC_PS_MASK|U_GC_PE_MASK|U_GC_PC_MASK|U_GC_PO_MASK|U_GC_PI_MASK|U_GC_PF_MASK) |
Mask constant for multiple UCharCategory bits (P Punctuation). | |
constexpr auto | U_GC_S_MASK = (U_GC_SM_MASK|U_GC_SC_MASK|U_GC_SK_MASK|U_GC_SO_MASK) |
Mask constant for multiple UCharCategory bits (S Symbols). | |
|
inlineconstexpr |
Mask constant for multiple UCharCategory bits (C Others).
@stable ICU 2.1
在文件 all_defs.cpp 第 15439 行定义.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
在文件 all_defs.cpp 第 15354 行定义.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
Mask constant for multiple UCharCategory bits (L Letters).
@stable ICU 2.1
在文件 all_defs.cpp 第 15424 行定义.
|
inlineconstexpr |
Mask constant for multiple UCharCategory bits (LC Cased Letters).
@stable ICU 2.1
在文件 all_defs.cpp 第 15427 行定义.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
Mask constant for multiple UCharCategory bits (M Marks).
@stable ICU 2.1
在文件 all_defs.cpp 第 15430 行定义.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
Mask constant for multiple UCharCategory bits (N Numbers).
@stable ICU 2.1
在文件 all_defs.cpp 第 15433 行定义.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
Mask constant for multiple UCharCategory bits (P Punctuation).
@stable ICU 2.1
在文件 all_defs.cpp 第 15442 行定义.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
Mask constant for multiple UCharCategory bits (S Symbols).
@stable ICU 2.1
在文件 all_defs.cpp 第 15445 行定义.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
Mask constant for multiple UCharCategory bits (Z Separators).
@stable ICU 2.1
在文件 all_defs.cpp 第 15436 行定义.
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |