Home
last modified time | relevance | path

Searched refs:pi (Results 1 – 25 of 49) sorted by relevance

12

/PHP-8.3/ext/dom/tests/manually_call_constructor/
H A Dprocessinginstruction.phpt8 $pi = new DOMProcessingInstruction('name1', 'value1');
9 var_dump($pi->target, $pi->data);
10 $pi->__construct('name2', 'value2');
11 var_dump($pi->target, $pi->data);
18 $doc->documentElement->appendChild($pi);
21 $pi->__construct('name3', 'value3');
22 $doc->documentElement->appendChild($pi);
/PHP-8.3/ext/dom/tests/
H A DDOMProcessingInstruction.phpt22 $pi = new DOMProcessingInstruction("test");
26 var_dump($pi->target);
27 var_dump($pi->data);
28 $pi->data = "ok";
29 var_dump($pi->data);
31 $pi->data = new FailingStringable;
35 var_dump($pi->data);
36 $pi->data = 12345;
37 var_dump($pi->data);
38 $pi->data = "my data <>";
[all …]
H A DtoString_exceptions.phpt18 '<root xmlns:ns="foo"><node attr="foo" /><node>Text</node><ns:node/><?pi foobar?></root>');
40 $pi = $root->childNodes[3];
41 try { $pi->data = $badStr; } catch (Exception $e) { echo "Exception\n"; }
58 <root xmlns:ns="foo"><node attr="foo"/><node>Text</node><ns:node/><?pi foobar?></root>
H A Ddomchardata.phpt45 $comment->insertData(10, 'pi ');
H A DDOMNode_isEqualNode.phpt25 <pi><?test 123?><?test2 123?><?test2 1234?><?test 123?></pi>
92 foreach_comparator("//pi");
/PHP-8.3/ext/intl/tests/
H A Dbreakiter_getPartsIterator_basic.phpt15 $pi = $bi->getPartsIterator();
16 var_dump(get_class($pi));
17 print_r(iterator_to_array($pi));
20 $pi = $bi->getPartsIterator();
21 var_dump(get_class($pi->getBreakIterator()));
22 print_r(iterator_to_array($pi));
23 var_dump($pi->getRuleStatus());
H A Dbreakiter_getPartsIterator_basic2.phpt15 $pi = $bi->getPartsIterator();
16 var_dump(get_class($pi));
17 print_r(iterator_to_array($pi));
20 $pi = $bi->getPartsIterator();
21 var_dump(get_class($pi->getBreakIterator()));
22 print_r(iterator_to_array($pi));
23 var_dump($pi->getRuleStatus());
/PHP-8.3/ext/standard/tests/math/
H A Dpi_basic.phpt2 Test pi() - basic function test pi()
7 echo pi(), "\n";
9 // N.B pi() ignores all specified arguments no error
/PHP-8.3/ext/dom/tests/delayed_freeing/
H A Dprocessing_instruction.phpt8 $pi = $doc->appendChild($doc->createElementNS('some:ns', 'container'))
11 $pi->parentNode->remove();
13 var_dump($pi->parentNode);
14 var_dump($pi->nodeValue);
/PHP-8.3/Zend/Optimizer/
H A Dzend_ssa.c109 phi->pi = from; in add_pi()
247 zend_ssa_phi *pi; in place_essa_pis() local
839 if (p->pi == n) { in zend_ssa_rename()
856 } else if (p->pi < 0) { in zend_ssa_rename()
871 if (p->pi == n) { in zend_ssa_rename()
1009 phi->pi = -1; in zend_build_ssa()
1017 if ((*pp)->pi < 0) { in zend_build_ssa()
1113 if (phi->pi >= 0) { in zend_ssa_compute_use_def_chains()
1285 if (p->pi >= 0) { in zend_ssa_next_use_phi_ptr()
1452 if (phi->pi >= 0) { in zend_ssa_remove_predecessor()
[all …]
H A Dzend_ssa.h65 int pi; /* if >= 0 this is actually a e-SSA Pi */ member
207 if (p->pi >= 0) { in zend_ssa_next_use_phi()
265 ((phi)->pi >= 0 ? 1 : (ssa->cfg.blocks[(phi)->block].predecessors_count))
/PHP-8.3/ext/xmlwriter/tests/
H A DOO_009.phpt19 $xw->startElement('pi');
39 <pi><?php echo "hello world"; ?>%w</pi>
H A D009.phpt18 xmlwriter_start_element($xw, 'pi');
38 <pi><?php echo "hello world"; ?>%w</pi>
/PHP-8.3/ext/simplexml/tests/
H A Dgh12167.phpt11 <?foo pi contents ?>
23 string(12) "pi contents "
H A Dbug52751.phpt27 foreach ($sxe->xpath('//processing-instruction()') as $pi) {
28 var_dump($pi->getName());
/PHP-8.3/ext/standard/tests/general_functions/
H A Dproc_open_pipes3.phpt14 $spec[$i] = array('pi');
35 Warning: proc_open(): pi is not a valid descriptor spec/mode in %s on line %d
/PHP-8.3/ext/opcache/tests/
H A Dbug77743.phpt2 Bug #77743: Incorrect pi node insertion for jmpznz with identical successors
/PHP-8.3/
H A D.gdbinit484 set $pi = (zend_property_info *)$arg0
486 set $ptr_to_val = (zval*)((char*)$pi->ce->default_properties_table + $pi->offset - $initial_offset)
487 printf "[%p] {\n", $pi
488 printf " offset = %p\n", $pi->offset
489 printf " ce = [%p] %s\n", $pi->ce, (char*)$pi->ce->name->val
491 if $pi->flags & 0x100
494 if $pi->flags & 0x200
497 if $pi->flags & 0x400
500 if $pi->flags & 0x800
503 if $pi->flags & 0x20000
[all …]
/PHP-8.3/Zend/tests/
H A Dreplace_pred_pi_node.phpt2 Handling of pi nodes when replacing a predecessor
H A Dremove_predecessor_of_pi_node.phpt2 Regression test for incorrect update of pi node users when removing a predecessor block
/PHP-8.3/ext/standard/
H A Dproc_open.c699 static void init_process_info(PROCESS_INFORMATION *pi) in init_process_info() argument
701 memset(&pi, 0, sizeof(pi)); in init_process_info()
1159 PROCESS_INFORMATION pi; in PHP_FUNCTION() local
1276 init_process_info(&pi); in PHP_FUNCTION()
1314 &php_proc_open_security, TRUE, dwCreateFlags, envpw, cwdw, &si, &pi); in PHP_FUNCTION()
1327 childHandle = pi.hProcess; in PHP_FUNCTION()
1328 child = pi.dwProcessId; in PHP_FUNCTION()
1329 CloseHandle(pi.hThread); in PHP_FUNCTION()
/PHP-8.3/ext/opcache/tests/opt/
H A Dnullsafe_002.phpt2 Nullsafe e-ssa pi node placement
/PHP-8.3/sapi/cgi/
H A Dcgi_main.c2166 PROCESS_INFORMATION pi; local
2175 ZeroMemory(&pi, sizeof(pi));
2182 if (CreateProcessW(NULL, cmd_line, NULL, NULL, TRUE, CREATE_NO_WINDOW, NULL, NULL, &si, &pi)) {
2183 kid_cgi_ps[i] = pi.hProcess;
2184 if (!AssignProcessToJobObject(job, pi.hProcess)) {
2191 CloseHandle(pi.hThread);
/PHP-8.3/ext/standard/html_tables/
H A Dents_html401.txt138 pi 03C0
H A Dents_xhtml.txt170 pi 03C0

Completed in 45 milliseconds

12