Searched defs:key_name (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/ext/intl/dateformat/ |
| H A D | dateformat_format.c | 60 * Internal function which fetches an element from the passed array for the key_name passed 63 HashTable* hash_arr, char* key_name, intl_error *err TSRMLS_DC) 73 if (zend_hash_find(hash_arr, key_name, strlen(key_name) + 1, 77 "a non-integer element for key '%s'", key_name); 85 Z_LVAL_PP(ele_value), key_name); 62 internal_get_arr_ele(IntlDateFormatter_object *dfo, HashTable* hash_arr, char* key_name, intl_error *err TSRMLS_DC) argument
|
| /PHP_TRUNK/ext/intl/locale/ |
| H A D | locale_methods.c | 747 * gets the value for the key_name and appends to the loc_name 751 static int append_key_value(smart_str* loc_name, HashTable* hash_arr, char* key_name) argument 755 if(zend_hash_find(hash_arr , key_name , strlen(key_name) + 1 ,(void **)&ele_value ) == SUCCESS ) { 760 if(strcmp(key_name, LOC_LANG_TAG) != 0 && 761 strcmp(key_name, LOC_GRANDFATHERED_LANG_TAG)!=0 ) { 776 static void add_prefix(smart_str* loc_name, char* key_name) argument 778 if( strncmp(key_name , LOC_PRIVATE_TAG , 7) == 0 ){ 787 * gets the multiple values for the key_name and appends to the loc_name 792 static int append_multiple_key_values(smart_str* loc_name, HashTable* hash_arr, char* key_name TSRMLS_D [all...] |
| /PHP_TRUNK/win32/ |
| H A D | registry.c | 27 const char **key_name = registry_keys; local 34 while (*key_name) { 37 main_key_len = strlen(*key_name); 39 memcpy(reg_key, *key_name, main_key_len); 47 ++key_name; 50 while (*key_name) { 51 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, *key_name, 0, KEY_READ, hKey) == ERROR_SUCCESS) { 54 ++key_name;
|
Completed in 7 milliseconds