Home
last modified time | relevance | path

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

123

/PHP-8.3/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-8.3/ext/mbstring/tests/
H A Dmb_decode_numericentity.phpt99 // An entity can come right after a preceding &#
105 // The starting & of an entity can terminate a preceding entity
109 // An entity can come right after an entity which is invalid because of being too long
118 test("Starting entity immediately after invalid decimal entity", "&#0A", "&#0A", [0x1, 0xFFFF, …
119 test("Starting entity immediately after invalid hex entity", "&#x0A", "&#x0A", [0x1, 0xFFFF, 0,…
125 // that the entity could not be successfully decoded, so if the entity decoded successfully to
203 Starting entity immediately after decimal entity which is too long: string(18) "&#10000000000A"…
204 Starting entity immediately after hex entity which is too long: string(17) "&#x111111111A" => s…
207 Starting entity immediately after invalid decimal entity: string(8) "&#0A" => string(4) "&#0A" …
208 Starting entity immediately after invalid hex entity: string(9) "&#x0A" => string(5) "&#x0A" (G…
[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-8.3/ext/dom/
H A Dentityreference.c76 xmlEntityPtr entity = xmlGetDocEntity(reference->doc, reference->name); in dom_entity_reference_fetch_and_sync_declaration() local
77 reference->children = (xmlNodePtr) entity; in dom_entity_reference_fetch_and_sync_declaration()
78 reference->last = (xmlNodePtr) entity; in dom_entity_reference_fetch_and_sync_declaration()
79 reference->content = entity ? entity->content : NULL; in dom_entity_reference_fetch_and_sync_declaration()
80 return entity; in dom_entity_reference_fetch_and_sync_declaration()
92 xmlEntityPtr entity = dom_entity_reference_fetch_and_sync_declaration(nodep); in dom_entity_reference_child_read() local
93 if (entity == NULL) { in dom_entity_reference_child_read()
98 php_dom_create_object((xmlNodePtr) entity, retval, obj); in dom_entity_reference_child_read()
/PHP-8.3/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-8.3/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…
H A Ddomdocument_createentityreference_001.phpt2 DomDocument::CreateEntityReference() - Creates an entity reference with the appropriate name
H A DDOMDocument_createEntityReference_basic.phpt2 DOMDocument::createEntityReference() should create a new entity reference node
/PHP-8.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c183 mbfl_html_entity_entry *entity; in mbfl_filt_conv_html_dec() local
250 while (entity->name) { in mbfl_filt_conv_html_dec()
252 ent = entity->code; in mbfl_filt_conv_html_dec()
255 entity++; in mbfl_filt_conv_html_dec()
401 while (entity->name) { in mb_htmlent_to_wchar()
402 … if (!strncmp((char*)p, entity->name, terminator - p) && strlen(entity->name) == terminator - p) { in mb_htmlent_to_wchar()
403 *out++ = entity->code; in mb_htmlent_to_wchar()
407 entity++; in mb_htmlent_to_wchar()
449 while (entity->name) { in mb_wchar_to_htmlent()
450 if (w == entity->code) { in mb_wchar_to_htmlent()
[all …]
/PHP-8.3/ext/standard/tests/strings/
H A Dbug73817.phpt6 foreach ($entities as $entity) {
7 if (substr($entity, -1) !== ';') {
8 var_dump($entity);
/PHP-8.3/ext/libxml/
H A Dlibxml.c147 xmlEntityPtr entity = data; in php_libxml_unlink_entity() local
148 if (entity->_private != NULL) { in php_libxml_unlink_entity()
185 xmlDtdPtr dtd = entity->parent; in php_libxml_unlink_entity_decl()
187 if (xmlHashLookup(dtd->entities, entity->name) == entity) { in php_libxml_unlink_entity_decl()
190 if (xmlHashLookup(dtd->pentities, entity->name) == entity) { in php_libxml_unlink_entity_decl()
213 xmlFreeEntity(entity); in php_libxml_node_free()
215 …if (entity->children != NULL && entity->owner && entity == (xmlEntityPtr) entity->children->parent… in php_libxml_node_free()
218 xmlDictPtr dict = entity->doc != NULL ? entity->doc->dict : NULL; in php_libxml_node_free()
232 xmlFree(entity->content); in php_libxml_node_free()
235 xmlFree(entity->orig); in php_libxml_node_free()
[all …]
/PHP-8.3/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-8.3/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()
1412 memcpy(&entity[1], r->data.ent.entity, l); in write_s3row_data()
1413 entity[l + 1] = ';'; in write_s3row_data()
1423 entity[l + 1] = ';'; in write_s3row_data()
1444 memcpy(&entity[1], mcpr[i].normal_entry.entity, l); in write_s3row_data()
[all …]
/PHP-8.3/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
H A Dnull_returned_by_resolver.phpt32 Warning: DOMDocument::loadHTMLFile(): Failed to load external entity because the resolver function …
/PHP-8.3/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-8.3/ext/xml/
H A Dcompat.c342 _build_entity(const xmlChar *name, int len, xmlChar **entity, int *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, 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 69 milliseconds

123