Searched defs:match_block (Results 1 – 3 of 3) sorted by relevance
844 typedef struct match_block { struct845 pcre2_memctl memctl; /* For general use */846 PCRE2_SIZE frame_vector_size; /* Size of a backtracking frame */847 heapframe *match_frames; /* Points to vector of frames */848 heapframe *match_frames_top; /* Points after the end of the vector */849 heapframe *stack_frames; /* The original vector on the stack */850 PCRE2_SIZE heap_limit; /* As it says */851 uint32_t match_limit; /* As it says */852 uint32_t match_limit_depth; /* As it says */853 uint32_t match_call_count; /* Number of times a new frame is created */[all …]
1932 #define match_block PCRE2_SUFFIX(match_block_) macro
362 pub fn match_block<S: AsRef<str>, F>(&mut self, value: S, cb: F) in match_block() method