Lines Matching refs:stringcount

297   int stringcount)  in get_first_set()  argument
301 int stringcount) in get_first_set()
305 int stringcount) in get_first_set()
342 if (n < stringcount && ovector[n*2] >= 0) return n; in get_first_set()
380 erts_pcre_copy_substring(const char *subject, int *ovector, int stringcount, in erts_pcre_copy_substring() argument
384 pcre_copy_substring(const char *subject, int *ovector, int stringcount, in erts_pcre_copy_substring()
389 pcre16_copy_substring(PCRE_SPTR16 subject, int *ovector, int stringcount, in erts_pcre_copy_substring()
393 pcre32_copy_substring(PCRE_SPTR32 subject, int *ovector, int stringcount, in erts_pcre_copy_substring()
398 if (stringnumber < 0 || stringnumber >= stringcount) in erts_pcre_copy_substring()
442 int *ovector, int stringcount, const char *stringname, in erts_pcre_copy_named_substring() argument
447 int *ovector, int stringcount, const char *stringname, in erts_pcre_copy_named_substring()
453 int *ovector, int stringcount, PCRE_SPTR16 stringname, in erts_pcre_copy_named_substring()
458 int *ovector, int stringcount, PCRE_SPTR32 stringname, in erts_pcre_copy_named_substring()
462 int n = get_first_set(code, stringname, ovector, stringcount); in erts_pcre_copy_named_substring()
466 return erts_pcre_copy_substring(subject, ovector, stringcount, n, buffer, size); in erts_pcre_copy_named_substring()
468 return pcre_copy_substring(subject, ovector, stringcount, n, buffer, size); in erts_pcre_copy_named_substring()
471 return pcre16_copy_substring(subject, ovector, stringcount, n, buffer, size); in erts_pcre_copy_named_substring()
473 return pcre32_copy_substring(subject, ovector, stringcount, n, buffer, size); in erts_pcre_copy_named_substring()
503 erts_pcre_get_substring_list(const char *subject, int *ovector, int stringcount, in erts_pcre_get_substring_list() argument
507 pcre_get_substring_list(const char *subject, int *ovector, int stringcount, in erts_pcre_get_substring_list()
512 pcre16_get_substring_list(PCRE_SPTR16 subject, int *ovector, int stringcount, in erts_pcre_get_substring_list()
516 pcre32_get_substring_list(PCRE_SPTR32 subject, int *ovector, int stringcount, in erts_pcre_get_substring_list()
522 int double_count = stringcount * 2; in erts_pcre_get_substring_list()
542 p = (pcre_uchar *)(stringlist + stringcount + 1); in erts_pcre_get_substring_list()
620 erts_pcre_get_substring(const char *subject, int *ovector, int stringcount, in erts_pcre_get_substring() argument
624 pcre_get_substring(const char *subject, int *ovector, int stringcount, in erts_pcre_get_substring()
629 pcre16_get_substring(PCRE_SPTR16 subject, int *ovector, int stringcount, in erts_pcre_get_substring()
633 pcre32_get_substring(PCRE_SPTR32 subject, int *ovector, int stringcount, in erts_pcre_get_substring()
639 if (stringnumber < 0 || stringnumber >= stringcount) in erts_pcre_get_substring()
690 int *ovector, int stringcount, const char *stringname, in erts_pcre_get_named_substring() argument
695 int *ovector, int stringcount, const char *stringname, in erts_pcre_get_named_substring()
701 int *ovector, int stringcount, PCRE_SPTR16 stringname, in erts_pcre_get_named_substring()
706 int *ovector, int stringcount, PCRE_SPTR32 stringname, in erts_pcre_get_named_substring()
710 int n = get_first_set(code, stringname, ovector, stringcount); in erts_pcre_get_named_substring()
714 return erts_pcre_get_substring(subject, ovector, stringcount, n, stringptr); in erts_pcre_get_named_substring()
716 return pcre_get_substring(subject, ovector, stringcount, n, stringptr); in erts_pcre_get_named_substring()
719 return pcre16_get_substring(subject, ovector, stringcount, n, stringptr); in erts_pcre_get_named_substring()
721 return pcre32_get_substring(subject, ovector, stringcount, n, stringptr); in erts_pcre_get_named_substring()