/PHP-8.3/ext/com_dotnet/ |
H A D | com_extension.stub.php | 291 function variant_set(variant $variant, mixed $value): void {} argument 319 function variant_abs(mixed $value): variant {} 321 function variant_fix(mixed $value): variant {} 333 function variant_date_to_timestamp(variant $variant): ?int {} argument 337 function variant_get_type(variant $variant): int {} argument 339 function variant_set_type(variant $variant, int $type): void {} argument 341 function variant_cast(variant $variant, int $type): variant {} argument 347 function com_event_sink(variant $variant, object $sink_object, array|string|null $sink_interface = … argument 356 class variant class 361 class com extends variant [all …]
|
H A D | com_extension_arginfo.h | 5 ZEND_ARG_OBJ_INFO(0, variant, variant, 0) 9 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_variant_add, 0, 2, variant, 0) 38 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_variant_abs, 0, 1, variant, 0) 50 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_INFO_EX(arginfo_variant_round, 0, 2, variant, 1) 63 ZEND_ARG_OBJ_INFO(0, variant, variant, 0) 71 ZEND_ARG_OBJ_INFO(0, variant, variant, 0) 75 ZEND_ARG_OBJ_INFO(0, variant, variant, 0) 80 ZEND_ARG_OBJ_INFO(0, variant, variant, 0) 93 ZEND_ARG_OBJ_INFO(0, variant, variant, 0) 99 ZEND_ARG_OBJ_TYPE_MASK(0, variant, variant, MAY_BE_STRING, NULL) [all …]
|
H A D | com_persist.stub.php | 7 public function __construct(?variant $variant = null) {} argument
|
H A D | com_persist_arginfo.h | 5 ZEND_ARG_OBJ_INFO_WITH_DEFAULT_VALUE(0, variant, variant, 1, "null")
|
/PHP-8.3/ext/com_dotnet/tests/ |
H A D | bug77177.phpt | 13 $variant = new VARIANT; 14 foreach ([$com, $dotnet, $variant] as $object) { 22 $strings = ['C:3:"com":0:{}', 'C:6:"dotnet":0:{}', 'C:7:"variant":0:{}']; 31 $strings = ['O:3:"com":0:{}', 'O:6:"dotnet":0:{}', 'O:7:"variant":0:{}']; 43 Exception: Serialization of 'variant' is not allowed 46 Exception: Unserialization of 'variant' is not allowed 49 Exception: Unserialization of 'variant' is not allowed
|
H A D | bug62474.phpt | 7 var_dump(com_event_sink(new variant, function() {}, array())); 8 var_dump(com_event_sink(new variant, new variant, 'a'));
|
H A D | gh8750a.phpt | 2 Bug GH-8750 (Can not create VT_ERROR variant type) - cast and conversion 7 $error = new variant(DISP_E_PARAMNOTFOUND, VT_ERROR); 32 Warning: Object of class variant could not be converted to int in %s on line %d 34 Unsupported operand types: int + variant
|
H A D | bug79247.phpt | 2 Bug #79247 (Garbage collecting variant objects segfaults) 7 $keep = new variant(null);
|
H A D | variant_variation.phpt | 2 Testing variant arrays 14 $v = new variant($array);
|
H A D | bug63208.phpt | 8 $variant = new VARIANT($string, VT_ARRAY | VT_UI1, CP_UTF8); // Array of bytes 9 $converted = (string) $variant;
|
H A D | bug78694.phpt | 2 Bug #78694 (Appending to a variant array causes segfault) 7 foreach ([new com('WScript.Shell'), new variant([])] as $var) {
|
H A D | gh8750.phpt | 2 Bug GH-8750 (Can not create VT_ERROR variant type) 31 $rs = $db->OpenSchema(-1, new variant(DISP_E_PARAMNOTFOUND, VT_ERROR), "{947bb102-5d43-11d1-bdbf-00…
|
H A D | bug79248.phpt | 7 $v = new variant([], VT_ARRAY);
|
H A D | gh8778.phpt | 14 new variant($int) + 1
|
/PHP-8.3/ext/intl/calendar/ |
H A D | gregoriancalendar_methods.cpp | 91 int variant; in _php_intlgregcal_constructor_body() local 101 for (variant = ZEND_NUM_ARGS(); in _php_intlgregcal_constructor_body() 102 variant > 0 && Z_TYPE(args[variant - 1]) == IS_NULL; in _php_intlgregcal_constructor_body() 103 variant--) {} in _php_intlgregcal_constructor_body() 104 if (variant == 4) { in _php_intlgregcal_constructor_body() 110 if (variant <= 2) { in _php_intlgregcal_constructor_body() 136 if (variant <= 2) { in _php_intlgregcal_constructor_body() 172 for (int i = 0; i < variant; i++) { in _php_intlgregcal_constructor_body() 176 if (variant == 3) { in _php_intlgregcal_constructor_body() 179 } else if (variant == 5) { in _php_intlgregcal_constructor_body() [all …]
|
/PHP-8.3/ext/intl/tests/ |
H A D | idn_uts46_errors.phpt | 14 echo "bad variant:", "\n"; 39 bad variant: 41 Warning: idn_to_ascii(): idn_to_ascii: invalid variant, must be INTL_IDNA_VARIANT_UTS46 in %s on li…
|
H A D | gregoriancalendar___construct_error.phpt | 45 No variant with 4 arguments (excluding trailing NULLs) 46 No variant with 4 arguments (excluding trailing NULLs)
|
H A D | locale_get_all_variants.phpt | 33 foreach($variants_arr as $variant){ 34 $res_str .= "'$variant',";
|
/PHP-8.3/ext/intl/idn/ |
H A D | idn.c | 121 variant = INTL_IDN_VARIANT_UTS46; in php_intl_idn_handoff() local 127 &domain, &option, &variant, &idna_info) == FAILURE) { in php_intl_idn_handoff() 131 if (variant != INTL_IDN_VARIANT_UTS46) { in php_intl_idn_handoff()
|
/PHP-8.3/Zend/tests/ |
H A D | bug78335_2.phpt | 2 Bug #78335: Static properties containing cycles report as leak (internal class variant)
|
H A D | ctor_promotion_interface.phpt | 2 Constructor promotion cannot be used inside an abstract constructor (interface variant)
|
/PHP-8.3/Zend/tests/type_declarations/ |
H A D | typed_properties_054.phpt | 2 Typed properties disallow callable (nullable variant)
|
/PHP-8.3/ext/random/tests/03_randomizer/ |
H A D | compatibility_mt_rand.phpt | 51 Deprecated: The MT_RAND_PHP variant of Mt19937 is deprecated in %s on line %d 55 Deprecated: The MT_RAND_PHP variant of Mt19937 is deprecated in %s on line %d
|
/PHP-8.3/Zend/tests/generators/ |
H A D | gh11028_3.phpt | 2 GH-11028 (Heap Buffer Overflow in zval_undefined_cv with generators) - throw in finally variant
|
/PHP-8.3/ext/random/tests/01_functions/ |
H A D | bug75514.phpt | 11 Deprecated: The MT_RAND_PHP variant of Mt19937 is deprecated in %s on line %d
|