Home
last modified time | relevance | path

Searched refs:entity (Results 1 – 25 of 76) sorted by relevance

1234

/php-src/Zend/tests/
H A Dbug40833.phpt5 class entity
26 private $entity;
28 function __construct($entity)
30 $this->entity = $entity;
35 $this->entity->whatever = null;
41 // $this->entity->{$this->name} = null;
58 $entity = new entity();
59 echo($entity->whatever[0]);
62 // $entity->whatever->clear();
63 unset($entity->whatever[0]);
[all …]
/php-src/ext/mbstring/tests/
H A Dmb_decode_numericentity_large_ints.phpt36 testNonAscii("Starting entity immediately after valid decimal entity which is just within maximum l…
38 testNonAscii("Starting entity immediately after valid hex entity which is just within maximum lengt…
40 test("Starting entity immediately after too-big decimal entity", "&#7001492542A", "&#7001492542…
42 // If the numeric entity decodes to 0xFFFFFFFF, that should be passed through
44 // that the entity could not be successfully decoded, so if the entity decoded successfully to
45 // 0xFFFFFFFF (-1), it would be treated as an invalid entity
46 test("Regression test (entity which decodes to 0xFFFFFFFF)", "", "?", [0xFFFFFF86, 0xFFFFFFFF,…
57 Starting entity immediately after valid decimal entity which is just within maximum length: 0000002…
58 Starting entity immediately after valid hex entity which is just within maximum length: 00000026000…
59 Starting entity immediately after too-big decimal entity: string(17) "&#7001492542A" => string(…
[all …]
H A Dmb_decode_numericentity.phpt37 // Typical convmap, typical numeric entity-encoded string
89 // An entity can come right after a preceding ampersand
92 // An entity can come right after a preceding &#
98 // The starting & of an entity can terminate a preceding entity
102 // An entity can come right after an entity which is invalid because of being too long
106 test("Starting entity immediately after invalid decimal entity", "&#0A", "&#0A", [0x1, 0xFFFF, …
107 test("Starting entity immediately after invalid hex entity", "&#x0A", "&#x0A", [0x1, 0xFFFF, 0,…
175 Starting entity immediately after decimal entity which is too long: string(18) "&#10000000000A"…
176 Starting entity immediately after hex entity which is too long: string(17) "&#x111111111A" => s…
177 Starting entity immediately after invalid decimal entity: string(8) "&#0A" => string(4) "&#0A" …
[all …]
H A Dmb_substitute_character_variation_weak_types.phpt126 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
128 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
154 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
156 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
158 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
160 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
162 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
164 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
166 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
H A Dmb_substitute_character.phpt22 var_dump(mb_substitute_character('entity'));
43 string(6) "entity"
45 mb_substitute_character(): Argument #1 ($substitute_character) must be "none", "long", "entity" or …
H A Dmb_str_split_error_conditions.phpt41 // HTML entity error markers
42 mb_substitute_character("entity");
44 // The output here will actually include an HTML entity #x3AC;
H A Dmb_substitute_character_variation_strict_types.phpt150 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
152 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
154 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
156 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
158 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
160 …haracter(): Argument #1 ($substitute_character) must be "none", "long", "entity" or a valid codepo…
/php-src/ext/simplexml/tests/
H A D003.phpt11 <!ENTITY included-entity "This is text included from an entity">
19 &included-entity;
53 ["included-entity"]=>
55 ["included-entity"]=>
56 string(36) "This is text included from an entity"
/php-src/ext/dom/tests/
H A DDOMEntity_fields.phpt10 <!ENTITY sampleInternalEntity "This is a sample entity value.">
28 foreach ($entities as $entity) {
29 echo "Entity name: {$entity->nodeName}\n";
31 var_dump($entity->publicId);
33 var_dump($entity->systemId);
35 var_dump($entity->notationName);
37 var_dump($entity->actualEncoding);
39 var_dump($entity->encoding);
41 var_dump($entity->version);
H A Dproperty_write_errors.phpt29 $entity = new DOMEntity();
32 $entity->actualEncoding = null;
38 $entity->encoding = null;
44 $entity->version = null;
H A DDOMDocumentType_basic_001.phpt36 $entity = $entities->item(0);
37 print 'entity: '.$entity->nodeName."\n";
47 entity: logo
H A DDOMDocument_loadXML_variation4.phpt23 <!ENTITY entitest "entity is only for test purposes">
30 …uthor>John Steinbeck</author></book><book><title default="default title">entity is only for test p…
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c184 mbfl_html_entity_entry *entity; in mbfl_filt_conv_html_dec() local
251 while (entity->name) { in mbfl_filt_conv_html_dec()
253 ent = entity->code; in mbfl_filt_conv_html_dec()
256 entity++; in mbfl_filt_conv_html_dec()
402 while (entity->name) { in mb_htmlent_to_wchar()
403 … if (!strncmp((char*)p, entity->name, terminator - p) && strlen(entity->name) == terminator - p) { in mb_htmlent_to_wchar()
404 *out++ = entity->code; in mb_htmlent_to_wchar()
408 entity++; in mb_htmlent_to_wchar()
450 while (entity->name) { in mb_wchar_to_htmlent()
451 if (w == entity->code) { in mb_wchar_to_htmlent()
[all …]
/php-src/ext/standard/tests/strings/
H A Dbug73817.phpt6 foreach ($entities as $entity) {
7 if (substr($entity, -1) !== ';') {
8 var_dump($entity);
/php-src/ext/dom/tests/modern/spec/
H A DappendChild_dtd_legacy.phpt17 foreach ($doctype->entities as $entity) {
18 echo "Found entity: ", $entity->nodeName, "\n";
34 Found entity: foo
H A Dattribute_entity_expansion_legacy.phpt2 Attribute entity expansion in a legacy document
44 Warning: main(): unterminated entity reference in %s on line %d
/php-src/ext/libxml/
H A Dlibxml.c148 xmlEntityPtr entity = data; in php_libxml_unlink_entity() local
149 if (entity->_private != NULL) { in php_libxml_unlink_entity()
178 xmlDtdPtr dtd = entity->parent; in php_libxml_unlink_entity_decl()
180 if (xmlHashLookup(dtd->entities, entity->name) == entity) { in php_libxml_unlink_entity_decl()
183 if (xmlHashLookup(dtd->pentities, entity->name) == entity) { in php_libxml_unlink_entity_decl()
205 xmlFreeEntity(entity); in php_libxml_node_free()
207 …if (entity->children != NULL && entity->owner && entity == (xmlEntityPtr) entity->children->parent… in php_libxml_node_free()
210 xmlDictPtr dict = entity->doc != NULL ? entity->doc->dict : NULL; in php_libxml_node_free()
224 xmlFree(entity->content); in php_libxml_node_free()
227 xmlFree(entity->orig); in php_libxml_node_free()
[all …]
/php-src/ext/dom/tests/delayed_freeing/
H A Dentity_reference.phpt2 Delayed freeing entity reference
21 <!ENTITY test "entity is only for test purposes">
43 <!ENTITY test "entity is only for test purposes">
H A Dentity_declaration.phpt2 Delayed freeing entity declaration
11 <!ENTITY test "entity is only for test purposes">
/php-src/ext/standard/
H A Dhtml.c745 while (s->entity) { in resolve_named_entity_html()
1036 *entity = NULL; in find_entity_for_char()
1044 *entity = (const unsigned char *)c->data.ent.entity; in find_entity_for_char()
1069 *entity = (const unsigned char *) s->normal_entry.entity; in find_entity_for_char()
1092 *entity = NULL; in find_entity_for_char_basic()
1097 *entity = (const unsigned char *) table[k].data.ent.entity; in find_entity_for_char_basic()
1406 memcpy(&entity[1], r->data.ent.entity, l); in write_s3row_data()
1407 entity[l + 1] = ';'; in write_s3row_data()
1417 entity[l + 1] = ';'; in write_s3row_data()
1438 memcpy(&entity[1], mcpr[i].normal_entry.entity, l); in write_s3row_data()
[all …]
/php-src/ext/libxml/tests/
H A Dlibxml_set_external_entity_loader_variation1.phpt21 $entity = <<<ENT
26 function ($public, $system, $context) use($dtd,$entity){
32 fwrite($f, $first ? $dtd : $entity);
H A Dlibxml_disable_entity_loader.phpt43 Warning: DOMDocument::loadXML(): I/O warning : failed to load external entity "%s" in %s on line %d
45 Warning: DOMDocument::loadXML(): Failure to process entity xxe in Entity, line: %d in %s on line %d
/php-src/ext/standard/libavifinfo/
H A DPATENTS36 participates in a lawsuit against another entity or any person asserting
41 brought against an initiating entity, or 2) that suit was brought to
60 2.1. Affiliate. "Affiliate" means an entity that directly or indirectly
65 entity, the power to direct management of such entity.
84 2.8. Licensee. "Licensee" means any person or entity who exercises patent
89 or entity that has a licensing obligation to the Implementation as a
/php-src/ext/zend_test/tests/
H A Dobserver_error_04.phpt49 …ssage:'SOAP-ERROR: Parsing WSDL: Couldn\'t load from \'foo\' : failed to load external entity "foo"
51 SOAP-ERROR: Parsing WSDL: Couldn't load from 'foo' : failed to load external entity "foo"
/php-src/ext/xml/
H A Dcompat.c342 _build_entity(const xmlChar *name, size_t len, xmlChar **entity, size_t *entity_len) in _build_entity() argument
345 *entity = xmlMalloc(*entity_len + 1); in _build_entity()
346 (*entity)[0] = '&'; in _build_entity()
347 memcpy(*entity+1, name, len); in _build_entity()
348 (*entity)[len+1] = ';'; in _build_entity()
349 (*entity)[*entity_len] = '\0'; in _build_entity()
382 xmlChar *entity; in _get_entity() local
385 _build_entity(name, (size_t) xmlStrlen(name), &entity, &len); in _get_entity()
386 parser->h_default(parser->user, (const xmlChar *) entity, len); in _get_entity()
387 xmlFree(entity); in _get_entity()

Completed in 30 milliseconds

1234