Home
last modified time | relevance | path

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

12345678910>>...65

/PHP-5.5/win32/
H A Dregistry.c70 char *name = (char*)emalloc(max_name+1); in LoadDirectory() local
78 if (RegEnumValue(key, i, name, &name_len, NULL, &type, value, &value_len) == ERROR_SUCCESS) { in LoadDirectory()
95 zend_hash_update(ht, name, name_len+1, &data, sizeof(zval*), NULL); in LoadDirectory()
120 efree(name); in LoadDirectory()
130 char *name = (char*)emalloc(max_key+1); in LoadDirectory() local
138 if (RegEnumKeyEx(key, i, name, &name_len, NULL, NULL, NULL, &t) == ERROR_SUCCESS) { in LoadDirectory()
139 if (RegOpenKeyEx(key, name, 0, KEY_READ, &subkey) == ERROR_SUCCESS) { in LoadDirectory()
143 memcpy(new_path+path_len+1, name, name_len+1); in LoadDirectory()
147 memcpy(new_path, name, name_len+1); in LoadDirectory()
158 efree(name); in LoadDirectory()
H A Dglob.c773 match(name, pat, patend) in match() argument
774 register Char *name, *pat, *patend; in match()
786 if (match(name, pat, patend))
788 while (*name++ != EOS)
792 if (*name++ == EOS)
797 if ((k = *name++) == EOS)
812 if (*name++ != c)
817 return(*name == EOS);
H A Dinstall.txt448 filter. Use PHP as the filter name, and supply a path to the
775 <Object name="x-httpd-php">
1060 source distribution, and that extname is the name of the PECL
1278 name can be determined by php_sapi_name().
1328 each configuration setting in the php3.ini name, except the name is
1331 php_value name value
1339 php_flag name on|off
1343 php_admin_value name value
1349 php_admin_flag name on|off
1380 of it. The values under the key should have the name of the PHP
[all …]
/PHP-5.5/win32/build/
H A Dconfutils.js511 function DEFINE(name, value) argument
514 configure_subst.Remove(name);
516 configure_subst.Add(name, value);
668 name = name.replace(rExp,"_debug.lib");
669 libnames.unshift(name);
2023 name = target.toUpperCase() + "_" + name;
2033 configure_subst.Remove(name);
2038 if (flags && (name.substr(name.length-3) != "PHP") && (name.substr(0, 7) == "CFLAGS_")) {
2044 function get_define(name) argument
2053 function ADD_DEF_FILE(name) argument
[all …]
H A Dmkdist.php157 $name = $pkg . '-' . $packages[$pkg];
158 $tarball = $dest_dir . "/" . $name . '.tgz';
159 $filename = $name . '/' . $filename;
493 foreach ($packages as $name => $version) {
494 $filename = "$name-$version.tgz";
499 echo "Downloading $name from $url\n";
H A Dphpize.js.in69 // now we need the extension name out of this thing
H A Dprojectgen.js455 name = FSO.GetFileName(f.item());
457 if (name.substr(name.length-2) == ".c") {
458 files += " ./" + name;
472 name = FSO.GetFileName(f.item());
474 if (name.substr(name.length-2) == ".h") {
475 headers += " ./" + name;
501 name = FSO.GetFileName(lib.item());
503 if (name.substr(name.length-2) == ".h") {
504 libheaders += " ./" + path + "\\" + name;
H A Dconfig.w32236 // set up the build dir and DLL name
H A Dconfig.w32.phpize.in213 // set up the build dir and DLL name
/PHP-5.5/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-5.5/tests/lang/
H A Dbug20175.phpt87 * 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;
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 D030.phpt6 function foo($name) {
8 $this->Name = $name;
/PHP-5.5/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 Dimplicit_instantiation_001.phpt18 foreach($c as $name => $value) {
19 echo "\n\n---( \$c->$name )---";
21 $c->$name->prop++;
22 $c->$name = $value; // reset value in case implicit conversion was successful
25 $c->$name->prop = "Implicit instantiation!";
26 $c->$name = $value; // reset value in case implicit conversion was successful
29 $c->$name->prop .= " Implicit instantiation!";
H A Dinheritance_007.phpt24 ["name"]=>
31 ["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 … $a->$b[Y](), $b[Y] represents a method name on $a. But in $a->X[Y](), $a->X[Y] represents a globa…
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 Darray_access_008.phpt32 var_dump($people->person[0]['name']);
33 $people->person[0]['name'] = $people->person[0]['name'] . 'Bar';
34 var_dump($people->person[0]['name']);
35 $people->person[0]['name'] .= 'Baz';
42 var_dump($people[0]['name']);
43 $people[0]['name'] = 'FooBar';
44 var_dump($people[0]['name']);
45 $people[0]['name'] = $people->person[0]['name'] . 'Bar';
46 var_dump($people[0]['name']);
47 $people[0]['name'] .= 'Baz';
[all …]
H A Darray_access_009.phpt101 $people->person[0]['name'] = $people->person[0]['name'] . 'Bar';
111 var_dump($people[0]['name']);
113 var_dump($people[0]['name']);
114 $people[0]['name'] = $people->person[0]['name'] . 'Bar';
115 var_dump($people[0]['name']);
116 $people[0]['name'] .= 'Baz';
117 var_dump($people[0]['name']);
118 unset($people[0]['name']);
120 var_dump($people[0]['name']);
122 var_dump($people[0]['name']);
[all …]
H A Darray_access_010.phpt74 $people->person[0]['name'] = $people->person[0]['name'] . 'Bar';
84 var_dump($people[0]['name']);
86 var_dump($people[0]['name']);
87 $people[0]['name'] = $people->person[0]['name'] . 'Bar';
88 var_dump($people[0]['name']);
89 $people[0]['name'] .= 'Baz';
90 var_dump($people[0]['name']);
91 unset($people[0]['name']);
93 var_dump($people[0]['name']);
113 ["name"]=>
[all …]

Completed in 32 milliseconds

12345678910>>...65