Lines Matching defs:str

237 void whiteSpace_replace(xmlChar* str)  in whiteSpace_replace()
247 void whiteSpace_collapse(xmlChar* str) in whiteSpace_collapse()
286 static zval *soap_hash_str_find_deref(HashTable *ht, const char *str, size_t len) { in soap_hash_str_find_deref()
772 zend_string *str; in to_zval_base64() local
801 zend_string *str; in to_zval_hexbin() local
818 ZSTR_VAL(str)[i] = (c - '0') << 4; in to_zval_hexbin() local
820 ZSTR_VAL(str)[i] = (c - 'a' + 10) << 4; in to_zval_hexbin() local
822 ZSTR_VAL(str)[i] = (c - 'A' + 10) << 4; in to_zval_hexbin() local
828 ZSTR_VAL(str)[i] |= c - '0'; in to_zval_hexbin() local
830 ZSTR_VAL(str)[i] |= c - 'a' + 10; in to_zval_hexbin() local
832 ZSTR_VAL(str)[i] |= c - 'A' + 10; in to_zval_hexbin() local
837 ZSTR_VAL(str)[ZSTR_LEN(str)] = '\0'; in to_zval_hexbin() local
848 char *str; in to_xml_string() local
933 zend_string *str; in to_xml_base64() local
961 unsigned char *str; in to_xml_hexbin() local
1078 zend_string *str = zend_long_to_str(zval_get_long(data)); in to_xml_long() local
1093 char *str; in to_xml_double() local
2028 static int calc_dimension_12(const char* str) in calc_dimension_12()
2054 static int* get_position_12(int dimension, const char* str) in get_position_12()
2085 static int calc_dimension(const char* str) in calc_dimension()
2097 static void get_position_ex(int dimension, const char* str, int** pos) in get_position_ex()
2112 static int* get_position(int dimension, const char* str) in get_position()
3044 char *str, *start, *next; in to_xml_list() local