コード例 #1
0
bool
uc_is_general_category (ucs4_t uc, uc_general_category_t category)
{
  if (category.generic)
    return category.lookup.lookup_fn (uc, category.bitmask);
  else
    return bitmap_lookup (category.lookup.table, uc);
}
コード例 #2
0
bool
uc_is_property_not_a_character (ucs4_t uc)
{
  return bitmap_lookup (&u_property_not_a_character, uc);
}
コード例 #3
0
ファイル: pr_zero_width.c プロジェクト: DesmondWu/gnulib
bool
uc_is_property_zero_width (ucs4_t uc)
{
  return bitmap_lookup (&u_property_zero_width, uc);
}
コード例 #4
0
ファイル: pr_hyphen.c プロジェクト: iauther/x
bool
uc_is_property_hyphen (ucs4_t uc)
{
  return bitmap_lookup (&u_property_hyphen, uc);
}
コード例 #5
0
bool
uc_is_property_line_separator (ucs4_t uc)
{
  return bitmap_lookup (&u_property_line_separator, uc);
}
コード例 #6
0
bool
uc_is_property_ids_binary_operator (ucs4_t uc)
{
  return bitmap_lookup (&u_property_ids_binary_operator, uc);
}
コード例 #7
0
ファイル: pr_quotation_mark.c プロジェクト: Distrotech/gnulib
bool
uc_is_property_quotation_mark (ucs4_t uc)
{
  return bitmap_lookup (&u_property_quotation_mark, uc);
}
コード例 #8
0
ファイル: pr_grapheme_extend.c プロジェクト: cooljeanius/wget
bool
uc_is_property_grapheme_extend (ucs4_t uc)
{
  return bitmap_lookup (&u_property_grapheme_extend, uc);
}
コード例 #9
0
ファイル: pr_diacritic.c プロジェクト: iauther/x
bool
uc_is_property_diacritic (ucs4_t uc)
{
  return bitmap_lookup (&u_property_diacritic, uc);
}
コード例 #10
0
bool
uc_is_property_dash (ucs4_t uc)
{
  return bitmap_lookup (&u_property_dash, uc);
}
コード例 #11
0
ファイル: pr_private_use.c プロジェクト: cooljeanius/wget
bool
uc_is_property_private_use (ucs4_t uc)
{
  return bitmap_lookup (&u_property_private_use, uc);
}
コード例 #12
0
bool
uc_is_xdigit (ucs4_t uc)
{
  return bitmap_lookup (&u_is_xdigit, uc);
}
コード例 #13
0
ファイル: pr_ascii_hex_digit.c プロジェクト: DesmondWu/gnulib
bool
uc_is_property_ascii_hex_digit (ucs4_t uc)
{
  return bitmap_lookup (&u_property_ascii_hex_digit, uc);
}
コード例 #14
0
bool
uc_is_property_cased (ucs4_t uc)
{
  return bitmap_lookup (&u_property_cased, uc);
}
コード例 #15
0
bool
uc_is_property_other_id_continue (ucs4_t uc)
{
  return bitmap_lookup (&u_property_other_id_continue, uc);
}
コード例 #16
0
ファイル: pr_bidi_eur_num_separator.c プロジェクト: iauther/x
bool
uc_is_property_bidi_eur_num_separator (ucs4_t uc)
{
  return bitmap_lookup (&u_property_bidi_eur_num_separator, uc);
}
コード例 #17
0
ファイル: pr_alphabetic.c プロジェクト: cooljeanius/wget
bool
uc_is_property_alphabetic (ucs4_t uc)
{
  return bitmap_lookup (&u_property_alphabetic, uc);
}
コード例 #18
0
ファイル: ctype_upper.c プロジェクト: DesmondWu/gnulib
bool
uc_is_upper (ucs4_t uc)
{
  return bitmap_lookup (&u_is_upper, uc);
}
コード例 #19
0
ファイル: pr_case_ignorable.c プロジェクト: cooljeanius/wget
bool
uc_is_property_case_ignorable (ucs4_t uc)
{
  return bitmap_lookup (&u_property_case_ignorable, uc);
}
コード例 #20
0
ファイル: pr_decimal_digit.c プロジェクト: ajnelson/gnulib
bool
uc_is_property_decimal_digit (ucs4_t uc)
{
  return bitmap_lookup (&u_property_decimal_digit, uc);
}
コード例 #21
0
bool
uc_is_property_unassigned_code_value (ucs4_t uc)
{
  return bitmap_lookup (&u_property_unassigned_code_value, uc);
}
コード例 #22
0
ファイル: pr_extender.c プロジェクト: alanfalloon/gnulib
bool
uc_is_property_extender (ucs4_t uc)
{
  return bitmap_lookup (&u_property_extender, uc);
}
コード例 #23
0
bool
uc_is_property_changes_when_casefolded (ucs4_t uc)
{
    return bitmap_lookup (&u_property_changes_when_casefolded, uc);
}
コード例 #24
0
ファイル: pr_soft_dotted.c プロジェクト: AblePear/wget_pkg
bool
uc_is_property_soft_dotted (ucs4_t uc)
{
  return bitmap_lookup (&u_property_soft_dotted, uc);
}
コード例 #25
0
bool
uc_is_property_paired_punctuation (ucs4_t uc)
{
  return bitmap_lookup (&u_property_paired_punctuation, uc);
}
コード例 #26
0
bool
uc_is_property_bidi_european_digit (ucs4_t uc)
{
  return bitmap_lookup (&u_property_bidi_european_digit, uc);
}
コード例 #27
0
bool
uc_is_punct (ucs4_t uc)
{
  return bitmap_lookup (&u_is_punct, uc);
}
コード例 #28
0
bool
uc_is_property_logical_order_exception (ucs4_t uc)
{
  return bitmap_lookup (&u_property_logical_order_exception, uc);
}
コード例 #29
0
ファイル: pr_titlecase.c プロジェクト: alanfalloon/gnulib
bool
uc_is_property_titlecase (ucs4_t uc)
{
  return bitmap_lookup (&u_property_titlecase, uc);
}
コード例 #30
0
bool
uc_is_property_bidi_other_neutral (ucs4_t uc)
{
  return bitmap_lookup (&u_property_bidi_other_neutral, uc);
}