/PHP-8.1/Zend/tests/ |
H A D | property_exists.phpt | 9 var_dump(property_exists($a, "prot")); 13 var_dump(property_exists("A", "prot")); 20 var_dump(property_exists($a, "prot")); 24 var_dump(property_exists("A", "prot")); 31 static public $prot = "prot"; 32 static protected $prot2 = "prot"; 33 static private $prot3 = "prot";
|
H A D | bug43483.phpt | 7 D::prot(); 12 protected static function prot() { 13 echo "Successfully called D::prot().\n"; 19 Successfully called D::prot(). 22 [0] => prot
|
H A D | bug21888.phpt | 7 protected $prot = "protected property\n"; 9 protected function prot() { 17 $this->prot(); 21 print $this->prot;
|
H A D | bug45862.phpt | 9 var_dump(Tester::$prot); 14 static protected $prot = "protected var"; 33 ["prot"]=> 40 ["prot"]=>
|
H A D | access_modifiers_012.phpt | 6 protected function prot() { } 15 call_user_func(array($c, 'prot')); 20 In __call() for method prot()
|
H A D | call_user_func_001.phpt | 12 protected function prot($str) { 31 call_user_func(array(new $class, 'prot'), 'foobar'); 41 …rgument #1 ($callback) must be a valid callback, cannot access protected method testing\foo::prot()
|
H A D | get_mangled_object_vars.phpt | 8 protected $prot = 2; 37 '' . "\0" . '*' . "\0" . 'prot' => 2,
|
/PHP-8.1/ext/standard/tests/class_object/ |
H A D | get_object_vars_basic_002.phpt | 17 protected $prot = 'B::prot'; 42 ["prot"]=> 43 string(7) "B::prot" 53 ["prot"]=> 54 string(7) "B::prot"
|
H A D | get_object_vars_basic_001.phpt | 17 protected $prot = 'B::prot'; 69 ["prot"]=> 70 string(7) "B::prot" 78 ["prot"]=> 79 string(7) "B::prot" 89 ["prot"]=> 90 string(7) "B::prot"
|
H A D | get_class_vars_variation2.phpt | 17 protected $prot = "protected var"; 86 ["prot"]=> 102 ["prot"]=> 118 ["prot"]=> 130 ["prot"]=> 142 ["prot"]=> 154 ["prot"]=>
|
H A D | method_exists_basic_001.phpt | 16 protected function prot() {} 27 'pub', 'prot', 'priv', 55 Does C::prot exist? bool(true) 70 Does C::prot exist? bool(true)
|
/PHP-8.1/ext/reflection/tests/ |
H A D | ReflectionMethod_basic2.phpt | 29 protected function prot() {} 43 reflectMethod("TestClass", "prot"); 44 reflectMethod("DerivedClass", "prot"); 82 Reflecting on method TestClass::prot() 85 string(%d) "Method [ <user> protected method prot ] { 92 Reflecting on method DerivedClass::prot() 95 string(%d) "Method [ <user, inherits TestClass> protected method prot ] {
|
H A D | ReflectionMethod_basic3.phpt | 33 protected function prot() {} 47 reflectMethod("TestClass", "prot"); 48 reflectMethod("DerivedClass", "prot"); 99 Reflecting on method TestClass::prot() 103 string(4) "prot" 113 Reflecting on method DerivedClass::prot() 117 string(4) "prot"
|
H A D | ReflectionProperty_isDefault_basic.phpt | 18 protected $prot = 4; 24 reflectProperty("TestClass", "prot"); 44 Reflecting on property TestClass::prot
|
H A D | ReflectionMethod_basic4.phpt | 37 protected function prot() {} 51 reflectMethod("TestClass", "prot"); 52 reflectMethod("DerivedClass", "prot"); 102 Reflecting on method TestClass::prot() 116 Reflecting on method DerivedClass::prot()
|
H A D | ReflectionProperty_getModifiers.001.phpt | 28 protected $prot = 4; 34 reflectProperty("TestClass", "prot"); 54 Reflecting on property TestClass::prot
|
H A D | ReflectionProperty_basic1.phpt | 36 protected $prot = 4; 42 reflectProperty("TestClass", "prot"); 92 Reflecting on property TestClass::prot 95 string(33) "Property [ protected $prot = 4 ] 98 string(4) "prot"
|
H A D | ReflectionProperty_basic2.phpt | 29 protected $prot = 4; 35 reflectProperty("TestClass", "prot"); 73 Reflecting on property TestClass::prot
|
H A D | ReflectionProperty_setValue_error.phpt | 10 protected $prot = 4; 23 $propInfo = new ReflectionProperty('TestClass', 'prot');
|
H A D | ReflectionMethod_basic1.phpt | 43 protected function prot() {} 65 reflectMethod("TestClass", "prot"); 66 reflectMethod("DerivedClass", "prot"); 165 Reflecting on method TestClass::prot() 194 Reflecting on method DerivedClass::prot()
|
H A D | ReflectionProperty_getValue_error.phpt | 10 protected $prot = 4; 32 $propInfo = new ReflectionProperty('TestClass', 'prot');
|
H A D | ReflectionMethod_getModifiers_basic.phpt | 31 protected function prot() {} 109 Modifiers for method TestClass::prot(): 197 Modifiers for method TestClass::prot():
|
/PHP-8.1/ext/standard/tests/serialize/ |
H A D | sleep_undefined_declared_properties.phpt | 8 protected $prot; 12 unset($this->pub, $this->prot, $this->priv); 16 return ['pub', 'prot', 'priv']; 26 Warning: serialize(): "prot" returned as member variable from __sleep() but does not exist in %s on…
|
/PHP-8.1/ext/pcre/pcre2lib/sljit/ |
H A D | sljitWXExecAllocator.c | 124 int prot = PROT_READ | PROT_WRITE | SLJIT_PROT_WX; in sljit_malloc_exec() local 131 prot |= PROT_MAX(PROT_READ | PROT_WRITE | PROT_EXEC); in sljit_malloc_exec() 135 ptr = (sljit_uw*)mmap(NULL, size, prot, MAP_PRIVATE | MAP_ANON, -1, 0); in sljit_malloc_exec() 169 int prot = PROT_READ | (enable_exec ? PROT_EXEC : PROT_WRITE); in sljit_update_wx_flags() local 176 mprotect((void*)start, end - start, prot); in sljit_update_wx_flags() 214 DWORD prot = enable_exec ? PAGE_EXECUTE : PAGE_READWRITE; in sljit_update_wx_flags() local 221 VirtualProtect((void*)start, end - start, prot, &oldprot); in sljit_update_wx_flags()
|
H A D | sljitExecAllocator.c | 169 int prot = PROT_READ | PROT_WRITE | PROT_EXEC; in alloc_chunk() local 174 prot |= PROT_MAX(prot); in alloc_chunk() 186 retval = mmap(NULL, size, prot, flags, fd, 0); in alloc_chunk()
|