Home | History | Annotate | Download | only in libxml2

Lines Matching refs:cpy

1039 #define DICT_COPY(str, cpy) \
1043 cpy = (xmlChar *) (str); \
1045 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1047 cpy = xmlStrdup((const xmlChar *)(str)); }
1056 #define DICT_CONST_COPY(str, cpy) \
1060 cpy = (const xmlChar *) (str); \
1062 cpy = xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1064 cpy = (const xmlChar *) xmlStrdup((const xmlChar *)(str)); }