Home
last modified time | relevance | path

Searched refs:name (Results 376 – 400 of 1814) sorted by relevance

1...<<11121314151617181920>>...73

/PHP-7.0/scripts/dev/generate-phpt/src/texts/
H A DunknownClass.txt2 The class name is not a valid PHP class name.
H A DunknownFunction.txt2 The function name is not a valid PHP function name.
H A DunknownMethod.txt2 The method name is not a valid PHP method name.
/PHP-7.0/ext/zip/lib/
H A Dzip_file_replace.c57 _zip_file_replace(zip_t *za, zip_uint64_t idx, const char *name, zip_source_t *source, zip_flags_t … in _zip_file_replace() argument
71 i = _zip_name_locate(za, name, flags, NULL); in _zip_file_replace()
81 if (name && _zip_set_name(za, idx, name, flags) != 0) { in _zip_file_replace()
/PHP-7.0/ext/date/tests/
H A Dstrftime_variation4.phpt19 'Abbreviated month name' => "%b",
20 'Full month name' => "%B",
37 --Abbreviated month name--
41 --Full month name--
/PHP-7.0/ext/soap/tests/schema/
H A Dschema070.phpt9 <complexType name="testType">
10 <attribute name="str" type="string"/>
13 <attributeGroup name="int_group">
14 <attribute name="int" type="int" default="5"/>
H A Dschema043.phpt9 <complexType name="testType2">
12 <attribute name="int" type="int"/>
16 <complexType name="testType">
19 <attribute name="int2" type="int"/>
H A Dschema045.phpt9 <complexType name="testType2">
12 <attribute name="int" type="int"/>
16 <complexType name="testType">
19 <attribute name="int2" type="int"/>
/PHP-7.0/ext/standard/
H A Dversioning.c85 const char *name; member
108 for (pp = special_forms; pp && pp->name; pp++) { in compare_special_version_forms()
109 if (strncmp(form1, pp->name, strlen(pp->name)) == 0) { in compare_special_version_forms()
114 for (pp = special_forms; pp && pp->name; pp++) { in compare_special_version_forms()
115 if (strncmp(form2, pp->name, strlen(pp->name)) == 0) { in compare_special_version_forms()
/PHP-7.0/ext/reflection/tests/
H A DReflectionMethod_constructor_error1.phpt47 echo "\nClass and Method in same string, bad method name:\n";
53 echo "\nClass and Method in same string, bad class name:\n";
68 ReflectionException: Invalid method name 1 in %s
73 ReflectionException: Invalid method name 3 in %s
88 ReflectionException: Invalid method name TestClass in %s
92 Class and Method in same string, bad method name:
97 Class and Method in same string, bad class name:
H A Dtraits004.phpt34 ["name"]=>
49 ["name"]=>
54 ["name"]=>
/PHP-7.0/sapi/apache2handler/
H A Dphp_functions.c57 #define SECTION(name) PUTS("<h2>" name "</h2>\n") argument
111 #define ADD_LONG(name) \ argument
112 add_property_long(return_value, #name, rr->name)
113 #define ADD_TIME(name) \ argument
114 add_property_long(return_value, #name, apr_time_sec(rr->name));
115 #define ADD_STRING(name) \ argument
116 if (rr->name) add_property_string(return_value, #name, (char *) rr->name)
356 char *s = (char *) ap_loaded_modules[n]->name; in PHP_FUNCTION()
383 char *s = (char *) ap_loaded_modules[n]->name; in PHP_MINFO_FUNCTION()
/PHP-7.0/sapi/cgi/tests/
H A Dapache_request_headers.phpt23 foreach ($names as $name) {
24 putenv($name."=".str_repeat("A", 256));
26 putenv($name);
/PHP-7.0/ext/session/tests/
H A Dsession_name_basic.phpt5 session.name=PHPSESSID
15 * Prototype : string session_name([string $name])
16 * Description : Get and/or set the current session name
/PHP-7.0/Zend/tests/
H A Dns_047.phpt2 047: Run-time name conflict and constants (php name)
H A Dbug38211.phpt2 Bug #38211 (variable name and cookie name match breaks script execution)
H A Dns_007.phpt2 007: Run-time name conflict (php name)
H A Dns_046.phpt2 046: Run-time name conflict and constants (ns name)
/PHP-7.0/ext/zip/tests/
H A Doo_externalattributes.phpt11 $name = __DIR__ . '/withattr.zip';
15 $r = $zip->open($name, ZIPARCHIVE::CREATE);
24 $r = $zip->open($name);
44 $name = __DIR__ . '/withattr.zip';
45 @unlink($name);
/PHP-7.0/ext/spl/
H A Dspl_functions.c85 if ((tmp = zend_hash_find(Z_ARRVAL_P(list), pce->name)) == NULL) { in spl_add_class_name()
87 ZVAL_STR_COPY(&t, pce->name); in spl_add_class_name()
88 zend_hash_add(Z_ARRVAL_P(list), pce->name, &t); in spl_add_class_name()
137 return zend_mangle_property_name(ZSTR_VAL(ce->name), ZSTR_LEN(ce->name), prop_name, prop_len, 0); in spl_gen_private_prop_name()
/PHP-7.0/ext/spl/tests/
H A Diterator_003.phpt9 private $name;
11 public function __construct($id, $name)
14 $this->name = $name;
19 return $this->id . ', ' . $this->name;
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_help.c31 #define PHPDBG_COMMAND_HELP_D(name, tip, alias, action) \ argument
189 for (c=commands; c->name; c++) { in get_command()
198 for (c=commands; c->name; c++) { in get_command()
199 if (!strncmp(c->name, key, len)) { in get_command()
247 pretty_print(get_help(cmd->name)); in PHPDBG_COMMAND()
252 for (cmd=phpdbg_prompt_commands; cmd->name; cmd++) { in PHPDBG_COMMAND()
253 if (!strncmp(cmd->name, param->str, param->len)) { in PHPDBG_COMMAND()
271 pretty_print(get_help(cmd->name)); in PHPDBG_COMMAND()
290 for(c = phpdbg_prompt_commands; c->name; c++) { in PHPDBG_HELP()
298 c->alias, c_sub->alias, c->name, len, c_sub->name, c_sub->tip); in PHPDBG_HELP()
[all …]
/PHP-7.0/Zend/
H A Dzend_interfaces.c293 …ble or implement interface Iterator", ce ? ZSTR_VAL(ce->name) : ZSTR_VAL(Z_OBJCE_P(object)->name)); in zend_user_it_get_new_iterator()
320 ZSTR_VAL(class_type->name), in zend_implement_traversable()
321 ZSTR_VAL(zend_ce_traversable->name), in zend_implement_traversable()
322 ZSTR_VAL(zend_ce_iterator->name), in zend_implement_traversable()
323 ZSTR_VAL(zend_ce_aggregate->name)); in zend_implement_traversable()
344 ZSTR_VAL(class_type->name), in zend_implement_aggregate()
345 ZSTR_VAL(interface->name), in zend_implement_aggregate()
346 ZSTR_VAL(zend_ce_iterator->name)); in zend_implement_aggregate()
376 ZSTR_VAL(class_type->name), in zend_implement_iterator()
377 ZSTR_VAL(interface->name), in zend_implement_iterator()
[all …]
/PHP-7.0/main/streams/
H A Dphp_stream_transport.h49 PHPAPI php_stream *_php_stream_xport_create(const char *name, size_t namelen, int options,
57 #define php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, est… argument
58 …_php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, estr, eco…
62 const char *name, size_t namelen,
68 const char *name, size_t namelen,
143 char *name; member
/PHP-7.0/ext/standard/tests/class_object/
H A Dget_class_methods_basic_001.phpt23 echo "Argument is class name:\n";
30 echo "Argument is name of class which has no methods:\n";
40 Argument is class name:
58 Argument is name of class which has no methods:

Completed in 67 milliseconds

1...<<11121314151617181920>>...73