Lines Matching defs:table_index
13974 Perl_get_prop_definition(pTHX_ const int table_index)
13979 return _new_invlist_C_array(uni_prop_ptrs[table_index]);
13983 Perl_get_prop_values(const int table_index)
13987 return UNI_prop_value_ptrs[table_index];
14560 int table_index = 0; /* The entry number for this property in the table
14729 table_index = do_uniprop_match(lookup_name, j);
14731 if (special_property || table_index) {
14798 prop_values = get_prop_values(table_index);
15568 table_index = do_uniprop_match(lookup_name, lookup_len);
15571 if (table_index == 0) {
15585 table_index = do_uniprop_match(lookup_name, lookup_len);
15588 if (table_index == 0) {
15749 table_index = do_uniprop_match(canonical, strlen(canonical));
15750 if (table_index == 0) {
15759 if (table_index < 0) {
15761 table_index = -table_index;
15768 if (table_index > MAX_UNI_KEYWORD_INDEX) {
15769 Size_t warning_offset = table_index / MAX_UNI_KEYWORD_INDEX;
15770 table_index %= MAX_UNI_KEYWORD_INDEX;
15780 if ( table_index == UNI_XPOSIXUPPER
15781 || table_index == UNI_XPOSIXLOWER
15782 || table_index == UNI_TITLE)
15784 table_index = UNI_CASED;
15786 else if ( table_index == UNI_UPPERCASELETTER
15787 || table_index == UNI_LOWERCASELETTER
15789 || table_index == UNI_TITLECASELETTER
15792 table_index = UNI_CASEDLETTER;
15794 else if ( table_index == UNI_POSIXUPPER
15795 || table_index == UNI_POSIXLOWER)
15797 table_index = UNI_POSIXALPHA;
15802 prop_definition = get_prop_definition(table_index);
15815 SV * pu_lookup = Perl_newSVpvf(aTHX_ "%d=", table_index);