OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ncname
(Results
1 - 3
of
3
) sorted by null
/external/libxslt/libxslt/
attributes.c
290
const xmlChar *
ncname
;
local
306
ncname
= xsltSplitQName(style->dict, value, &prefix);
320
attrItems = xmlHashLookup2(style->attributeSets,
ncname
, prefix);
356
"add attribute to list %s\n",
ncname
);
390
"add attribute to list %s\n",
ncname
);
428
"xsl:attribute-set : %s adds use %s\n",
ncname
, curval);
454
xmlHashUpdateEntry2(style->attributeSets,
ncname
, prefix, attrItems, NULL);
457
"updated attribute list %s\n",
ncname
);
1043
const xmlChar *
ncname
= NULL;
local
1091
ncname
= xsltSplitQName(ctxt->dict, curstr, &prefix)
[
all
...]
/external/libxml2/include/libxml/
tree.h
638
xmlBuildQName (const xmlChar *
ncname
,
[
all
...]
/external/libxml2/
tree.c
201
* @
ncname
: the Name
206
* Builds the QName @prefix:@
ncname
in @memory if there is enough space
208
* If prefix is NULL or empty it returns
ncname
.
211
* @memory and @
ncname
or NULL in case of error
214
xmlBuildQName(const xmlChar *
ncname
, const xmlChar *prefix,
219
if (
ncname
== NULL) return(NULL);
220
if (prefix == NULL) return((xmlChar *)
ncname
);
222
lenn = strlen((char *)
ncname
);
236
memcpy(&ret[lenp + 1],
ncname
, lenn);
250
* [NS 6] Prefix ::=
NCName
[
all
...]
Completed in 1527 milliseconds