• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/

Lines Matching defs:content

209  * Macros for accessing the content. Those should be used only by the parser,
499 /* placeholders: elts with content but no subelements */
586 static const char* const content_attr[] = { "content", NULL } ;
793 { "noframes", 0, 0, 0, 0, 0, 2, 0, "alternate content container for non frame-based rendering ",
796 { "noscript", 0, 0, 0, 0, 0, 0, 0, "alternate content container for non script-based rendering ",
960 * CDATA content and where a p element will be implied
972 * The list of HTML attributes which are of content %Script;
1388 * Check if an attribute is of content type Script
2075 (ctxt->node->content != NULL)) return(0);
2621 * parse the content of an HTML SCRIPT or STYLE element
2628 * Script data ( %Script; in the DTD) can be the content of the SCRIPT
2633 * - The content is passed like CDATA
2666 * Authors should therefore escape "</" within the content.
3340 ctxt->input->cur = ctxt->input->buf->buffer->content;
3357 const xmlChar *content = NULL;
3369 else if ((value != NULL) && (!xmlStrcasecmp(att, BAD_CAST"content")))
3370 content = value;
3373 if ((http) && (content != NULL))
3374 htmlCheckEncoding(ctxt, content);
3694 * parse and handle entity references in content,
3771 * Parse a content: comment, sub-element, reference or text.
3878 "detected an error in element content\n",
3893 * Parse a content: comment, sub-element, reference or text.
3908 * [39] element ::= EmptyElemTag | STag content ETag
4001 * Parse the content of the element:
4076 * Parse possible comments and PIs before any content
4101 * Parse possible comments and PIs before any content
4330 input->base = input->buf->buffer->content;
4331 input->cur = input->buf->buffer->content;
4332 input->end = &input->buf->buffer->content[input->buf->buffer->use];
4439 buf = in->buf->buffer->content;
5062 "detected an error in element content\n",
5252 int base = ctxt->input->base - ctxt->input->buf->buffer->content;
5262 ctxt->input->base = ctxt->input->buf->buffer->content + base;
5265 &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->use];
5380 inputStream->base = inputStream->buf->buffer->content;
5381 inputStream->cur = inputStream->buf->buffer->content;
5383 &inputStream->buf->buffer->content[inputStream->buf->buffer->use];
5389 int base = ctxt->input->base - ctxt->input->buf->buffer->content;
5394 ctxt->input->base = ctxt->input->buf->buffer->content + base;
5397 &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->use];
5473 * Create a parser context for a file content.
5486 xmlChar *content, *content_line = (xmlChar *) "charset=";
5517 content = xmlMallocAtomic (xmlStrlen(content_line) + strlen(encoding) + 1);
5518 if (content) {
5519 strcpy ((char *)content, (char *)content_line);
5520 strcat ((char *)content, (char *)encoding);
5521 htmlCheckEncoding (ctxt, content);
5522 xmlFree (content);