Home
last modified time | relevance | path

Searched refs:parent (Results 301 – 325 of 357) sorted by relevance

1...<<1112131415

/PHP-5.5/ext/soap/tests/bugs/
H A Dbug35142.phpt22 parent::__construct($wsdl, $options);
H A Dbug36226.phpt22 parent::__construct($wsdl, $options);
H A Dbug30045.phpt20 parent::__construct($wsdl, $options);
/PHP-5.5/ext/spl/tests/
H A Dbug54384.phpt2 Bug #54384: Several SPL classes crash when the parent constructor is not called
H A Diterator_044.phpt18 parent::__construct($it, $flags);
H A Darray_017.phpt15 parent::__construct($ar, $flags);
43 parent::__construct($ar, $flags);
/PHP-5.5/ext/standard/tests/class_object/
H A Dget_parent_class_variation_002.phpt6 * Description: Retrieves the parent class name for object or class or current scope.
/PHP-5.5/ext/dom/
H A Dattr.c225 nodeparent = nodep->parent; in dom_attr_owner_element_read()
H A Delement.c520 attrp->parent = nsparent; in PHP_FUNCTION()
573 if (attrp->parent != NULL) { in PHP_FUNCTION()
619 if (attrp->type != XML_ATTRIBUTE_NODE || attrp->parent != nodep) { in PHP_FUNCTION()
1004 if (attrp->parent != NULL) { in PHP_FUNCTION()
1235 if (attrp->parent != nodep) { in PHP_FUNCTION()
H A Dphp_dom.c1154 while(base_class->type != ZEND_INTERNAL_CLASS && base_class->parent != NULL) { in dom_objects_set_class()
1155 base_class = base_class->parent; in dom_objects_set_class()
1445 int dom_hierarchy(xmlNodePtr parent, xmlNodePtr child) in dom_hierarchy() argument
1449 if (parent == NULL || child == NULL || child->doc != parent->doc) { in dom_hierarchy()
1453 nodep = parent; in dom_hierarchy()
1459 nodep = nodep->parent; in dom_hierarchy()
H A Dxpath.c164 node->parent = nsparent; in dom_xpath_ext_function_php()
499 node->parent = nsparent; in php_xpath_eval()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregexec.c102 if (parent->num_childs >= parent->allocated) { in history_tree_add_child()
105 if (IS_NULL(parent->childs)) { in history_tree_add_child()
107 parent->childs = in history_tree_add_child()
111 n = parent->allocated * 2; in history_tree_add_child()
112 parent->childs = in history_tree_add_child()
116 CHECK_NULL_RETURN_MEMERR(parent->childs); in history_tree_add_child()
117 for (i = parent->allocated; i < n; i++) { in history_tree_add_child()
118 parent->childs[i] = (OnigCaptureTreeNode* )0; in history_tree_add_child()
120 parent->allocated = n; in history_tree_add_child()
123 parent->childs[parent->num_childs] = child; in history_tree_add_child()
[all …]
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c5938 parent->top = backtrack; \
5951 parent->top = backtrack; \
7033 parent->top = backtrack->prev; in compile_bracket_matchingpath()
8327 …mpile_char1_matchingpath(common, *cc, cc + 1, parent->top != NULL ? &parent->top->nextbacktracks :… in compile_matchingpath()
8342 …compile_charn_matchingpath(common, cc, ccend, parent->top != NULL ? &parent->top->nextbacktracks :… in compile_matchingpath()
8344 …mpile_char1_matchingpath(common, *cc, cc + 1, parent->top != NULL ? &parent->top->nextbacktracks :… in compile_matchingpath()
8420 …mpile_char1_matchingpath(common, *cc, cc + 1, parent->top != NULL ? &parent->top->nextbacktracks :… in compile_matchingpath()
8428 …mpile_char1_matchingpath(common, *cc, cc + 1, parent->top != NULL ? &parent->top->nextbacktracks :… in compile_matchingpath()
8438 …compile_ref_matchingpath(common, cc, parent->top != NULL ? &parent->top->nextbacktracks : &parent-… in compile_matchingpath()
8449 …compile_dnref_search(common, cc, parent->top != NULL ? &parent->top->nextbacktracks : &parent->top… in compile_matchingpath()
[all …]
/PHP-5.5/ext/opcache/Optimizer/
H A Dblock_pass.c193 int parent = op_array->brk_cont_array[i].parent; in find_code_blocks() local
195 while (parent >= 0 && in find_code_blocks()
196 op_array->brk_cont_array[parent].start < 0 && in find_code_blocks()
197 op_array->opcodes[op_array->brk_cont_array[parent].brk].opcode != ZEND_FREE && in find_code_blocks()
198 op_array->opcodes[op_array->brk_cont_array[parent].brk].opcode != ZEND_SWITCH_FREE) { in find_code_blocks()
199 parent = op_array->brk_cont_array[parent].parent; in find_code_blocks()
201 op_array->brk_cont_array[i].parent = parent; in find_code_blocks()
/PHP-5.5/ext/phar/tests/tar/files/
H A Dtarmaker.php.inc146 * Create an internal directory, creating parent directories as needed
H A Dcorrupt_tarmaker.php.inc154 * Create an internal directory, creating parent directories as needed
H A Dmake.dangerous.tar.php.inc147 * Create an internal directory, creating parent directories as needed
/PHP-5.5/Zend/
H A Dzend_object_handlers.h101 …e_t)(const zval *object, const char **class_name, zend_uint *class_name_len, int parent TSRMLS_DC);
H A Dzend_constants.c361 } else if (!scope->parent) { in zend_get_constant_ex()
364 ce = scope->parent; in zend_get_constant_ex()
H A Dzend_builtin_functions.c808 if (ce && ce->parent) { in ZEND_FUNCTION()
809 RETURN_STRINGL(ce->parent->name, ce->parent->name_length, 1); in ZEND_FUNCTION()
830 if (ce && ce->parent) { in ZEND_FUNCTION()
831 RETURN_STRINGL(ce->parent->name, ce->parent->name_length, 1); in ZEND_FUNCTION()
/PHP-5.5/Zend/tests/
H A Dzend2.php.txt244 parent::__construct();
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c124 static int parent = 1; variable
325 !parent && in sapi_cgibin_flush()
849 !parent &&
1867 parent = 0;
2005 if (parent) {
/PHP-5.5/ext/pdo_sqlite/tests/
H A Dpdo_fetch_func_001.phpt44 var_dump($st->fetchAll(PDO::FETCH_FUNC, array($this, 'parent::foo')));
/PHP-5.5/
H A D.gdbinit433 if $ce->parent != 0
434 printf " extends %s", $ce->parent->name
447 set $ce = $ce->parent
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c282 node->parent = nsparent; in xsl_ext_function_php()
677 while (curce->parent != NULL) { in PHP_FUNCTION()
678 curce = curce->parent; in PHP_FUNCTION()

Completed in 92 milliseconds

1...<<1112131415