| /PHP_5_3/ext/bcmath/libbcmath/src/ |
| H A D | raisemod.c | 52 if (bc_is_zero(mod TSRMLS_CC)) return -1; 59 bc_init_num(&parity TSRMLS_CC); 69 bc_divide (exponent, BCG(_one_), &exponent, 0 TSRMLS_CC); /*truncate */ 78 while ( !bc_is_zero(exponent TSRMLS_CC) ) 80 (void) bc_divmod (exponent, BCG(_two_), &exponent, &parity, 0 TSRMLS_CC); 81 if ( !bc_is_zero(parity TSRMLS_CC) ) 83 bc_multiply (temp, power, &temp, rscale TSRMLS_CC); 84 (void) bc_modulo (temp, mod, &temp, scale TSRMLS_CC); 87 bc_multiply (power, power, &power, rscale TSRMLS_CC); 88 (void) bc_modulo (power, mod, &power, scale TSRMLS_CC); [all...] |
| /PHP_5_3/ext/intl/collator/ |
| H A D | collator_attr.c | 41 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", 45 "collator_get_attribute: unable to parse input params", 0 TSRMLS_CC ); 72 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oll", 76 "collator_set_attribute: unable to parse input params", 0 TSRMLS_CC ); 102 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", 106 "collator_get_strength: unable to parse input params", 0 TSRMLS_CC ); 131 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", 135 "collator_set_strength: unable to parse input params", 0 TSRMLS_CC );
|
| H A D | collator_compare.c | 49 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oss", 53 "collator_compare: unable to parse input params", 0 TSRMLS_CC ); 62 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) TSRMLS_CC ); 64 "Object not initialized", 0 TSRMLS_CC ); local 65 php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "Object not initialized"); 80 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) TSRMLS_CC ); 84 "Error converting first argument to UTF-16", 0 TSRMLS_CC ); local 96 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) TSRMLS_CC ); 100 "Error converting second argument to UTF-16", 0 TSRMLS_CC ); local
|
| H A D | collator_error.c | 36 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", 40 "collator_get_error_code: unable to parse input params", 0 TSRMLS_CC ); 46 co = (Collator_object *) zend_object_store_get_object(object TSRMLS_CC); 67 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", 71 "collator_get_error_message: unable to parse input params", 0 TSRMLS_CC ); 77 co = (Collator_object *) zend_object_store_get_object( object TSRMLS_CC ); 82 message = intl_error_get_message( COLLATOR_ERROR_P( co ) TSRMLS_CC );
|
| H A D | collator_locale.c | 42 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", 46 "collator_get_locale: unable to parse input params", 0 TSRMLS_CC ); 55 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) TSRMLS_CC ); 57 "Object not initialized", 0 TSRMLS_CC ); local 58 php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "Object not initialized");
|
| /PHP_5_3/ext/intl/dateformat/ |
| H A D | dateformat_attr.c | 38 intl_error_reset( NULL TSRMLS_CC ); 41 "datefmt_set_calendar: calendar value specified is out of valid range", 0 TSRMLS_CC); 72 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &object, IntlDateFormatter_ce_ptr ) == FAILURE ) 75 "datefmt_get_datetype: unable to parse input params", 0 TSRMLS_CC ); 98 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &object, IntlDateFormatter_ce_ptr ) == FAILURE ) 101 "datefmt_get_timetype: unable to parse input params", 0 TSRMLS_CC ); 125 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &object, IntlDateFormatter_ce_ptr ) == FAILURE ) 128 "datefmt_get_calendar: unable to parse input params", 0 TSRMLS_CC ); 151 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", &object, IntlDateFormatter_ce_ptr ) == FAILURE ) 154 "datefmt_get_timezone_id: unable to parse input params", 0 TSRMLS_CC ); [all...] |
| H A D | dateformat_data.c | 31 intl_error_reset( &datef_data->error TSRMLS_CC ); 47 intl_error_reset( &datef_data->error TSRMLS_CC ); 58 dateformat_data_init( datef_data TSRMLS_CC );
|
| H A D | dateformat_format.c | 70 "datefmt_format: parameter array does not contain a long element.", 0 TSRMLS_CC ); 97 year = internal_get_arr_ele( dfo, hash_arr, CALENDAR_YEAR TSRMLS_CC) + 1900; /* tm_year is years since 1900 */ 99 month = internal_get_arr_ele( dfo, hash_arr, CALENDAR_MON TSRMLS_CC); 100 hour = internal_get_arr_ele( dfo, hash_arr, CALENDAR_HOUR TSRMLS_CC); 101 minute = internal_get_arr_ele( dfo, hash_arr, CALENDAR_MIN TSRMLS_CC); 102 second = internal_get_arr_ele( dfo, hash_arr, CALENDAR_SEC TSRMLS_CC); 103 wday = internal_get_arr_ele( dfo, hash_arr, CALENDAR_WDAY TSRMLS_CC); 104 yday = internal_get_arr_ele( dfo, hash_arr, CALENDAR_YDAY TSRMLS_CC); 105 isInDST = internal_get_arr_ele( dfo, hash_arr, CALENDAR_ISDST TSRMLS_CC); 107 mday = internal_get_arr_ele( dfo, hash_arr, CALENDAR_MDAY TSRMLS_CC); 167 intl_errors_set(INTL_DATA_ERROR_P(dfo), U_ILLEGAL_ARGUMENT_ERROR, "datefmt_format: object must be an instance of DateTime", 0 TSRMLS_CC ); local 174 intl_errors_set(INTL_DATA_ERROR_P(dfo), U_ILLEGAL_ARGUMENT_ERROR, "datefmt_format: cannot get timestamp", 0 TSRMLS_CC ); local 185 "datefmt_format: takes either an array or an integer timestamp value or a DateTime object", 0 TSRMLS_CC ); local [all...] |
| /PHP_5_3/ext/intl/formatter/ |
| H A D | formatter_data.c | 32 intl_error_reset( &nf_data->error TSRMLS_CC ); 48 intl_error_reset( &nf_data->error TSRMLS_CC ); 59 formatter_data_init( nf_data TSRMLS_CC );
|
| H A D | formatter_main.c | 39 if( zend_parse_parameters( ZEND_NUM_ARGS() TSRMLS_CC, "sl|s", 43 "numfmt_create: unable to parse input parameters", 0 TSRMLS_CC ); 105 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", 109 "numfmt_get_error_code: unable to parse input params", 0 TSRMLS_CC ); 114 nfo = (NumberFormatter_object *) zend_object_store_get_object( object TSRMLS_CC ); 132 if( zend_parse_method_parameters( ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O", 136 "numfmt_get_error_message: unable to parse input params", 0 TSRMLS_CC ); 141 nfo = (NumberFormatter_object *) zend_object_store_get_object( object TSRMLS_CC ); 144 message = intl_error_get_message( INTL_DATA_ERROR_P(nfo) TSRMLS_CC );
|
| /PHP_5_3/ext/intl/ |
| H A D | intl_data.h | 38 intl_error_reset( NULL TSRMLS_CC ); 45 obj = (oclass##_object *) zend_object_store_get_object( object TSRMLS_CC ); \ 46 intl_error_reset( INTL_DATA_ERROR_P(obj) TSRMLS_CC ); \ 50 intl_error_set_code( NULL, (err) TSRMLS_CC ); \ 53 intl_error_set_custom_msg( NULL, msg, 0 TSRMLS_CC ); \ 59 intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \ 62 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 TSRMLS_CC ); \ 68 intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \ 71 intl_errors_set_custom_msg( INTL_DATA_ERROR_P((obj)), msg, 0 TSRMLS_CC ); \ 93 "Locale string too long, should be no longer than 80 characters", 0 TSRMLS_CC ); \ [all...] |
| /PHP_5_3/ext/intl/resourcebundle/ |
| H A D | resourcebundle_class.c | 43 intl_error_reset( INTL_DATA_ERROR_P(rb) TSRMLS_CC ); 52 zend_object_std_dtor( object TSRMLS_CC ); 65 zend_object_std_init( (zend_object *) rb, ce TSRMLS_CC ); 67 intl_error_init( INTL_DATA_ERROR_P(rb) TSRMLS_CC ); 72 retval.handle = zend_objects_store_put( rb, ResourceBundle_object_destroy, NULL, NULL TSRMLS_CC ); 90 ResourceBundle_object *rb = (ResourceBundle_object *) zend_object_store_get_object( object TSRMLS_CC); 92 intl_error_reset( NULL TSRMLS_CC ); 94 if( zend_parse_parameters( ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", 98 "resourcebundle_ctor: unable to parse input parameters", 0 TSRMLS_CC ); 114 intl_errors_set_code( NULL, INTL_DATA_ERROR_CODE(rb) TSRMLS_CC ); 117 intl_errors_set_custom_msg( INTL_DATA_ERROR_P(rb), pbuf, 1 TSRMLS_CC ); local 176 "resourcebundle_get: index should be integer or string", 0 TSRMLS_CC); local 187 intl_errors_set_custom_msg( INTL_DATA_ERROR_P(rb), pbuf, 1 TSRMLS_CC ); local 200 intl_errors_set_custom_msg( INTL_DATA_ERROR_P(rb), pbuf, 1 TSRMLS_CC ); local [all...] |
| /PHP_5_3/ext/bcmath/ |
| H A D | bcmath.c | 196 bc_str2num(num, str, 0 TSRMLS_CC); 200 bc_str2num(num, str, strlen(p+1) TSRMLS_CC); 214 if (zend_parse_parameters(argc TSRMLS_CC, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) { 222 bc_init_num(&first TSRMLS_CC); 223 bc_init_num(&second TSRMLS_CC); 224 bc_init_num(&result TSRMLS_CC); 225 php_str2num(&first, left TSRMLS_CC); 226 php_str2num(&second, right TSRMLS_CC); 253 if (zend_parse_parameters(argc TSRMLS_CC, "ss|l", &left, &left_len, &right, &right_len, &scale_param) == FAILURE) { 261 bc_init_num(&first TSRMLS_CC); [all...] |
| /PHP_5_3/ext/dom/ |
| H A D | attr.c | 67 zend_replace_error_handling(EH_THROW, dom_domexception_class_entry, &error_handling TSRMLS_CC); 68 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os|s", &id, dom_attr_class_entry, &name, &name_len, &value, &value_len) == FAILURE) { 69 zend_restore_error_handling(&error_handling TSRMLS_CC); 73 zend_restore_error_handling(&error_handling TSRMLS_CC); 74 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); 78 php_dom_throw_error(INVALID_CHARACTER_ERR, 1 TSRMLS_CC); 85 php_dom_throw_error(INVALID_STATE_ERR, 1 TSRMLS_CC); 92 php_libxml_node_free_resource(oldnode TSRMLS_CC); 94 php_libxml_increment_node_ptr((php_libxml_node_object *)intern, (xmlNodePtr)nodep, (void *)intern TSRMLS_CC); 112 php_dom_throw_error(INVALID_STATE_ERR, 0 TSRMLS_CC); [all...] |
| H A D | cdatasection.c | 60 zend_replace_error_handling(EH_THROW, dom_domexception_class_entry, &error_handling TSRMLS_CC); 61 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_cdatasection_class_entry, &value, &value_len) == FAILURE) { 62 zend_restore_error_handling(&error_handling TSRMLS_CC); 66 zend_restore_error_handling(&error_handling TSRMLS_CC); 70 php_dom_throw_error(INVALID_STATE_ERR, 1 TSRMLS_CC); 74 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); 78 php_libxml_node_free_resource(oldnode TSRMLS_CC); 80 php_libxml_increment_node_ptr((php_libxml_node_object *)intern, nodep, (void *)intern TSRMLS_CC);
|
| H A D | comment.c | 60 zend_replace_error_handling(EH_THROW, dom_domexception_class_entry, &error_handling TSRMLS_CC); 61 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O|s", &id, dom_comment_class_entry, &value, &value_len) == FAILURE) { 62 zend_restore_error_handling(&error_handling TSRMLS_CC); 66 zend_restore_error_handling(&error_handling TSRMLS_CC); 70 php_dom_throw_error(INVALID_STATE_ERR, 1 TSRMLS_CC); 74 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); 78 php_libxml_node_free_resource(oldnode TSRMLS_CC); 80 php_libxml_increment_node_ptr((php_libxml_node_object *)intern, (xmlNodePtr)nodep, (void *)intern TSRMLS_CC);
|
| H A D | entityreference.c | 59 zend_replace_error_handling(EH_THROW, dom_domexception_class_entry, &error_handling TSRMLS_CC); 60 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_entityreference_class_entry, &name, &name_len) == FAILURE) { 61 zend_restore_error_handling(&error_handling TSRMLS_CC); 65 zend_restore_error_handling(&error_handling TSRMLS_CC); 69 php_dom_throw_error(INVALID_CHARACTER_ERR, 1 TSRMLS_CC); 76 php_dom_throw_error(INVALID_STATE_ERR, 1 TSRMLS_CC); 80 intern = (dom_object *)zend_object_store_get_object(id TSRMLS_CC); 84 php_libxml_node_free_resource(oldnode TSRMLS_CC); 86 php_libxml_increment_node_ptr((php_libxml_node_object *)intern, node, (void *)intern TSRMLS_CC);
|
| /PHP_5_3/ext/mysqli/ |
| H A D | mysqli_exception.c | 50 php_error_docref(NULL TSRMLS_CC, E_WARNING, "(%s/%d): %s", sqlstate, errorno, message); 60 message TSRMLS_CC); 65 sqlstate TSRMLS_CC); 68 "00000" TSRMLS_CC); 72 zend_update_property_long(mysqli_exception_class_entry, sql_ex, "code", sizeof("code") - 1, errorno TSRMLS_CC); 74 zend_throw_exception_object(sql_ex TSRMLS_CC);
|
| /PHP_5_3/ext/oci8/ |
| H A D | oci8_interface.c | 59 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsz/|l", &stmt, &name, &name_len, &var, &type) == FAILURE) { 64 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Column name cannot be empty"); 108 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsz/|ll", &z_statement, &name, &name_len, &bind_var, &maxlen, &type) == FAILURE) { 118 if (php_oci_bind_by_name(statement, name, name_len, bind_var, maxlen, bind_type TSRMLS_CC)) { 138 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rsz/l|ll", &z_statement, &name, &name_len, &bind_var, &max_array_len, &max_item_len, &type) == FAILURE) { 149 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Maximum array length must be greater than zero"); 153 if (php_oci_bind_array_by_name(statement, name, name_len, bind_var, max_array_len, max_item_len, type TSRMLS_CC)) { 168 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &z_descriptor, oci_lob_class_entry_ptr) == FAILURE) { 174 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to find descriptor property"); 197 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, " [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | ftok.c | 38 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &pathname, &pathname_len, &proj, &proj_len) == FAILURE) { 47 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Pathname is invalid"); 52 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Project identifier is invalid"); 56 if ((PG(safe_mode) && (!php_checkuid(pathname, NULL, CHECKUID_CHECK_FILE_AND_DIR))) || php_check_open_basedir(pathname TSRMLS_CC)) { 62 php_error_docref(NULL TSRMLS_CC, E_WARNING, "ftok() failed - %s", strerror(errno));
|
| H A D | link.c | 63 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &link, &link_len) == FAILURE) { 75 if (php_check_open_basedir(link TSRMLS_CC)) { 82 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", strerror(errno)); 102 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &link, &link_len) == FAILURE) { 109 if (php_check_open_basedir(dirname TSRMLS_CC)) { 116 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", strerror(errno)); 138 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &topath, &topath_len, &frompath, &frompath_len) == FAILURE) { 150 if (!expand_filepath(frompath, source_p TSRMLS_CC)) { 151 php_error_docref(NULL TSRMLS_CC, E_WARNING, "No such file or directory"); 158 if (!expand_filepath_ex(topath, dest_p, dirname, len TSRMLS_CC)) { [all...] |
| H A D | link_win32.c | 62 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &link, &link_len) == FAILURE) { 71 php_error_docref(NULL TSRMLS_CC, E_WARNING, "readlink failed to read the symbolic link (%s), error %d)", link, GetLastError()); 87 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &link, &link_len) == FAILURE) { 93 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", strerror(errno)); 122 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't call CreateSymbolicLinkA"); 126 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can't call get a handle on kernel32.dll"); 130 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &topath, &topath_len, &frompath, &frompath_len) == FAILURE) { 134 if (!expand_filepath(frompath, source_p TSRMLS_CC)) { 135 php_error_docref(NULL TSRMLS_CC, E_WARNING, "No such file or directory"); 142 if (!expand_filepath_ex(topath, dest_p, dirname, len TSRMLS_CC)) { [all...] |
| /PHP_5_3/main/ |
| H A D | php_memory_streams.h | 32 #define php_stream_memory_create(mode) _php_stream_memory_create((mode) STREAMS_CC TSRMLS_CC) 33 #define php_stream_memory_create_rel(mode) _php_stream_memory_create((mode) STREAMS_REL_CC TSRMLS_CC) 34 #define php_stream_memory_open(mode, buf, length) _php_stream_memory_open((mode), (buf), (length) STREAMS_CC TSRMLS_CC) 35 #define php_stream_memory_get_buffer(stream, length) _php_stream_memory_get_buffer((stream), (length) STREAMS_CC TSRMLS_CC) 38 #define php_stream_temp_create(mode, max_memory_usage) _php_stream_temp_create((mode), (max_memory_usage) STREAMS_CC TSRMLS_CC) 39 #define php_stream_temp_create_rel(mode, max_memory_usage) _php_stream_temp_create((mode), (max_memory_usage) STREAMS_REL_CC TSRMLS_CC) 40 #define php_stream_temp_open(mode, max_memory_usage, buf, length) _php_stream_temp_open((mode), (max_memory_usage), (buf), (length) STREAMS_CC TSRMLS_CC)
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd.h | 74 #define mysqlnd_plugin_get_plugin_connection_data(c, p_id) _mysqlnd_plugin_get_plugin_connection_data((c), (p_id) TSRMLS_CC) 77 #define mysqlnd_plugin_get_plugin_result_data(r, p_id) _mysqlnd_plugin_get_plugin_result_data((r), (p_id) TSRMLS_CC) 80 #define mysqlnd_plugin_get_plugin_stmt_data(s, p_id) _mysqlnd_plugin_get_plugin_stmt_data((s), (p_id) TSRMLS_CC) 83 #define mysqlnd_plugin_get_plugin_protocol_data(p, p_id) _mysqlnd_plugin_get_plugin_protocol_data((p), (p_id) TSRMLS_CC) 93 #define mysqlnd_restart_psession(conn) (conn)->m->restart_psession((conn) TSRMLS_CC) 94 #define mysqlnd_end_psession(conn) (conn)->m->end_psession((conn) TSRMLS_CC) 103 #define mysqlnd_init(persistent) _mysqlnd_init((persistent) TSRMLS_CC) 114 #define mysqlnd_change_user(conn, user, passwd, db, silent) (conn)->m->change_user((conn), (user), (passwd), (db), (silent) TSRMLS_CC) 116 #define mysqlnd_debug(x) _mysqlnd_debug((x) TSRMLS_CC) 120 #define mysqlnd_fetch_into(result, flags, ret_val, ext) (result)->m.fetch_into((result), (flags), (ret_val), (ext) TSRMLS_CC ZEND_FILE_LINE_C [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_language_parser.y | 165 | namespace_name T_NS_SEPARATOR T_STRING { zend_do_build_namespace_name(&$$, &$1, &$3 TSRMLS_CC); } 173 | T_NAMESPACE namespace_name ';' { zend_do_begin_namespace(&$2, 0 TSRMLS_CC); } 174 | T_NAMESPACE namespace_name '{' { zend_do_begin_namespace(&$2, 1 TSRMLS_CC); } 176 | T_NAMESPACE '{' { zend_do_begin_namespace(NULL, 1 TSRMLS_CC); } 188 namespace_name { zend_do_use(&$1, NULL, 0 TSRMLS_CC); } 189 | namespace_name T_AS T_STRING { zend_do_use(&$1, &$3, 0 TSRMLS_CC); } 190 | T_NS_SEPARATOR namespace_name { zend_do_use(&$2, NULL, 1 TSRMLS_CC); } 191 | T_NS_SEPARATOR namespace_name T_AS T_STRING { zend_do_use(&$2, &$4, 1 TSRMLS_CC); } 195 constant_declaration ',' T_STRING '=' static_scalar { zend_do_declare_constant(&$3, &$5 TSRMLS_CC); } 196 | T_CONST T_STRING '=' static_scalar { zend_do_declare_constant(&$2, &$4 TSRMLS_CC); } [all...] |