Lines Matching refs:p

151   int    (*mbc_enc_len)(const OnigUChar* p);
155 int (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);
156 OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);
161 …int (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* e…
162 int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);
165 OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);
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
266 #define ONIGENC_IS_MBC_HEAD(enc,p) (ONIGENC_MBC_ENC_LEN(enc,p) != 1) argument
267 #define ONIGENC_IS_MBC_ASCII(p) (*(p) < 128) argument
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)
288 #define ONIGENC_MBC_ENC_LEN(enc,p) (enc)->mbc_enc_len(p) argument
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));
357 int onigenc_strlen_null P_((OnigEncoding enc, const OnigUChar* p));
359 int onigenc_str_bytelen_null P_((OnigEncoding enc, const OnigUChar* p));
658 unsigned char* p; /* compiled pattern */ member