Home
last modified time | relevance | path

Searched refs:last (Results 26 – 50 of 244) sorted by relevance

12345678910

/php-src/ext/dom/lexbor/lexbor/css/selectors/
H A Dselectors.h94 if (selectors->list_last->last != NULL) { in lxb_css_selectors_append_next()
95 lxb_css_selector_append_next(selectors->list_last->last, selector); in lxb_css_selectors_append_next()
101 selectors->list_last->last = selector; in lxb_css_selectors_append_next()
/php-src/Zend/
H A Dbench.php119 $last = $n-1;
120 print "$Y[$last]\n";
152 $last = $n-1;
153 print "$Y[$last]\n";
168 $last = $n-1;
169 print "$Y[0] $Y[$last]\n";
207 $last = "foo_".($n-1);
208 print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n";
/php-src/main/
H A Dreentrancy.c263 php_strtok_r(char *s, const char *delim, char **last) in php_strtok_r() argument
269 if (s == NULL && (s = *last) == NULL) in php_strtok_r()
289 *last = NULL; in php_strtok_r()
315 *last = s; in php_strtok_r()
H A Dphp_reentrancy.h94 PHPAPI char *php_strtok_r(char *s, const char *delim, char **last);
98 char *strtok_r(char *s, const char *delim, char **last);
/php-src/ext/dom/tests/
H A Ddom001.phpt29 // The last node should be identical with the last entry in the children array
30 echo "--------- last\n";
31 $last = $rootnode->lastChild;
32 print_node($last);
34 // The parent of this last node is the root again
36 $parent = $last->parentNode;
127 --------- last
/php-src/sapi/phpdbg/
H A Dphpdbg_print.c86 phpdbg_notice("Context %s (%d ops)", PHPDBG_G(exec), PHPDBG_G(ops)->last); in PHPDBG_PRINT()
103 …"Stack in %s::%s() (%d ops)", ZSTR_VAL(ops->scope->name), ZSTR_VAL(ops->function_name), ops->last); in PHPDBG_PRINT()
105 phpdbg_notice("Stack in %s() (%d ops)", ZSTR_VAL(ops->function_name), ops->last); in PHPDBG_PRINT()
109 phpdbg_notice("Stack in %s (%d ops)", ZSTR_VAL(ops->filename), ops->last); in PHPDBG_PRINT()
111 phpdbg_notice("Stack @ %p (%d ops)", ops, ops->last); in PHPDBG_PRINT()
165 (fbc->type == ZEND_USER_FUNCTION) ? fbc->op_array.last : 0); in PHPDBG_PRINT()
216 (fbc->type == ZEND_USER_FUNCTION) ? fbc->op_array.last : 0); in PHPDBG_PRINT()
/php-src/ext/dom/lexbor/lexbor/core/
H A Dconv.c96 const lxb_char_t *e, *p, *last, *end; in lexbor_conv_data_to_double() local
105 last = data + sizeof(data); in lexbor_conv_data_to_double()
128 if (pos < last) { in lexbor_conv_data_to_double()
147 if (pos < last) { in lexbor_conv_data_to_double()
/php-src/ext/dom/lexbor/lexbor/css/
H A Drule.h60 lxb_css_rule_t *last; member
95 lxb_css_rule_t *last; member
360 lxb_css_rule_insert_next(list->last, rule); in lxb_css_rule_list_append()
363 list->last = rule; in lxb_css_rule_list_append()
409 lxb_css_rule_insert_next(list->last, rule); in lxb_css_rule_declaration_list_append()
412 list->last = rule; in lxb_css_rule_declaration_list_append()
/php-src/ext/dba/tests/
H A Ddba_dbm.phpt29 key5: The last content string
49 string(23) "The last content string"
H A Ddba_gdbm.phpt40 key5: The last content string
74 string(23) "The last content string"
86 key5: The last content string
118 string(23) "The last content string"
H A Ddba_qdbm.phpt40 key5: The last content string
74 string(23) "The last content string"
86 key5: The last content string
118 string(23) "The last content string"
H A Ddba_cdb.phpt44 string(23) "The last content string"
68 string(23) "The last content string"
H A Ddba_lmdb.phpt44 key5: The last content string
76 string(23) "The last content string"
92 key5: The last content string
122 string(23) "The last content string"
/php-src/sapi/fpm/fpm/
H A Dfpm_arrays.h69 void *last = fpm_array_item(a, a->used - 1); in fpm_array_item_remove() local
72 memcpy(to_remove, last, a->sz); in fpm_array_item_remove()
/php-src/ext/standard/tests/file/
H A Dbug40501.csv2 backslashes (ex: 1)\",and it isn't the last element$
H A Dfread_fwrite_basic.phpt43 echo "last bytes: ".fread($h, strlen($out))."\n";
61 last bytes: xtra
/php-src/ext/mysqli/tests/
H A Dmysqli_get_client_stats_skipped.phpt30 /* fetch all rows but the last one */
34 /* enforce implicit cleaning of the wire and skipping the last row */
/php-src/ext/dom/
H A Dnode.c325 xmlNodePtr last = NULL; in dom_node_last_child_read() local
327 last = nodep->last; in dom_node_last_child_read()
330 if (!last) { in dom_node_last_child_read()
785 nodep->last = fragment->last; in _php_dom_insert_fragment()
809 fragment->last = NULL; in _php_dom_insert_fragment()
910 xmlNodePtr last = child->last; in dom_node_insert_before_legacy() local
960 xmlNodePtr last = child->last; in dom_node_insert_before_legacy() local
1178 xmlNodePtr last = newchild->last; in dom_node_replace_child() local
1319 nodep->last = child; in dom_node_append_child_legacy()
1321 child = nodep->last; in dom_node_append_child_legacy()
[all …]
/php-src/tests/lang/
H A Dbug35382.phpt7 //last line comment
/php-src/Zend/tests/generators/
H A Dyield_closure.phpt2 Generator shouldn't crash if last yielded value is a closure
/php-src/ext/mysqli/tests/bind_insert/
H A Dsend_long_data.phpt28 mysqli_stmt_send_long_data($stmt, 1, " And finally this is the last sentence.");
56 …his is the first sentence. And this is the second sentence. And finally this is the last sentence."
/php-src/ext/standard/tests/misc/
H A Dbug79410.phpt2 Bug #79410 (system() swallows last chunk if it is exactly 4095 bytes without newline)
/php-src/ext/mbstring/tests/
H A Dbug75944.phpt2 Bug #75944 (wrong detection cp1251 encoding because of missing last cyrillic letter)
/php-src/ext/intl/tests/
H A Dbreakiter_previous_basic.phpt13 var_dump($bi->last());
/php-src/Zend/tests/
H A Dgh13178_5.phpt2 GH-13178: Packed array with last elements removed must reset iterator positions

Completed in 82 milliseconds

12345678910