Home
last modified time | relevance | path

Searched refs:std (Results 51 – 75 of 126) sorted by relevance

123456

/PHP-8.2/ext/date/
H A Dphp_date.c1820 return &intern->std; in date_object_new_date()
1828 zend_objects_clone_members(&new_obj->std, &old_obj->std); in date_object_clone_date()
1843 return &new_obj->std; in date_object_clone_date()
1961 return &intern->std; in date_object_new_timezone()
1969 zend_objects_clone_members(&new_obj->std, &old_obj->std); in date_object_clone_timezone()
1990 return &new_obj->std; in date_object_clone_timezone()
2126 return &intern->std; in date_object_new_interval()
2134 zend_objects_clone_members(&new_obj->std, &old_obj->std); in date_object_clone_interval()
2145 return &new_obj->std; in date_object_clone_interval()
2219 return &intern->std; in date_object_new_period()
[all …]
/PHP-8.2/Zend/
H A Dzend_closures.c32 zend_object std; member
148 ZVAL_OBJ(&fci.function_name, &closure->std); in ZEND_METHOD()
161 GC_DELREF(&closure->std); in ZEND_METHOD()
167 memset(&fake_closure->std, 0, sizeof(fake_closure->std)); in ZEND_METHOD()
168 fake_closure->std.gc.refcount = 1; in ZEND_METHOD()
169 fake_closure->std.gc.u.type_info = GC_NULL; in ZEND_METHOD()
501 zend_object_std_dtor(&closure->std); in zend_closure_free_storage()
527 zend_object_std_init(&closure->std, class_type); in zend_closure_new()
528 closure->std.handlers = &closure_handlers; in zend_closure_new()
704 Z_OBJ(EX(This)) = &closure->std; in ZEND_NAMED_FUNCTION()
[all …]
H A Dzend_iterators.h60 zend_object std; member
H A Dzend_interfaces.c486 zend_object std; member
493 zend_object_std_init(&intern->std, ce); in zend_internal_iterator_create()
494 intern->std.handlers = &zend_internal_iterator_handlers; in zend_internal_iterator_create()
497 return &intern->std; in zend_internal_iterator_create()
512 ZVAL_OBJ(return_value, &intern->std); in zend_create_internal_iterator_zval()
521 zend_object_std_dtor(&intern->std); in zend_internal_iterator_free()
H A Dzend_fibers.h104 zend_object std; member
/PHP-8.2/build/
H A Dphp_cxx_compile_stdcxx.m438 dnl HP's aCC needs +std=c++11 according to:
40 dnl Cray's crayCC needs "-h std=c++11"
42 for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do
394 // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function
613 static_assert(std::is_same<std::initializer_list<int>, decltype(foo)>::value);
614 static_assert(std::is_same<int, decltype(bar)>::value);
849 std::pair<int, int> pr = { 1, 2 };
856 auto f2() -> std::pair<int, int>&
897 static_assert (std::is_same_v<Good, decltype(f(g1, g2))>);
/PHP-8.2/sapi/cli/tests/
H A Dgh8827-001.phpt2 std handles can be deliberately closed 001
H A Dstd_streams.phpt2 Testing ftell() on std streams
H A Dgh8827-002.phpt2 std handles can be deliberately closed 002
H A Dgh8827-003.phpt2 std handles can be deliberately closed 003
/PHP-8.2/ext/pdo/
H A Dpdo_dbh.c570 ZVAL_OBJ_COPY(&stmt->database_object_handle, &dbh_obj->std); in PHP_METHOD()
1269 func.scope = dbh_obj->std.ce; in pdo_hash_methods()
1352 static void pdo_dbh_free_storage(zend_object *std);
1418 static void pdo_dbh_free_storage(zend_object *std) in pdo_dbh_free_storage() argument
1420 pdo_dbh_t *dbh = php_pdo_dbh_fetch_inner(std); in pdo_dbh_free_storage()
1429 zend_object_std_dtor(std); in pdo_dbh_free_storage()
1438 zend_object_std_init(&dbh->std, ce); in pdo_dbh_new()
1439 object_properties_init(&dbh->std, ce); in pdo_dbh_new()
1440 rebuild_object_properties(&dbh->std); in pdo_dbh_new()
1444 dbh->std.handlers = &pdo_dbh_object_handlers; in pdo_dbh_new()
[all …]
H A Dpdo_stmt.c222 GC_ADDREF(&stmt->std); in get_lazy_object()
223 GC_DELREF(&row->std); in get_lazy_object()
2123 zend_object_std_dtor(&stmt->std); in php_pdo_free_statement()
2137 zend_object_std_init(&stmt->std, ce); in pdo_dbstmt_new()
2138 object_properties_init(&stmt->std, ce); in pdo_dbstmt_new()
2142 return &stmt->std; in pdo_dbstmt_new()
2433 if (!stmt->std.properties) { in row_get_properties_for()
2468 pdo_row_t *row = (pdo_row_t *)std; in pdo_row_free_storage()
2471 OBJ_RELEASE(&row->stmt->std); in pdo_row_free_storage()
2478 zend_object_std_init(&row->std, ce); in pdo_row_new()
[all …]
/PHP-8.2/ext/spl/
H A Dspl_observer.c60 zend_object std; member
70 return (spl_SplObjectStorage*)((char*)(obj) - XtOffsetOf(spl_SplObjectStorage, std)); in spl_object_storage_from_obj()
80 zend_object_std_dtor(&intern->std); in spl_SplObjectStorage_free_storage()
91 &intern->std, intern->std.ce, &intern->fptr_get_hash, "getHash", &rv, &param); in spl_object_storage_get_hash()
267 zend_object_std_init(&intern->std, class_type); in spl_object_storage_new_ex()
268 object_properties_init(&intern->std, class_type); in spl_object_storage_new_ex()
272 intern->std.handlers = &spl_handler_SplObjectStorage; in spl_object_storage_new_ex()
310 return &intern->std; in spl_object_storage_new_ex()
925 object_properties_load(&intern->std, Z_ARRVAL_P(pmembers)); in PHP_METHOD()
963 zend_std_get_properties(&intern->std), /* always_duplicate */ 1)); in PHP_METHOD()
[all …]
/PHP-8.2/ext/zlib/
H A Dphp_zlib.h50 zend_object std; member
/PHP-8.2/ext/spl/tests/
H A Ddllist_002.phpt12 // std iterator
H A Dheap_002.phpt2 SPL: SplMinHeap: std operations
H A Dheap_001.phpt2 SPL: SplMaxHeap: std operations
H A Ddllist_001.phpt2 SPL: DoublyLinkedList: std operations
H A Dfixedarray_001.phpt2 SPL: FixedArray: std operations
/PHP-8.2/ext/date/lib/
H A Dparse_posix.c307 if (ps->std) { in timelib_posix_str_dtor()
308 timelib_free(ps->std); in timelib_posix_str_dtor()
329 tmp->std = read_description(&ptr); in timelib_parse_posix_str()
330 if (!tmp->std) { in timelib_parse_posix_str()
/PHP-8.2/ext/xmlwriter/
H A Dphp_xmlwriter.c72 zend_object_std_dtor(&intern->std); in xmlwriter_object_free_storage()
83 zend_object_std_init(&intern->std, class_type); in xmlwriter_object_new()
84 object_properties_init(&intern->std, class_type); in xmlwriter_object_new()
85 intern->std.handlers = &xmlwriter_object_handlers; in xmlwriter_object_new()
87 return &intern->std; in xmlwriter_object_new()
932 RETURN_OBJ(&ze_obj->std); in PHP_FUNCTION()
981 RETURN_OBJ(&ze_obj->std); in PHP_FUNCTION()
1040 xmlwriter_object_handlers.offset = XtOffsetOf(ze_xmlwriter_object, std); in PHP_MINIT_FUNCTION()
/PHP-8.2/ext/intl/breakiterator/
H A Drulebasedbreakiterator_methods.cpp167 std::unique_ptr<int32_t[]> rules = std::unique_ptr<int32_t[]>(new int32_t[num_rules]); in PHP_METHOD()
/PHP-8.2/ext/com_dotnet/
H A Dcom_saproxy.c36 zend_object std; member
387 return &cloneproxy->std; in saproxy_clone()
442 zend_object_std_init(&proxy->std, php_com_saproxy_class_entry); in php_com_saproxy_create()
443 proxy->std.handlers = &php_com_saproxy_handlers; in php_com_saproxy_create()
444 ZVAL_OBJ(proxy_out, &proxy->std); in php_com_saproxy_create()
/PHP-8.2/ext/curl/
H A Dinterface.c438 return &intern->std; in curl_create_object()
461 return &clone_ch->std; in curl_clone_obj()
471 return &clone_ch->std; in curl_clone_obj()
475 return &clone_ch->std; in curl_clone_obj()
596 GC_ADDREF(&ch->std); in curl_write()
640 GC_ADDREF(&ch->std); in curl_fnmatch()
686 GC_ADDREF(&ch->std); in curl_progress()
735 GC_ADDREF(&ch->std); in curl_xferinfo()
786 GC_ADDREF(&ch->std); in curl_read()
856 GC_ADDREF(&ch->std); in curl_write_header()
[all …]
/PHP-8.2/ext/reflection/tests/
H A Dparameters_002.phpt6 function test($nix, Array $ar, &$ref, stdClass $std,
13 function method($nix, Array $ar, &$ref, stdClass $std,
117 getName: string(3) "std"
211 getName: string(3) "std"

Completed in 105 milliseconds

123456