Home | History | Annotate | Download | only in src

Lines Matching refs:meta

35  *   		Getting/Setting encoding meta tags			*
43 * Encoding definition lookup in the Meta tags
66 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
82 if (xmlStrEqual(cur->name, BAD_CAST"meta"))
93 * Search the meta elements
98 if (xmlStrEqual(cur->name, BAD_CAST"meta")) {
155 * Sets the current encoding in the Meta tags
157 * the META flag associated.
163 htmlNodePtr cur, meta = NULL, head = NULL;
192 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0)
208 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0) {
225 * Search and update all the remaining the meta elements carrying
230 if (xmlStrcasecmp(cur->name, BAD_CAST"meta") == 0) {
257 meta = cur;
266 if (meta == NULL) {
269 * Create a new Meta element with the right attributes
272 meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL);
274 xmlAddChild(head, meta);
276 xmlAddPrevSibling(head->children, meta);
277 xmlNewProp(meta, BAD_CAST"http-equiv", BAD_CAST"Content-Type");
278 xmlNewProp(meta, BAD_CAST"content", BAD_CAST newcontent);
283 xmlSetProp(meta, BAD_CAST"content", BAD_CAST newcontent);