Lines Matching refs:ccc
211 if prop[1][0].endswith("ccc"):
481 if name.endswith("ccc"):
508 # lccc = ccc of first cp in canonical decomposition.
510 ccc_prop = list(_properties["ccc"])
516 # tccc = ccc of last cp in canonical decomposition.
704 ccc = int(fields[3])
705 if ccc: props["ccc"] = ccc
1279 out_file.write("# Canonical_Combining_Class (ccc) values\n");
1285 cc = props.get("ccc")
1314 # - c has ccc!=0
1320 props.get("ccc") or
2023 # ccc, lccc, tccc use their numeric values as "enum" values.
2026 # List the ccc values in numeric order.
2027 prop = _properties["ccc"]
2028 icu_values = _pname_to_icu_prop["ccc"][2]
2029 for ccc in sorted([int(name) for name in prop[2]]):
2030 icu_values.append((ccc, str(ccc)))
2031 _pname_to_icu_prop["lccc"][2].extend(icu_values) # Copy ccc -> lccc.
2032 _pname_to_icu_prop["tccc"][2].extend(icu_values) # Copy ccc -> tccc.
2147 # ccc, lccc, tccc: Omit the numeric strings from the aliases.
2148 # (See the comment about ccc in the PropertyValueAliases.txt header.)
2149 if pname.endswith("ccc"): aliases = aliases[1:]