Lines Matching refs:string_codepoint

11 static inline int convert_cp(UChar32* pcp, zend_string *string_codepoint, zend_long int_codepoint) {  in convert_cp()  argument
12 if (string_codepoint != NULL) { in convert_cp()
14 size_t string_codepoint_length = ZSTR_LEN(string_codepoint); in convert_cp()
22 U8_NEXT(ZSTR_VAL(string_codepoint), i, string_codepoint_length, int_codepoint); in convert_cp()
40 zend_string *string_codepoint; in parse_code_point_param() local
43 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in parse_code_point_param()
45 return convert_cp(cp, string_codepoint, int_codepoint); in parse_code_point_param()
87 zend_string *string_codepoint; in IC_METHOD() local
91 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
95 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
107 zend_string *string_codepoint; in IC_METHOD() local
111 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
115 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
215 zend_string *string_codepoint; in IC_METHOD() local
223 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
228 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
391 zend_string *string_codepoint; in IC_METHOD() local
395 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
399 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
404 if (string_codepoint != NULL) { in IC_METHOD()
421 zend_string *string_codepoint; in IC_METHOD() local
425 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
430 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
585 zend_string *string_codepoint; \
588 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) \
590 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { \
594 if (string_codepoint != NULL) { \