Home
last modified time | relevance | path

Searched refs:ncname (Results 1 – 7 of 7) sorted by relevance

/external/libxslt/libxslt/
Dattributes.c290 const xmlChar *ncname; in xsltParseStylesheetAttributeSet() local
306 ncname = xsltSplitQName(style->dict, value, &prefix); in xsltParseStylesheetAttributeSet()
320 attrItems = xmlHashLookup2(style->attributeSets, ncname, prefix); in xsltParseStylesheetAttributeSet()
356 "add attribute to list %s\n", ncname); in xsltParseStylesheetAttributeSet()
390 "add attribute to list %s\n", ncname); in xsltParseStylesheetAttributeSet()
428 "xsl:attribute-set : %s adds use %s\n", ncname, curval); in xsltParseStylesheetAttributeSet()
454 xmlHashUpdateEntry2(style->attributeSets, ncname, prefix, attrItems, NULL); in xsltParseStylesheetAttributeSet()
457 "updated attribute list %s\n", ncname); in xsltParseStylesheetAttributeSet()
1043 const xmlChar *ncname = NULL; in xsltApplyAttributeSet() local
1091 ncname = xsltSplitQName(ctxt->dict, curstr, &prefix); in xsltApplyAttributeSet()
[all …]
/external/chromium_org/third_party/libxslt/libxslt/
Dattributes.c290 const xmlChar *ncname; in xsltParseStylesheetAttributeSet() local
306 ncname = xsltSplitQName(style->dict, value, &prefix); in xsltParseStylesheetAttributeSet()
320 attrItems = xmlHashLookup2(style->attributeSets, ncname, prefix); in xsltParseStylesheetAttributeSet()
356 "add attribute to list %s\n", ncname); in xsltParseStylesheetAttributeSet()
390 "add attribute to list %s\n", ncname); in xsltParseStylesheetAttributeSet()
428 "xsl:attribute-set : %s adds use %s\n", ncname, curval); in xsltParseStylesheetAttributeSet()
454 xmlHashUpdateEntry2(style->attributeSets, ncname, prefix, attrItems, NULL); in xsltParseStylesheetAttributeSet()
457 "updated attribute list %s\n", ncname); in xsltParseStylesheetAttributeSet()
1043 const xmlChar *ncname = NULL; in xsltApplyAttributeSet() local
1091 ncname = xsltSplitQName(ctxt->dict, curstr, &prefix); in xsltApplyAttributeSet()
[all …]
/external/libxml2/include/libxml/
Dtree.h638 xmlBuildQName (const xmlChar *ncname,
/external/chromium_org/third_party/libxml/src/include/libxml/
Dtree.h639 xmlBuildQName (const xmlChar *ncname,
/external/libxml2/
Dtree.c214 xmlBuildQName(const xmlChar *ncname, const xmlChar *prefix, in xmlBuildQName() argument
219 if (ncname == NULL) return(NULL); in xmlBuildQName()
220 if (prefix == NULL) return((xmlChar *) ncname); in xmlBuildQName()
222 lenn = strlen((char *) ncname); in xmlBuildQName()
236 memcpy(&ret[lenp + 1], ncname, lenn); in xmlBuildQName()
/external/chromium_org/third_party/libxml/src/
Dtree.c214 xmlBuildQName(const xmlChar *ncname, const xmlChar *prefix, in xmlBuildQName() argument
219 if (ncname == NULL) return(NULL); in xmlBuildQName()
220 if (prefix == NULL) return((xmlChar *) ncname); in xmlBuildQName()
222 lenn = strlen((char *) ncname); in xmlBuildQName()
236 memcpy(&ret[lenp + 1], ncname, lenn); in xmlBuildQName()
Dtestapi.c19005 xmlChar * ncname; /* the Name */ in test_xmlBuildQName() local
19019 ncname = gen_const_xmlChar_ptr(n_ncname, 0); in test_xmlBuildQName()
19024 ret_val = xmlBuildQName((const xmlChar *)ncname, (const xmlChar *)prefix, memory, len); in test_xmlBuildQName()
19025 if ((ret_val != NULL) && (ret_val != ncname) && in test_xmlBuildQName()
19031 des_const_xmlChar_ptr(n_ncname, (const xmlChar *)ncname, 0); in test_xmlBuildQName()