Lines Matching refs:end

155   int    (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);
156 OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);
159 …int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUCh…
161 …_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeIt…
162 int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);
166 int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);
262 #define onig_enc_len(enc,p,end) ONIGENC_MBC_ENC_LEN(enc,p) argument
269 #define ONIGENC_IS_MBC_WORD(enc,s,end) \ argument
270 ONIGENC_IS_CODE_WORD(enc,ONIGENC_MBC_TO_CODE(enc,s,end))
275 #define ONIGENC_MBC_CASE_FOLD(enc,flag,pp,end,buf) \ argument
276 (enc)->mbc_case_fold(flag,(const OnigUChar** )pp,end,buf)
277 #define ONIGENC_IS_ALLOWED_REVERSE_MATCH(enc,s,end) \ argument
278 (enc)->is_allowed_reverse_match(s,end)
283 #define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(enc,case_fold_flag,p,end,acs) \ argument
284 (enc)->get_case_fold_codes_by_str(case_fold_flag,p,end,acs)
292 #define ONIGENC_IS_MBC_NEWLINE(enc,p,end) (enc)->is_mbc_newline((p),(end)) argument
293 #define ONIGENC_MBC_TO_CODE(enc,p,end) (enc)->mbc_to_code((p),(end)) argument
296 #define ONIGENC_PROPERTY_NAME_TO_CTYPE(enc,p,end) \ argument
297 (enc)->property_name_to_ctype(enc,p,end)
355 int onigenc_strlen P_((OnigEncoding enc, const OnigUChar* p, const OnigUChar* end));
603 int end; member
614 int* end; member
741 int onig_search P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* start, …
743 int onig_match P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* at, Onig…
757 int onig_region_set P_((OnigRegion* region, int at, int beg, int end));