Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 1814) sorted by last modified time

12345678910>>...73

/PHP-7.0/win32/
H A Dinstall.txt439 filter. Use PHP as the filter name, and supply a path to the
766 <Object name="x-httpd-php">
1051 source distribution, and that extname is the name of the PECL
1269 name can be determined by php_sapi_name().
1319 each configuration setting in the php3.ini name, except the name is
1322 php_value name value
1330 php_flag name on|off
1334 php_admin_value name value
1340 php_admin_flag name on|off
1371 of it. The values under the key should have the name of the PHP
[all …]
H A Dregistry.c88 char *name = (char*)emalloc(max_name+1); in LoadDirectory() local
96 memset(name, '\0', max_name+1); in LoadDirectory()
99 if (RegEnumValue(key, i, name, &name_len, NULL, &type, value, &value_len) == ERROR_SUCCESS) { in LoadDirectory()
111 zend_hash_str_update(ht, name, name_len, &data); in LoadDirectory()
129 efree(name); in LoadDirectory()
139 char *name = (char*)emalloc(max_key+1); in LoadDirectory() local
147 if (RegEnumKeyEx(key, i, name, &name_len, NULL, NULL, NULL, &t) == ERROR_SUCCESS) { in LoadDirectory()
148 if (RegOpenKeyEx(key, name, 0, KEY_READ, &subkey) == ERROR_SUCCESS) { in LoadDirectory()
152 memcpy(new_path+path_len+1, name, name_len+1); in LoadDirectory()
156 memcpy(new_path, name, name_len+1); in LoadDirectory()
[all …]
H A Dglob.c767 match(name, pat, patend) in match() argument
768 register Char *name, *pat, *patend; in match()
780 if (match(name, pat, patend))
782 while (*name++ != EOS)
786 if (*name++ == EOS)
791 if ((k = *name++) == EOS)
806 if (*name++ != c)
811 return(*name == EOS);
/PHP-7.0/win32/build/
H A Dconfutils.js543 function DEFINE(name, value) argument
546 configure_subst.Remove(name);
754 name = name.replace(rExp,"_debug.lib");
755 libnames.unshift(name);
1817 if (name == list[i]) {
2301 name = target.toUpperCase() + "_" + name;
2321 configure_subst.Remove(name);
2326 function get_define(name) argument
2335 function ADD_DEF_FILE(name) argument
2763 var name = undefined;
[all …]
H A Dmkdist.php174 $name = $pkg . '-' . $packages[$pkg];
175 $tarball = $dest_dir . "/" . $name . '.tgz';
176 $filename = $name . '/' . $filename;
527 foreach ($packages as $name => $version) {
528 $filename = "$name-$version.tgz";
533 echo "Downloading $name from $url\n";
H A Dphpize.js.in68 // now we need the extension name out of this thing
/PHP-7.0/tests/output/
H A Dob_start_error_002.phpt38 Warning: ob_start(): function 'no' not found or invalid function name in %s on line 16
/PHP-7.0/tests/lang/
H A Dbug43958.phpt2 Bug #43958 (class name added into the error message)
H A Dengine_assignExecutionOrder_001.phpt8 return "name";
19 var_dump($name);
44 public static $name = "original";
50 var_dump(C::$name);
87 [%u|b%"name"]=>
138 [%u|b%"name"]=>
H A D028.phpt37 function SetMyName($name) {
38 $this->myname = $name;
52 print $name=call_user_func(array(&$dafna,"GetMyName"));
H A Dbug20175.phpt85 * Storing a reference to a new instance (that's where the name of the test
H A Dbug21961.phpt10 public $name, $bars;
13 $this->name = 'Mr. X';
24 return $this->name;
30 public $name;
34 $this->name = $w;
39 return $this->name;
/PHP-7.0/tests/classes/
H A Dunset_properties.phpt15 public function __get($name)
17 return '__get "' . $name . '"';
20 public function __set($name, $value)
22 $this->$name = $value;
23 echo '__set "' . $name . '" to "' . $value . '"';
26 public function __isset($name)
28 echo '__isset "' . $name . '"';
29 return isset($this->$name);
H A Dinheritance_002.phpt60 Deprecated: Methods with the same name as their class will not be constructors in a future version …
62 Deprecated: Methods with the same name as their class will not be constructors in a future version …
64 Deprecated: Methods with the same name as their class will not be constructors in a future version …
H A Dinheritance_005.phpt44 Deprecated: Methods with the same name as their class will not be constructors in a future version …
H A Dinheritance_007.phpt21 Deprecated: Methods with the same name as their class will not be constructors in a future version …
25 ["name"]=>
32 ["name"]=>
H A Dinterface_constant_inheritance_003.phpt2 Ensure a class may not inherit two constants with the same name from two separate interfaces.
H A Dmethod_call_variation_001.phpt2 In $a->$b[Y]() and $a->X[Y]() both $a->$b[Y] and $a->X[Y] represent a global function name
11 $name = 'functions';
17 $c->$name[0](1, 2);
18 $c->$name[1][2][3][4](3, 4);
H A Dobject_reference_001.phpt9 public $name;
12 $this->name = "I'm Foo!\n";
17 echo $foo->name;
19 $bar->name = "I'm Bar!\n";
22 echo $foo->name;
H A Dclone_006.phpt25 $original->name = "Hello";
33 echo $clone->name . "\n";
H A Dctor_dtor_inheritance.phpt14 public $name;
18 $this->name = 'base';
32 $this->name = 'init';
37 $this->name = 'derived';
62 [name] => base
67 [name] => base
73 [name] => init
79 [name] => base
85 [name] => derived
91 [name] => derived
[all …]
H A Dctor_name_clash.phpt2 ZE2 The child class can re-use the parent class name for a function member
21 Deprecated: Methods with the same name as their class will not be constructors in a future version …
H A Ddereferencing_001.phpt10 $this->name = $_name;
14 echo $this->name . "\n";
19 private $name;
22 $this->name = new Name($_name);
26 return $this->name;
H A Dfinal_ctor1.phpt28 Deprecated: Methods with the same name as their class will not be constructors in a future version …
H A Dfinal_ctor2.phpt28 Deprecated: Methods with the same name as their class will not be constructors in a future version …

Completed in 37 milliseconds

12345678910>>...73