bool
uc_is_property_bidi_embedding_or_override (ucs4_t uc)
{
  int category = uc_bidi_category (uc);
  return (category == UC_BIDI_LRE || category == UC_BIDI_LRO
          || category == UC_BIDI_RLE || category == UC_BIDI_RLO);
}
Пример #2
0
bool
uc_is_property_bidi_european_digit (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_EN);
}
Пример #3
0
bool
uc_is_property_bidi_eur_num_separator (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_ES);
}
Пример #4
0
bool
uc_is_property_bidi_block_separator (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_B);
}
bool
uc_is_property_bidi_other_neutral (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_ON);
}
bool
uc_is_property_bidi_arabic_digit (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_AN);
}
Пример #7
0
bool
uc_is_property_bidi_pdf (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_PDF);
}
Пример #8
0
bool
uc_is_property_bidi_non_spacing_mark (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_NSM);
}
Пример #9
0
bool
uc_is_property_bidi_boundary_neutral (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_BN);
}
Пример #10
0
bool
uc_is_property_bidi_arabic_right_to_left (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_AL);
}
bool
uc_is_property_bidi_hebrew_right_to_left (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_R);
}
bool
uc_is_property_bidi_left_to_right (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_L);
}
Пример #13
0
bool
uc_is_property_bidi_whitespace (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_WS);
}
Пример #14
0
bool
uc_is_property_bidi_segment_separator (ucs4_t uc)
{
  return (uc_bidi_category (uc) == UC_BIDI_S);
}