str2 112 Zend/zend_builtin_functions.c ZEND_ARG_INFO(0, str2) str2 117 Zend/zend_builtin_functions.c ZEND_ARG_INFO(0, str2) str2 35 ext/intl/collator/collator_compare.c char* str2 = NULL; str2 50 ext/intl/collator/collator_compare.c &object, Collator_ce_ptr, &str1, &str1_len, &str2, &str2_len ) == FAILURE ) str2 92 ext/intl/collator/collator_compare.c &ustr2, &ustr2_len, str2, str2_len, COLLATOR_ERROR_CODE_P( co ) ); str2 60 ext/intl/collator/collator_sort.c zval* str2 = collator_convert_object_to_string( op2 TSRMLS_CC ); str2 69 ext/intl/collator/collator_sort.c if( Z_TYPE_P(str1) == IS_STRING && Z_TYPE_P(str2) == IS_STRING && str2 71 ext/intl/collator/collator_sort.c str2 == ( num2 = collator_convert_string_to_number_if_possible( str2 ) ) ) ) str2 88 ext/intl/collator/collator_sort.c INTL_Z_STRVAL_P(str2), INTL_Z_STRLEN_P(str2) ); str2 104 ext/intl/collator/collator_sort.c norm2 = collator_normalize_sort_argument( str2 ); str2 123 ext/intl/collator/collator_sort.c norm2 = collator_normalize_sort_argument( str2 ); str2 139 ext/intl/collator/collator_sort.c zval_ptr_dtor( &str2 ); str2 185 ext/intl/collator/collator_sort.c zval* str2 = NULL; str2 188 ext/intl/collator/collator_sort.c str2 = collator_make_printable_zval( op2 ); str2 197 ext/intl/collator/collator_sort.c INTL_Z_STRVAL_P(str2), INTL_Z_STRLEN_P(str2) ); str2 201 ext/intl/collator/collator_sort.c zval_ptr_dtor( &str2 ); str2 496 ext/libxml/libxml.c error_copy.str2 = NULL; str2 2691 ext/pcre/pcrelib/pcre_internal.h #define STRCMP_UC_UC(str1, str2) \ str2 2692 ext/pcre/pcrelib/pcre_internal.h strcmp((char *)(str1), (char *)(str2)) str2 2693 ext/pcre/pcrelib/pcre_internal.h #define STRCMP_UC_C8(str1, str2) \ str2 2694 ext/pcre/pcrelib/pcre_internal.h strcmp((char *)(str1), (str2)) str2 2695 ext/pcre/pcrelib/pcre_internal.h #define STRNCMP_UC_UC(str1, str2, num) \ str2 2696 ext/pcre/pcrelib/pcre_internal.h strncmp((char *)(str1), (char *)(str2), (num)) str2 2697 ext/pcre/pcrelib/pcre_internal.h #define STRNCMP_UC_C8(str1, str2, num) \ str2 2698 ext/pcre/pcrelib/pcre_internal.h strncmp((char *)(str1), (str2), (num)) str2 2713 ext/pcre/pcrelib/pcre_internal.h #define STRCMP_UC_UC(str1, str2) \ str2 2714 ext/pcre/pcrelib/pcre_internal.h PRIV(strcmp_uc_uc)((str1), (str2)) str2 2715 ext/pcre/pcrelib/pcre_internal.h #define STRCMP_UC_C8(str1, str2) \ str2 2716 ext/pcre/pcrelib/pcre_internal.h PRIV(strcmp_uc_c8)((str1), (str2)) str2 2717 ext/pcre/pcrelib/pcre_internal.h #define STRNCMP_UC_UC(str1, str2, num) \ str2 2718 ext/pcre/pcrelib/pcre_internal.h PRIV(strncmp_uc_uc)((str1), (str2), (num)) str2 2719 ext/pcre/pcrelib/pcre_internal.h #define STRNCMP_UC_C8(str1, str2, num) \ str2 2720 ext/pcre/pcrelib/pcre_internal.h PRIV(strncmp_uc_c8)((str1), (str2), (num)) str2 2727 ext/pcre/pcrelib/pcre_internal.h #define STRCMP_UC_UC_TEST(str1, str2) STRCMP_UC_UC(str1, str2) str2 2728 ext/pcre/pcrelib/pcre_internal.h #define STRCMP_UC_C8_TEST(str1, str2) STRCMP_UC_C8(str1, str2) str2 2737 ext/pcre/pcrelib/pcre_internal.h #define STRCMP_UC_UC_TEST(str1, str2) \ str2 2738 ext/pcre/pcrelib/pcre_internal.h (utf ? PRIV(strcmp_uc_uc_utf)((str1), (str2)) : PRIV(strcmp_uc_uc)((str1), (str2))) str2 2739 ext/pcre/pcrelib/pcre_internal.h #define STRCMP_UC_C8_TEST(str1, str2) \ str2 2740 ext/pcre/pcrelib/pcre_internal.h (utf ? PRIV(strcmp_uc_c8_utf)((str1), (str2)) : PRIV(strcmp_uc_c8)((str1), (str2))) str2 1564 ext/standard/basic_functions.c ZEND_ARG_INFO(0, str2) str2 2157 ext/standard/basic_functions.c ZEND_ARG_INFO(0, str2) str2 2318 ext/standard/basic_functions.c ZEND_ARG_INFO(0, str2) str2 81 ext/standard/levenshtein.c static int custom_levdist(char *str1, char *str2, char *callback_name TSRMLS_DC) str2 95 ext/standard/levenshtein.c char *str1, *str2; str2 103 ext/standard/levenshtein.c if (zend_parse_parameters(2 TSRMLS_CC, "ss", &str1, &str1_len, &str2, &str2_len) == FAILURE) { str2 106 ext/standard/levenshtein.c distance = reference_levdist(str1, str1_len, str2, str2_len, 1, 1, 1); str2 110 ext/standard/levenshtein.c if (zend_parse_parameters(5 TSRMLS_CC, "sslll", &str1, &str1_len, &str2, &str2_len, &cost_ins, &cost_rep, &cost_del) == FAILURE) { str2 113 ext/standard/levenshtein.c distance = reference_levdist(str1, str1_len, str2, str2_len, cost_ins, cost_rep, cost_del); str2 117 ext/standard/levenshtein.c if (zend_parse_parameters(3 TSRMLS_CC, "sss", &str1, &str1_len, &str2, &str2_len, &callback_name, &callback_len) == FAILURE) { str2 120 ext/standard/levenshtein.c distance = custom_levdist(str1, str2, callback_name TSRMLS_CC);