Lines Matching refs:subject

42 from the subject string after a regex match has succeeded. The original idea
315 subject the subject string that was matched
335 pcre_copy_substring(const char *subject, int *ovector, int stringcount,
339 pcre16_copy_substring(PCRE_SPTR16 subject, int *ovector, int stringcount,
343 pcre32_copy_substring(PCRE_SPTR32 subject, int *ovector, int stringcount,
353 memcpy(buffer, subject + ovector[stringnumber], IN_UCHARS(yield));
370 subject the subject string that was matched
390 pcre_copy_named_substring(const pcre *code, const char *subject,
395 pcre16_copy_named_substring(const pcre16 *code, PCRE_SPTR16 subject,
400 pcre32_copy_named_substring(const pcre32 *code, PCRE_SPTR32 subject,
408 return pcre_copy_substring(subject, ovector, stringcount, n, buffer, size);
410 return pcre16_copy_substring(subject, ovector, stringcount, n, buffer, size);
412 return pcre32_copy_substring(subject, ovector, stringcount, n, buffer, size);
426 subject the subject string that was matched
441 pcre_get_substring_list(const char *subject, int *ovector, int stringcount,
445 pcre16_get_substring_list(PCRE_SPTR16 subject, int *ovector, int stringcount,
449 pcre32_get_substring_list(PCRE_SPTR32 subject, int *ovector, int stringcount,
477 memcpy(p, subject + ovector[i], IN_UCHARS(len));
525 subject the subject string that was matched
544 pcre_get_substring(const char *subject, int *ovector, int stringcount,
548 pcre16_get_substring(PCRE_SPTR16 subject, int *ovector, int stringcount,
552 pcre32_get_substring(PCRE_SPTR32 subject, int *ovector, int stringcount,
564 memcpy(substring, subject + ovector[stringnumber], IN_UCHARS(yield));
588 subject the subject string that was matched
607 pcre_get_named_substring(const pcre *code, const char *subject,
612 pcre16_get_named_substring(const pcre16 *code, PCRE_SPTR16 subject,
617 pcre32_get_named_substring(const pcre32 *code, PCRE_SPTR32 subject,
625 return pcre_get_substring(subject, ovector, stringcount, n, stringptr);
627 return pcre16_get_substring(subject, ovector, stringcount, n, stringptr);
629 return pcre32_get_substring(subject, ovector, stringcount, n, stringptr);