Home
last modified time | relevance | path

Searched refs:self (Results 126 – 150 of 316) sorted by relevance

12345678910>>...13

/PHP-7.1/Zend/tests/
H A DselfParent_002.phpt7 const myDynConst = self::myConst;
10 var_dump(self::myDynConst);
H A Dbug48770_3.phpt25 call_user_func_array(array($this, 'self::func2'), array($str));
26 call_user_func_array(array($this, 'self::func3'), array($str));
27 call_user_func_array(array($this, 'self::inexistent'), array($str));
H A Dbug30702.phpt15 public $c3=self::C1;
16 public $c4=self::C2;
H A Dbug65372.phpt12 self::$_OBJECTS[1] = new ChildClass();
13 return self::$_OBJECTS[1];
H A Dbug38220.phpt49 if (is_null(self::$drv))
50 self::$drv = new drv;
51 return self::$drv;
H A Dbug66811.phpt8 var_dump(self::class);
23 var_dump(self::class);
H A Ddereference_012.phpt10 self::$x = array(1, 2, 3);
11 return self::$x;
H A Dbug43332_1.phpt2 Bug #43332.1 (self and parent as type hint in namespace)
8 public function bar(self $a) { }
/PHP-7.1/tests/classes/
H A Dconstants_visibility_002.phpt8 var_dump(self::protectedConst);
11 var_dump(self::protectedConst);
H A Dconstants_visibility_003.phpt8 var_dump(self::privateConst);
11 var_dump(self::privateConst);
H A Dproperty_override_protectedStatic_privateStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";
H A Dproperty_override_publicStatic_privateStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";
H A Dproperty_override_publicStatic_protectedStatic.phpt10 echo self::$p . "\n";
19 echo self::$p . "\n";
/PHP-7.1/sapi/fpm/tests/
H A Dfcgi.inc51 const MAXTYPE = self::UNKNOWN_TYPE;
448 if ($resp['type'] == self::GET_VALUES_RESULT) {
515 self::BEGIN_REQUEST,
549 'state' => self::REQ_STATE_WRITTEN,
595 if ($resp['type'] == self::STDOUT || $resp['type'] == self::STDERR) {
596 if ($resp['type'] == self::STDERR) {
604 if ($resp['type'] == self::END_REQUEST) {
640 case self::CANT_MPX_CONN:
643 case self::OVERLOADED:
646 case self::UNKNOWN_ROLE:
[all …]
H A Dtester.inc42 self::FILE_EXT_LOG_ACC,
43 self::FILE_EXT_LOG_ERR,
44 self::FILE_EXT_LOG_SLOW,
45 self::FILE_EXT_PID,
140 self::$supportedFiles
146 self::$filesToClean
156 if (is_dir(self::CONF_DIR)) {
160 rmdir(self::CONF_DIR);
240 $tester = new self($configTemplate, '', [], self::getCallerFileName());
243 self::clean(2);
[all …]
/PHP-7.1/ext/reflection/tests/
H A Dbug51905.phpt2 Bug #51905 (ReflectionParameter fails if default value is an array with an access to self::)
12 public function x($x = 1, $y = array(self::X), $z = parent::Y) {}
H A Dbug38465.phpt2 Bug #38465 (ReflectionParameter fails on access to self::)
11 public function x($a = self::X, $b = Baz::B, $c = 99) {}
16 public function y($a = self::Y, $b = Baz::B, $c = 99) {}
H A DReflectionMethod_defaultArg.phpt6 private function bar($a = self::class) {}
11 private function bar($a = self::class) {}
/PHP-7.1/ext/pdo_pgsql/
H A Dpgsql_driver.c140 return lo_write(self->conn, self->lfd, (char*)buf, count); in pgsql_lob_write()
146 return lo_read(self->conn, self->lfd, buf, count); in pgsql_lob_read()
154 lo_close(self->conn, self->lfd); in pgsql_lob_close()
157 efree(self); in pgsql_lob_close()
171 zend_off_t pos = lo_lseek64(self->conn, self->lfd, offset, whence); in pgsql_lob_seek()
173 zend_off_t pos = lo_lseek(self->conn, self->lfd, offset, whence); in pgsql_lob_seek()
194 struct pdo_pgsql_lob_self *self = ecalloc(1, sizeof(*self)); in pdo_pgsql_create_lob_stream() local
198 self->lfd = lfd; in pdo_pgsql_create_lob_stream()
199 self->oid = oid; in pdo_pgsql_create_lob_stream()
200 self->conn = H->server; in pdo_pgsql_create_lob_stream()
[all …]
/PHP-7.1/Zend/tests/closures/
H A Dclosure_from_callable.inc83 return Closure::fromCallable('self::publicInstanceFunc');
119 return Closure::fromCallable('self::publicInstanceFunc');
125 return Closure::fromCallable('self::protectedInstanceFunc');
130 return Closure::fromCallable('self::privateInstanceFunc');
/PHP-7.1/ext/standard/tests/class_object/
H A Dforward_static_call_003.phpt19 echo self::NAME, "\n";
29 echo self::NAME, "\n";
/PHP-7.1/ext/opcache/tests/
H A Dbug73746.phpt17 return self::CZ; // Works correctly if changed to CountryMapping::CZ
19 return self::EN; // Works correctly if changed to CountryMapping::EN
/PHP-7.1/ext/phar/phar/
H A Dpharcommand.inc257 self::notice($msg);
259 self::error($msg);
264 return self::cli_arg_typ_file($arg);
943 return self::phar_args('FE', 'phar');
1080 $args = self::phar_args('Fs', 'phar');
1123 return self::phar_args('FCe', 'phar');
1183 return self::phar_args('FHy', 'phar');
1305 return self::phar_args('Fek', 'phar');
1373 return self::phar_args('Fek', 'phar');
1447 return self::phar_args('Fk', 'phar');
[all …]
/PHP-7.1/ext/intl/tests/
H A Dtimezone_equals_basic.phpt13 echo "Comparison to self:\n";
25 Comparison to self:
/PHP-7.1/ext/sqlite3/tests/
H A Dsqlite3_openblob_wrongparams.phpt24 $ret = substr(self::$string, $this->position, $count);
36 return array('size' => self::$string_length);
46 return ($this->position >= self::$string_length);

Completed in 31 milliseconds

12345678910>>...13