Searched defs:entity (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_5/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_htmlent.c | 182 mbfl_html_entity_entry *entity; local 197 /* numeric entity */ 216 /* numeric entity */ 243 /* named entity */ 245 entity = (mbfl_html_entity_entry *)mbfl_html_entity_list; 246 while (entity->name) { 247 if (!strcmp(buffer+1, entity->name)) { 248 ent = entity->code; 251 entity++;
|
| /PHP_5_5/ext/standard/ |
| H A D | html_tables.h | 80 /* longest entity name length excluding & and ; */ 1098 * the table and the default entity (maybe NULL) and the rest being 1108 const char *entity; member in struct:__anon233::__anon235 1115 char ambiguous; /* if 0 look into entity */ 1118 const char *entity; /* may be NULL */ member in struct:__anon236::__anon237::__anon238 1143 /* {{{ Start of HTML5 multi-stage table for codepoint -> entity */ 2603 /* end of HTML5 multi-stage table for codepoint -> entity }}} */ 2605 /* {{{ HTML5 hash table for entity -> codepoint */ 2608 const char *entity; member in struct:__anon240 5331 /* end of HTML5 hash table for entity [all...] |
| H A D | html.c | 25 * HTML entity resources: 850 while (s->entity) { 852 if (memcmp(start, s->entity, length) == 0) { 959 /* numerical entity */ 968 stage3_table_be_apos_00000[code].data.ent.entity == NULL)) 971 /* are we allowed to decode this entity in this document type? 973 * a numeric entity but is allowed literally (U+000D). The 1020 /* jump over the valid entity; may go beyond size of buffer; np */ 1062 * Entity table to use. Note that entity tables are defined in terms of 1136 const unsigned char **entity, 1132 find_entity_for_char( unsigned int k, enum entity_charset charset, const entity_stage1_row *table, const unsigned char **entity, size_t *entity_len, unsigned char *old, size_t oldlen, size_t *cursor) argument 1195 find_entity_for_char_basic( unsigned int k, const entity_stage3_row *table, const unsigned char **entity, size_t *entity_len) argument 1543 char entity[LONGEST_ENTITY_LENGTH + 2] = {'&'}; local [all...] |
| /PHP_5_5/ext/xml/ |
| H A D | compat.c | 352 _build_entity(const xmlChar *name, int len, xmlChar **entity, int *entity_len) argument 355 *entity = xmlMalloc(*entity_len + 1); 356 (*entity)[0] = '&'; 357 memcpy(*entity+1, name, len); 358 (*entity)[len+1] = ';'; 359 (*entity)[*entity_len] = '\0'; 389 xmlChar *entity; local 392 _build_entity(name, xmlStrlen(name), &entity, &len); 393 parser->h_default(parser->user, (const xmlChar *) entity, len); 394 xmlFree(entity); [all...] |
Completed in 61 milliseconds