Home
last modified time | relevance | path

Searched refs:label (Results 1 – 25 of 188) sorted by path

12345678

/PHP-7.4/Zend/tests/
H A Djump06.phpt2 jump 06: goto to undefined label
8 Fatal error: 'goto' to undefined label 'L1' in %sjump06.php on line 2
H A Dlist_keyed_evaluation_order.inc48 private $label;
51 public function __construct(string $label, Indexable $indexable) {
52 $this->label = $label;
57 echo "Indexable $this->label retrieved.", PHP_EOL;
/PHP-7.4/Zend/tests/try/
H A Dfinally_goto_005.phpt2 There must be a difference between label: try { ... } and try { label: ... }
6 label: try {
7 goto label;
H A Dtry_catch_finally_006.phpt10 goto label;
22 label:
23 var_dump("label");
34 string(5) "label"
H A Dtry_catch_finally_007.phpt11 goto label;
29 label:
30 var_dump("label");
41 string(5) "label"
H A Dtry_finally_005.phpt8 goto label;
10 label:
H A Dtry_finally_006.phpt11 goto label;
13 label:
14 echo "label\n";
25 label
H A Dtry_finally_007.phpt2 Try finally (with goto previous label)
7 label:
8 echo "label";
11 goto label;
/PHP-7.4/Zend/
H A Dzend_compile.c4432 zval *label; in zend_resolve_goto_label() local
4435 label = CT_CONSTANT_EX(op_array, opline->op2.constant); in zend_resolve_goto_label()
4437 (dest = zend_hash_find_ptr(CG(context).labels, Z_STR_P(label))) == NULL in zend_resolve_goto_label()
4445 zval_ptr_dtor_str(label); in zend_resolve_goto_label()
4446 ZVAL_NULL(label); in zend_resolve_goto_label()
4508 zend_string *label = zend_ast_get_str(ast->child[0]); in zend_compile_label() local
4519 if (!zend_hash_add_mem(CG(context).labels, label, &dest, sizeof(zend_label))) { in zend_compile_label()
4520 zend_error_noreturn(E_COMPILE_ERROR, "Label '%s' already defined", ZSTR_VAL(label)); in zend_compile_label()
4971 zend_label *label; in zend_compile_try() local
4972 ZEND_HASH_REVERSE_FOREACH_PTR(CG(context).labels, label) { in zend_compile_try()
[all …]
H A Dzend_language_scanner.h60 char *label; member
H A Dzend_language_scanner.l200 efree(heredoc_label->label); in heredoc_label_dtor()
1212 new_heredoc_label->label = estrndup(heredoc_label->label, heredoc_label->length); in copy_heredoc_label_stack()
2394 heredoc_label->label = estrndup(s, heredoc_label->length);
2685 …oc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc_label->label, heredoc_label->le…
2809 …oc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc_label->label, heredoc_label->le…
H A Dzend_vm_gen.php1275 $label = 0;
1285 $specs[$num] = "$label";
1413 …ra_spec = array()) use ($f, $kind, $dsc, $prefix, $prolog, $num, $switch_labels, &$label, &$list) {
1423 $list[$label] = null;
1424 $label++;
1451 $list[$label] = $spec_name;
1452 $label++;
1456 $list[$label] = null;
1457 $label++;
1560 $specs[$num + 1] = "$label";
/PHP-7.4/docs/
H A Dstreams.md255 efficiently behave as fgets. The ops struct also contains a label for the
257 implementation has a label of `STDIO` for example.
/PHP-7.4/ext/
H A Dext_skel.php125 function task($label, $callback) { argument
126 printf('%s... ', $label);
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic3697 >4 belong x label "%.8x
3887 # disk label
10550 #FAT label=ACRONIS\ SZ
12217 >560 string x label: %.64s,
12231 >560 string x label: %.64s,
13736 >40 byte 4 directory label
17915 >1052 string \0 no label,
17928 >1052 string \0 no label,
18108 # of the disk... (from _find_labeller in lib/label/label.c of LVM2)
25802 >4 string >\0 label:%.10s
[all …]
H A Dmagic私はガラスを食べられます3697 >4 belong x label "%.8x
3887 # disk label
10550 #FAT label=ACRONIS\ SZ
12217 >560 string x label: %.64s,
12231 >560 string x label: %.64s,
13736 >40 byte 4 directory label
17915 >1052 string \0 no label,
17928 >1052 string \0 no label,
18108 # of the disk... (from _find_labeller in lib/label/label.c of LVM2)
25802 >4 string >\0 label:%.10s
[all …]
/PHP-7.4/ext/gd/libgd/
H A Dgd_gif_in.c95 static int DoExtension (gdIOCtx *fd, int label, int *Transparent, int *ZeroDataBlockP);
304 DoExtension(gdIOCtx *fd, int label, int *Transparent, int *ZeroDataBlockP) in DoExtension() argument
308 switch (label) { in DoExtension()
/PHP-7.4/ext/iconv/
H A Diconv.c2918 php_iconv_stream_filter_ops.label, in php_iconv_stream_filter_register_factory()
2930 php_iconv_stream_filter_ops.label)) { in php_iconv_stream_filter_unregister_factory()
/PHP-7.4/ext/mysqli/tests/
H A Dbug44897.phpt27 …OCEDURE p(IN new_id INT, IN new_label CHAR(1)) BEGIN INSERT INTO test(id, label) VALUES (new_id, n…
49 $stmt2 = $link->prepare('SELECT label FROM test WHERE id = ?');
H A Dbug45289.phpt20 if (!($stmt = $link->prepare('SELECT id, label FROM test WHERE id=? LIMIT 1')))
H A Dbug48909.phpt17 … !$link->query(sprintf("CREATE TABLE test(id INT, label varchar(255)) ENGINE = %s", $engine)))
20 if (!$stmt = $link->prepare("INSERT INTO test(id, label) VALUES (?, ?)"))
H A Dbug49442.phpt36 …if (!mysqli_query($link, 'CREATE TABLE test(id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $en…
97 if (($row['id'] != $rows[$i]['id']) || ($row['label'] != $rows[$i]['label'])) {
115 ["label"]=>
121 ["label"]=>
127 ["label"]=>
H A Dlocal_infile_tools.inc23 …if (!mysqli_query($link, $sql = sprintf('CREATE TABLE %s(id INT, label CHAR(1), PRIMARY KEY(id)) E…
106 if (!$res = mysqli_query($link, "SELECT id, label FROM test ORDER BY id")) {
125 if ($values['label'] != $tmp['label']) {
128 $values['label'], $tmp['label']);
H A Dmysqli_affected_rows.phpt39 if (!mysqli_query($link, "INSERT INTO test(id, label) VALUES (1, 'a')"))
46 mysqli_query($link, "INSERT INTO test(id, label) VALUES (1, 'a')");
50 …if (!mysqli_query($link, "INSERT INTO test(id, label) VALUES (1, 'a') ON DUPLICATE KEY UPDATE id =…
56 if (!mysqli_query($link, "INSERT INTO test(id, label) VALUES (2, 'b'), (3, 'c')"))
62 if (!mysqli_query($link, "INSERT IGNORE INTO test(id, label) VALUES (1, 'a')")) {
69 if (!mysqli_query($link, "INSERT INTO test(id, label) SELECT id + 10, label FROM test"))
75 if (!mysqli_query($link, "REPLACE INTO test(id, label) values (4, 'd')"))
81 if (!mysqli_query($link, "REPLACE INTO test(id, label) values (5, 'e')"))
87 if (!mysqli_query($link, "UPDATE test SET label = 'a' WHERE id = 2"))
105 if (!mysqli_query($link, "UPDATE test SET label = 'a' WHERE id = 2")) {
[all …]
H A Dmysqli_affected_rows_oo.phpt31 if (!$mysqli->query("INSERT INTO test(id, label) VALUES (1, 'a')"))
38 $mysqli->query("INSERT INTO test(id, label) VALUES (1, 'a')");
42 … if (!$mysqli->query("INSERT INTO test(id, label) VALUES (1, 'a') ON DUPLICATE KEY UPDATE id = 4"))
48 if (!$mysqli->query("INSERT INTO test(id, label) VALUES (2, 'b'), (3, 'c')"))
54 if (!$mysqli->query("INSERT IGNORE INTO test(id, label) VALUES (1, 'a')")) {
61 if (!$mysqli->query("INSERT INTO test(id, label) SELECT id + 10, label FROM test"))
67 if (!$mysqli->query("REPLACE INTO test(id, label) values (4, 'd')"))
73 if (!$mysqli->query("REPLACE INTO test(id, label) values (5, 'e')"))
79 if (!$mysqli->query("UPDATE test SET label = 'a' WHERE id = 2"))
85 if (!$mysqli->query("UPDATE test SET label = 'a' WHERE id = 2")) {
[all …]

Completed in 217 milliseconds

12345678