Home
last modified time | relevance | path

Searched refs:scope (Results 126 – 150 of 235) sorted by path

12345678910

/php-src/ext/bcmath/libbcmath/
H A DLICENSE146 covered by this License; they are outside its scope. The act of
212 the scope of this License.
247 therefore falls outside the scope of this License.
/php-src/ext/com_dotnet/
H A Dcom_handlers.c310 f.scope = obj->ce; in com_method_get()
/php-src/ext/dom/lexbor/lexbor/core/
H A Davl.c251 *scope = node; in lexbor_avl_node_balance()
263 if (*scope == NULL) { in lexbor_avl_insert()
265 return *scope; in lexbor_avl_insert()
268 node = *scope; in lexbor_avl_insert()
370 *scope = node; in lexbor_avl_rotate_for_delete()
402 lexbor_avl_node_t *node = *scope; in lexbor_avl_remove()
463 if (scope == NULL || *scope == NULL) { in lexbor_avl_foreach()
467 node = *scope; in lexbor_avl_foreach()
492 root = *scope; in lexbor_avl_foreach()
560 if (scope == NULL) { in lexbor_avl_foreach_recursion()
[all …]
H A Davl.h66 lexbor_avl_insert(lexbor_avl_t *avl, lexbor_avl_node_t **scope,
70 lexbor_avl_search(lexbor_avl_t *avl, lexbor_avl_node_t *scope, size_t type);
73 lexbor_avl_remove(lexbor_avl_t *avl, lexbor_avl_node_t **scope, size_t type);
80 lexbor_avl_foreach(lexbor_avl_t *avl, lexbor_avl_node_t **scope,
84 lexbor_avl_foreach_recursion(lexbor_avl_t *avl, lexbor_avl_node_t *scope,
H A Dbst.c101 if (*scope == NULL) { in lexbor_bst_insert()
106 entry = *scope; in lexbor_bst_insert()
150 if (*scope == NULL) { in lexbor_bst_insert_not_exists()
153 return *scope; in lexbor_bst_insert_not_exists()
156 entry = *scope; in lexbor_bst_insert_not_exists()
192 return scope; in lexbor_bst_search()
195 scope = scope->right; in lexbor_bst_search()
198 scope = scope->left; in lexbor_bst_search()
216 scope = scope->right; in lexbor_bst_search_close()
219 max = scope; in lexbor_bst_search_close()
[all …]
H A Dbst.h65 lexbor_bst_insert(lexbor_bst_t *bst, lexbor_bst_entry_t **scope,
69 lexbor_bst_insert_not_exists(lexbor_bst_t *bst, lexbor_bst_entry_t **scope,
74 lexbor_bst_search(lexbor_bst_t *bst, lexbor_bst_entry_t *scope, size_t size);
77 lexbor_bst_search_close(lexbor_bst_t *bst, lexbor_bst_entry_t *scope,
H A Dbst_map.c82 lexbor_bst_map_search(lexbor_bst_map_t *bst_map, lexbor_bst_entry_t *scope, in lexbor_bst_map_search() argument
90 bst_entry = lexbor_bst_search(bst_map->bst, scope, hash_id); in lexbor_bst_map_search()
113 lexbor_bst_entry_t **scope, in lexbor_bst_map_insert() argument
118 entry = lexbor_bst_map_insert_not_exists(bst_map, scope, key, key_len); in lexbor_bst_map_insert()
130 lexbor_bst_entry_t **scope, in lexbor_bst_map_insert_not_exists() argument
138 bst_entry = lexbor_bst_insert_not_exists(bst_map->bst, scope, hash_id); in lexbor_bst_map_insert_not_exists()
195 lexbor_bst_map_remove(lexbor_bst_map_t *bst_map, lexbor_bst_entry_t **scope, in lexbor_bst_map_remove() argument
203 bst_entry = lexbor_bst_search(bst_map->bst, *scope, hash_id); in lexbor_bst_map_remove()
216 lexbor_bst_remove_by_pointer(bst_map->bst, bst_entry, scope); in lexbor_bst_map_remove()
H A Dbst_map.h49 lexbor_bst_map_search(lexbor_bst_map_t *bst_map, lexbor_bst_entry_t *scope,
53 lexbor_bst_map_insert(lexbor_bst_map_t *bst_map, lexbor_bst_entry_t **scope,
58 lexbor_bst_entry_t **scope,
62 lexbor_bst_map_remove(lexbor_bst_map_t *bst_map, lexbor_bst_entry_t **scope,
/php-src/ext/dom/tests/modern/xml/
H A Dxpath_query_context_in_scope_ns.phpt2 Test Dom\XPath::query() with registering a context node's in-scope namespaces
/php-src/ext/ffi/
H A Dffi.c2405 if (scope->symbols) { in zend_ffi_scope_hash_dtor()
2407 free(scope->symbols); in zend_ffi_scope_hash_dtor()
2409 if (scope->tags) { in zend_ffi_scope_hash_dtor()
2411 free(scope->tags); in zend_ffi_scope_hash_dtor()
2413 free(scope); in zend_ffi_scope_hash_dtor()
3403 if (scope && scope->symbols) { in zend_ffi_load()
3427 if (scope && scope->tags && FFI_G(tags)) { in zend_ffi_load()
3450 if (!scope) { in zend_ffi_load()
3478 if (!scope->tags) { in zend_ffi_load()
3571 if (!scope) { in ZEND_METHOD()
[all …]
H A Dffi.stub.php19 public static function scope(string $name): FFI {} function in FFI
H A Dffi_arginfo.h126 ZEND_METHOD(FFI, scope);
161 ZEND_ME(FFI, scope, arginfo_class_FFI_scope, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
/php-src/ext/ffi/tests/
H A D027.phpt82 FFI\ParserException: "[*]" is not allowed in other than function prototype scope at line 1
83 FFI\ParserException: "[*]" is not allowed in other than function prototype scope at line 1
84 FFI\ParserException: "[*]" is not allowed in other than function prototype scope at line 1
H A D300.phpt21 $ffi = FFI::scope("TEST_300");
H A D302.phpt12 $ffi = FFI::scope("TEST_300");
H A D303.phpt12 $ffi = FFI::scope("TEST_300");
/php-src/ext/hash/tests/
H A Dnew-context.phpt13 Exception: Call to private HashContext::__construct() from global scope
/php-src/ext/intl/tests/
H A Dbreakiter___construct.phpt12 Fatal error: Uncaught Error: Call to private IntlBreakIterator::__construct() from global scope in …
/php-src/ext/ldap/
H A Dldap.c1429 static void php_ldap_do_search(INTERNAL_FUNCTION_PARAMETERS, int scope) in php_ldap_do_search() argument
1592 …ldap_search_ext(ld->link, ZSTR_VAL(ldap_base_dn), scope, ZSTR_VAL(ldap_filter), ldap_attrs, ldap_a… in php_ldap_do_search()
1650 …ldap_errno = ldap_search_ext_s(ld->link, ZSTR_VAL(ldap_base_dn), scope, ZSTR_VAL(ldap_filter), lda… in php_ldap_do_search()
/php-src/ext/mbstring/libmbfl/
H A DLICENSE143 covered by this License; they are outside its scope. The act of
209 the scope of this License.
244 therefore falls outside the scope of this License.
/php-src/ext/mysqli/tests/
H A Dbug38003.phpt20 Fatal error: Uncaught Error: Call to private DB::__construct() from global scope in %s
/php-src/ext/odbc/
H A Dodbc.stub.php431 …n $odbc, int $type, ?string $catalog, string $schema, string $table, int $scope, int $nullable): O…
H A Dodbc_arginfo.h216 ZEND_ARG_TYPE_INFO(0, scope, IS_LONG, 0)
H A Dphp_odbc.c3326 SQLUSMALLINT type, scope, nullable;
3335 scope = (SQLUSMALLINT) vscope;
3361 scope,
/php-src/ext/opcache/
H A DZendAccelerator.c4167 zend_class_entry *scope = op_array->scope; local
4173 op_array->scope = scope;

Completed in 111 milliseconds

12345678910