• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/

Lines Matching defs:content

209  * Macros for accessing the content. Those should be used only by the parser,
503 /* placeholders: elts with content but no subelements */
591 static const char* const content_attr[] = { "content", NULL } ;
801 { "noframes", 0, 0, 0, 0, 0, 2, 0, "alternate content container for non frame-based rendering ",
804 { "noscript", 0, 0, 0, 0, 0, 0, 0, "alternate content container for non script-based rendering ",
968 * CDATA content and where a p element will be implied
980 * The list of HTML attributes which are of content %Script;
1396 * Check if an attribute is of content type Script
2085 (ctxt->node->content != NULL)) return(0);
2664 * parse the content of an HTML SCRIPT or STYLE element
2671 * Script data ( %Script; in the DTD) can be the content of the SCRIPT
2676 * - The content is passed like CDATA
2693 * Authors should therefore escape "</" within the content.
3379 ctxt->input->cur = ctxt->input->buf->buffer->content;
3396 const xmlChar *content = NULL;
3408 else if ((value != NULL) && (!xmlStrcasecmp(att, BAD_CAST"content")))
3409 content = value;
3412 if ((http) && (content != NULL))
3413 htmlCheckEncoding(ctxt, content);
3748 * parse and handle entity references in content,
3825 * Parse a content: comment, sub-element, reference or text.
3958 "detected an error in element content\n",
3973 * Parse a content: comment, sub-element, reference or text.
3988 * [39] element ::= EmptyElemTag | STag content ETag
4081 * Parse the content of the element:
4175 * Parse possible comments and PIs before any content
4200 * Parse possible comments and PIs before any content
4429 input->base = input->buf->buffer->content;
4430 input->cur = input->buf->buffer->content;
4431 input->end = &input->buf->buffer->content[input->buf->buffer->use];
4539 buf = in->buf->buffer->content;
5162 "detected an error in element content\n",
5352 int base = ctxt->input->base - ctxt->input->buf->buffer->content;
5362 ctxt->input->base = ctxt->input->buf->buffer->content + base;
5365 &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->use];
5480 inputStream->base = inputStream->buf->buffer->content;
5481 inputStream->cur = inputStream->buf->buffer->content;
5483 &inputStream->buf->buffer->content[inputStream->buf->buffer->use];
5489 int base = ctxt->input->base - ctxt->input->buf->buffer->content;
5494 ctxt->input->base = ctxt->input->buf->buffer->content + base;
5497 &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->use];
5573 * Create a parser context for a file content.
5586 xmlChar *content, *content_line = (xmlChar *) "charset=";
5617 content = xmlMallocAtomic (xmlStrlen(content_line) + strlen(encoding) + 1);
5618 if (content) {
5619 strcpy ((char *)content, (char *)content_line);
5620 strcat ((char *)content, (char *)encoding);
5621 htmlCheckEncoding (ctxt, content);
5622 xmlFree (content);