Home
last modified time | relevance | path

Searched refs:name (Results 201 – 225 of 1889) sorted by relevance

12345678910>>...76

/PHP-7.2/ext/mbstring/oniguruma/doc/
H A DRE80 property-name:
222 (?<name>subexp), (?'name'subexp)
240 \k<name> \k'name' backreference a group with the specified name
257 \k<name+level> \k'name+level'
258 \k<name-level> \k'name-level'
291 \g<name> \g'name' call the group with the specified name
295 ex. (?<name>a|\g<name>b) => error
296 (?<name>a|b\g<name>c) => OK
306 ex. /(?-i:\g<name>)(?i:(?<name>a)){0}/.match("A")
354 + named group (?<name>...), (?'name'...)
[all …]
/PHP-7.2/Zend/tests/
H A Dbug75420.11.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
13 $name = "foo";
14 var_dump(empty($obj[$name]));
15 var_dump($name);
H A Dbug62907.phpt5 spl_autoload_register(function ($name) {
6 if ($name == "B") {
8 } else if ($name == "A") {
10 } else if ($name == "T") {
H A Dlist_keyed_evaluation_order.inc7 private $name;
8 public function __construct(string $name) {
9 $this->name = $name;
13 echo "$this->name evaluated.", PHP_EOL;
14 return $this->name;
H A Dbug68162.phpt6 $name = 'var';
7 var_dump(isset($$name));
9 var_dump(isset($$name));
/PHP-7.2/ext/standard/tests/file/
H A Drename_variation3-win32.phpt22 /* test rename() by trying to rename an existing file/dir to the same name
32 echo "\n-- Renaming file to same file name --\n";
36 echo "\n-- Renaming directory to same directory name --\n";
40 echo "\n-- Renaming existing file to existing directory name --\n";
45 echo "\n-- Renaming existing directory to existing file name --\n";
64 -- Renaming file to same file name --
68 -- Renaming directory to same directory name --
72 -- Renaming existing file to existing directory name --
79 -- Renaming existing directory to existing file name --
/PHP-7.2/ext/soap/tests/schema/
H A Dtest_schema.inc12 <definitions name="InteropTest"
28 <message name="testMessage">
29 <part name="testParam" $type/>
31 <portType name="testPortType">
32 <operation name="test">
36 <binding name="testBinding" type="testPortType">
38 <operation name="test">
45 <service name="testService">
46 <port name="testPort" binding="tns:testBinding">
H A Dschema064.phpt13 <complexType name="testType">
15 <element name="dateTime" type="dateTime"/>
16 <element name="time" type="time"/>
17 <element name="date" type="date"/>
18 <element name="gYearMonth" type="gYearMonth"/>
19 <element name="gYear" type="gYear"/>
20 <element name="gMonthDay" type="gMonthDay"/>
21 <element name="gDay" type="gDay"/>
22 <element name="gMonth" type="gMonth"/>
/PHP-7.2/ext/reflection/tests/
H A DReflectionClass_constructor_001.phpt12 //Return the name of another class
23 ["name"]=>
27 ["name"]=>
31 ["name"]=>
H A DReflectionObject_constructor_error.phpt17 ["name"]=>
23 ["name"]=>
29 ["name"]=>
35 ["name"]=>
41 ["name"]=>
47 ["name"]=>
/PHP-7.2/ext/wddx/tests/
H A Dbug72340.phpt13 <array><var name="XXXXXXXX"><boolean value="none">TEST</boolean></var>
14 <var name="YYYYYYYY"><var name="ZZZZZZZZ"><var name="EZEZEZEZ">
H A Dbug72790.phpt17 <var name="XXXX">
21 <var name="YYYY">
22 <var name="UUUU">
23 <var name="EZEZ">
/PHP-7.2/ext/spl/tests/
H A Dbug71202.phpt6 function inner_autoload ($name){
7 if ($name == 'A') {
22 spl_autoload_register(function ($name) {
23 if ($name == 'A') {
/PHP-7.2/ext/intl/tests/
H A Dlocale_compose_locale.phpt139 Input Array name is : loc1
143 Input Array name is : loc2
147 Input Array name is : loc3
151 Input Array name is : loc4
155 Input Array name is : loc5
159 Input Array name is : loc6
163 Input Array name is : loc7
167 Input Array name is : loc8
171 Input Array name is : loc9
176 Input Array name is : loc10
[all …]
/PHP-7.2/ext/soap/tests/bugs/
H A Dbug50698_2.wsdl183 <wsdl:portType name="EchoService">
184 <wsdl:operation name="Echo">
192 <wsdl:operation name="Echo">
213 <wsdl:service name="EchoService-1">
235 <wsdl:service name="EchoService-2">
257 <wsdl:service name="EchoService-3">
279 <wsdl:service name="EchoService-4">
301 <wsdl:service name="EchoService-5">
323 <wsdl:service name="EchoService-6">
345 <wsdl:service name="EchoService-7">
[all …]
/PHP-7.2/
H A DMakefile.gcov16 …-@files=`find . -name \*.gcda -o -name \*.gcno -o -name \*.da -o -name \*.c -o -name \*.h | sed -e…
78 @find . -name \*.gcda -o -name \*.da -o -name \*.bbg? | xargs rm -f
/PHP-7.2/scripts/dev/generate-phpt/src/texts/
H A DmethodNotSpecified.txt1 You have given a class name but not supplied a method name to test.
2 The method name is required.
/PHP-7.2/ext/tidy/tests/
H A D010.phpt24 ["name"]=>
48 ["name"]=>
71 ["name"]=>
117 ["name"]=>
148 ["name"]=>
179 ["name"]=>
202 ["name"]=>
223 ["name"]=>
248 ["name"]=>
278 ["name"]=>
[all …]
/PHP-7.2/ext/standard/tests/general_functions/
H A Dis_callable_basic1.phpt14 Description: use iscallable() on given string to check for valid function name
15 returns true if valid function name, false otherwise
33 /* function name with simple string */
37 /* function name with mixed string and integer */
41 /* function name as NULL */
45 /* function name with boolean name */
49 /* function name with string and special character */
60 /* use check_iscallable() to check whether given string is valid function name
/PHP-7.2/ext/standard/tests/array/
H A Darray_intersect_uassoc_variation9.phpt2 Test array_intersect_uassoc() function : usage variation - Passing non-existing function name to ca…
16 //function name within double quotes
19 //function name within single quotes
22 //function name without quotes
29 …e a valid callback, function 'unknown_function' not found or invalid function name in %s on line %d
32 …e a valid callback, function 'unknown_function' not found or invalid function name in %s on line %d
37 …e a valid callback, function 'unknown_function' not found or invalid function name in %s on line %d
H A Darray_intersect_ukey_variation8.phpt2 Test array_intersect_ukey() function : usage variation - Passing non-existing function name to call…
16 //function name within double quotes
19 //function name within single quotes
22 //function name without quotes
29 …e a valid callback, function 'unknown_function' not found or invalid function name in %s on line %d
32 …e a valid callback, function 'unknown_function' not found or invalid function name in %s on line %d
37 …e a valid callback, function 'unknown_function' not found or invalid function name in %s on line %d
/PHP-7.2/ext/session/tests/
H A Dbug32330.phpt8 session.name=sid
17 function sOpen($path, $name)
19 echo "open: path = {$path}, name = {$name}\n";
72 open: path = %s, name = sid
77 open: path = %s, name = sid
82 open: path = %s, name = sid
H A Dsession_basic4.phpt14 session.name=PHPSESSID
60 …t type="hidden" name="testvar1" value="testvalue1" /><input type="hidden" name="testvar2" value="t…
64 …t type="hidden" name="testvar1" value="testvalue1" /><input type="hidden" name="testvar2" value="t…
/PHP-7.2/ext/sqlite3/tests/
H A Dsqlite3stmt_paramCount_basic.phpt11 var_dump($db->exec('CREATE TABLE foobar (id INTEGER, name STRING, city STRING)'));
14 var_dump($db->exec("INSERT INTO foobar (id, name, city) VALUES (1, 'john', 'LA')"));
15 var_dump($db->exec("INSERT INTO foobar (id, name, city) VALUES (2, 'doe', 'SF')"));
21 "SELECT * FROM foobar WHERE id = :id AND name = :name ORDER BY id ASC",
22 "SELECT * FROM foobar WHERE id = 1 AND name = :name ORDER BY id ASC",
/PHP-7.2/ext/date/tests/
H A Dtimezone_name_from_abbr_basic1.phpt6 * Description: Returns the timezone name from abbrevation
20 echo "-- Lookup with just name --\n";
24 echo "-- Lookup with name and offset--\n";
28 echo "-- Tests without valid name - uses gmtOffset and isdst to find match --\n";
44 -- Lookup with just name --
47 -- Lookup with name and offset--
50 -- Tests without valid name - uses gmtOffset and isdst to find match --

Completed in 43 milliseconds

12345678910>>...76