Lines Matching refs:string_codepoint

12 static inline int convert_cp(UChar32* pcp, zend_string *string_codepoint, zend_long int_codepoint) {  in convert_cp()  argument
13 if (string_codepoint != NULL) { in convert_cp()
15 size_t string_codepoint_length = ZSTR_LEN(string_codepoint); in convert_cp()
23 U8_NEXT(ZSTR_VAL(string_codepoint), i, string_codepoint_length, int_codepoint); in convert_cp()
41 zend_string *string_codepoint; in parse_code_point_param() local
44 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in parse_code_point_param()
46 return convert_cp(cp, string_codepoint, int_codepoint); in parse_code_point_param()
88 zend_string *string_codepoint; in IC_METHOD() local
92 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
96 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
108 zend_string *string_codepoint; in IC_METHOD() local
112 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
116 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
216 zend_string *string_codepoint; in IC_METHOD() local
224 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
229 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
393 zend_string *string_codepoint; in IC_METHOD() local
397 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
402 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
407 if (string_codepoint != NULL) { in IC_METHOD()
424 zend_string *string_codepoint; in IC_METHOD() local
428 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) in IC_METHOD()
433 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { in IC_METHOD()
588 zend_string *string_codepoint; \
591 Z_PARAM_STR_OR_LONG(string_codepoint, int_codepoint) \
593 if (convert_cp(&cp, string_codepoint, int_codepoint) == FAILURE) { \
597 if (string_codepoint != NULL) { \