Home
last modified time | relevance | path

Searched refs:names_found (Results 1 – 2 of 2) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_compile.c4637 if (cb->names_found >= MAX_NAME_COUNT) in parse_regex()
4657 for (i = 0; i < cb->names_found; i++, ng++) in parse_regex()
4678 if (i < cb->names_found) break; /* Ignore duplicate with same number */ in parse_regex()
4682 if (cb->names_found >= cb->named_group_list_size) in parse_regex()
4705 cb->named_groups[cb->names_found].name = name; in parse_regex()
4706 cb->named_groups[cb->names_found].length = (uint16_t)namelen; in parse_regex()
4707 cb->named_groups[cb->names_found].number = cb->bracount; in parse_regex()
4708 cb->named_groups[cb->names_found].isdup = (uint16_t)isdupname; in parse_regex()
4709 cb->names_found++; in parse_regex()
5316 for (i = 0; i < cb->names_found; i++) in find_dupname_details()
[all …]
Dpcre2_intmodedep.h729 uint16_t names_found; /* Number of entries so far */ member