Lines Matching refs:end

130   int    (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);
131 OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);
134 …int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUCh…
136 …_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeIt…
137 int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);
141 int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);
144 int (*is_valid_mbc_string)(const OnigUChar* s, const OnigUChar* end);
246 #define onig_enc_len(enc,p,end) ONIGENC_MBC_ENC_LEN(enc,p) argument
253 #define ONIGENC_IS_MBC_WORD(enc,s,end) \ argument
254 ONIGENC_IS_CODE_WORD(enc,ONIGENC_MBC_TO_CODE(enc,s,end))
255 #define ONIGENC_IS_MBC_WORD_ASCII(enc,s,end) onigenc_is_mbc_word_ascii(enc,s,end) argument
259 #define ONIGENC_MBC_CASE_FOLD(enc,flag,pp,end,buf) \ argument
260 (enc)->mbc_case_fold(flag,(const OnigUChar** )pp,end,buf)
261 #define ONIGENC_IS_ALLOWED_REVERSE_MATCH(enc,s,end) \ argument
262 (enc)->is_allowed_reverse_match(s,end)
265 #define ONIGENC_IS_VALID_MBC_STRING(enc,s,end) \ argument
266 (enc)->is_valid_mbc_string(s,end)
269 #define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(enc,case_fold_flag,p,end,acs) \ argument
270 (enc)->get_case_fold_codes_by_str(case_fold_flag,p,end,acs)
278 #define ONIGENC_IS_MBC_NEWLINE(enc,p,end) (enc)->is_mbc_newline((p),(end)) argument
279 #define ONIGENC_MBC_TO_CODE(enc,p,end) (enc)->mbc_to_code((p),(end)) argument
282 #define ONIGENC_PROPERTY_NAME_TO_CTYPE(enc,p,end) \ argument
283 (enc)->property_name_to_ctype(enc,p,end)
343 int onigenc_strlen P_((OnigEncoding enc, const OnigUChar* p, const OnigUChar* end));
349 int onigenc_is_valid_mbc_string P_((OnigEncoding enc, const OnigUChar* s, const OnigUChar* end));
351 OnigUChar* onigenc_strdup P_((OnigEncoding enc, const OnigUChar* s, const OnigUChar* end));
638 int end; member
649 int* end; member
761 OnigUChar* end; member
799 int onig_scan(OnigRegex reg, const OnigUChar* str, const OnigUChar* end, OnigRegion* region, OnigOp…
801 int onig_search P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* start, …
803 int onig_search_with_param P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUCh…
805 int onig_match P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* at, Onig…
807 int onig_match_with_param P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUCha…
824 int onig_regset_search P_((OnigRegSet* set, const OnigUChar* str, const OnigUChar* end, const OnigU…
826 int onig_regset_search_with_param P_((OnigRegSet* set, const OnigUChar* str, const OnigUChar* end, …
841 int onig_region_set P_((OnigRegion* region, int at, int beg, int end));
1013 int onig_get_capture_range_in_callout P_((OnigCalloutArgs* args, int mem_num, int* begin, int* end)…