/PHP-5.6/Zend/tests/ |
H A D | bug47596.phpt | 6 // comment comment comment comment comment comment comment comment comment 7 // comment comment comment comment comment comment comment comment comment 8 // comment comment comment comment comment comment comment comment comment 9 // comment comment comment comment comment comment comment comment comment 10 // comment comment comment comment comment comment comment comment comment 11 // comment comment comment comment comment comment comment comment comment 12 // comment comment comment comment comment comment comment comment comment 13 // comment comment comment comment comment comment comment comment comment 14 // comment comment comment comment comment comment comment comment comment 15 // comment comment comment comment comment comment comment comment comment [all …]
|
H A D | bug42767.phpt | 5 highlight.comment = #FF8000 11 highlight_string('<?php /*some comment..'); 15 <span style="color: #0000BB"><?php </span><span style="color: #FF8000">/*some comment.…
|
/PHP-5.6/ext/reflection/tests/ |
H A D | ReflectionProperty_getDocComment_basic.phpt | 19 /**Not a doc comment */ 22 * Doc comment for $f 47 ---> Doc comment for A::$a: 54 ---> Doc comment for A::$b: 58 ---> Doc comment for A::$c: 62 ---> Doc comment for A::$d: 68 ---> Doc comment for A::$e: 72 ---> Doc comment for A::$f: 74 * Doc comment for $f 78 ---> Doc comment for B::$a: [all …]
|
H A D | ReflectionClass_getDocComment_001.phpt | 28 * Interface doc comment 37 * Not a doc comment 41 /**** Not a doc comment */ 44 /**?** Not a doc comment */ 47 /** ** Doc comment for G */ 62 ---> Doc comment for class A: 74 ---> Doc comment for class B: 78 ---> Doc comment for class C: 82 ---> Doc comment for class D: 86 ---> Doc comment for class E: [all …]
|
H A D | ReflectionMethod_getDocComment_basic.phpt | 35 /*** Not a doc comment */ 62 echo "\n\n---> Doc comment for $class::" . $rm->getName() . "():\n"; 70 ---> Doc comment for A::f(): 76 ---> Doc comment for A::privf(): 82 ---> Doc comment for A::protStatf(): 86 ---> Doc comment for A::finalStatPubf(): 93 ---> Doc comment for B::f(): 97 ---> Doc comment for B::privf(): 103 ---> Doc comment for B::protStatf(): 112 ---> Doc comment for B::finalStatPubf():
|
H A D | ReflectionFunction_getDocComment.001.phpt | 13 * my doc comment 23 * not a doc comment 40 * my doc comment
|
/PHP-5.6/ext/dom/tests/ |
H A D | domchardata.phpt | 23 $charnode->appendChild($comment); 27 $comment->data = 'Updated comment'; 40 $comment = new DOMComment('instructions'); 42 $comment->data = 'some more instructions'; 45 $comment->insertData(10, 'pi '); 46 $comment->replaceData(18, 5, 'i'); 47 $comment->insertData(20, 'g'); 48 $comment->deleteData(13, 2); 49 $comment->deleteData(10, 3); 50 $comment->insertData(10, 'comment '); [all …]
|
H A D | DOMComment_replaceData_basic.phpt | 12 $comment = $dom->createComment('test-comment'); 13 $comment->replaceData(4,1,'replaced'); 14 $dom->appendChild($comment); 19 $comment = $dom->createComment('test-comment'); 20 $comment->replaceData(0,50,'replaced'); 21 $dom->appendChild($comment);
|
H A D | DOMComment_construct_basic_001.phpt | 12 $comment = new DOMComment("This is the first comment."); 13 $comment->__construct("This is the second comment."); 14 $comment = $element->appendChild($comment); 19 <root><!--This is the second comment.--></root>
|
H A D | bug66502.phpt | 11 $comment = new DOMComment("Comment 0"); 12 $comment = $element->appendChild($comment); 14 $comment->__construct("Comment 1"); 15 $comment->__construct("Comment 2"); 16 $comment->__construct("Comment 3");
|
H A D | DOMComment_appendData_basic.phpt | 12 $comment = $dom->createComment('test-comment'); 13 $comment->appendData('-more-data'); 14 $dom->appendChild($comment); 21 <!--test-comment-more-data-->
|
H A D | DOMComment_insertData_basic.phpt | 13 $comment = $dom->createComment('test-comment'); 14 $comment->insertData(4,'-inserted'); 15 $dom->appendChild($comment); 21 <!--test-inserted-comment-->
|
H A D | DOMComment_appendData_basic_Sullivan.phpt | 15 $comment = $document->createElement('comment'); 16 $root->appendChild($comment); 19 $comment->appendChild($commentnode); 37 <root><comment><!--data><&"--></comment></root>
|
H A D | DOMComment_insertData_error1.phpt | 13 $comment = $dom->createComment('test-comment'); 15 $comment->insertData(-1,'-inserted');
|
H A D | DOMComment_insertData_error2.phpt | 13 $comment = $dom->createComment('test-comment'); 15 $comment->insertData(999,'-inserted');
|
H A D | DOMComment_replaceData_error1.phpt | 13 $comment = $dom->createComment('test-comment'); 15 $comment->replaceData(-1,4,'-inserted');
|
H A D | DOMComment_replaceData_error2.phpt | 13 $comment = $dom->createComment('test-comment'); 15 $comment->replaceData(999,4,'-inserted');
|
/PHP-5.6/ext/zip/lib/ |
H A D | zip_file_set_comment.c | 44 const char *comment, zip_uint16_t len, zip_flags_t flags) in zip_file_set_comment() argument 58 if (len > 0 && comment == NULL) { in zip_file_set_comment() 64 if ((cstr=_zip_string_new((const zip_uint8_t *)comment, len, flags, &za->error)) == NULL) in zip_file_set_comment() 75 _zip_string_free(e->changes->comment); in zip_file_set_comment() 76 e->changes->comment = NULL; in zip_file_set_comment() 80 if (e->orig && e->orig->comment) in zip_file_set_comment() 81 changed = !_zip_string_equal(e->orig->comment, cstr); in zip_file_set_comment() 93 e->changes->comment = cstr; in zip_file_set_comment()
|
H A D | zip_get_archive_comment.c | 45 struct zip_string *comment; in zip_get_archive_comment() local 50 comment = za->comment_orig; in zip_get_archive_comment() 52 comment = za->comment_changes; in zip_get_archive_comment() 54 if ((str=_zip_string_get(comment, &len, flags, &za->error)) == NULL) in zip_get_archive_comment()
|
H A D | zip_set_archive_comment.c | 43 zip_set_archive_comment(struct zip *za, const char *comment, zip_uint16_t len) in zip_set_archive_comment() argument 52 if (len > 0 && comment == NULL) { in zip_set_archive_comment() 58 …if ((cstr=_zip_string_new((const zip_uint8_t *)comment, len, ZIP_FL_ENC_GUESS, &za->error)) == NUL… in zip_set_archive_comment()
|
/PHP-5.6/ext/phar/tests/zip/files/ |
H A D | corrupt_zipmaker.php.inc | 48 var $comment = ""; 65 function setComment($comment) { $this->comment = $comment; } 232 case 'comment' : 289 strlen($this->comment)) . $this->comment; 295 strlen($this->comment)) . $this->comment; 301 strlen($this->comment)) . $this->comment; 307 strlen($this->comment)) . $this->comment; 313 strlen($this->comment)) . $this->comment; 319 strlen($this->comment)) . $this->comment; 321 case 'comment' : [all …]
|
/PHP-5.6/ext/xmlwriter/tests/ |
H A D | 005.phpt | 18 xmlwriter_text($xw, 'comment'); 20 xmlwriter_write_comment($xw, "comment #2"); 32 <tag1><!--comment--><!--comment #2--></tag1>
|
H A D | OO_005.phpt | 18 $xw->text('comment'); 20 $xw->writeComment("comment #2"); 32 <tag1><!--comment--><!--comment #2--></tag1>
|
/PHP-5.6/ext/wddx/tests/ |
H A D | bug72142.phpt | 6 $wddx = wddx_serialize_value('', '</comment></header><data><struct><var name="php_class_name"><stri… 12 …comment></comment></header><data><struct><var name="php_class_name…
|
H A D | 002.phpt | 9 $pkt = wddx_packet_start('TEST comment'); 21 <wddxPacket version='1.0'><header><comment>TEST comment</comment></header><data><struct><var name='…
|