Home | History | Annotate | Download | only in libxml2

Lines Matching refs:cpy

1051 #define DICT_COPY(str, cpy) \
1055 cpy = (xmlChar *) (str); \
1057 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1059 cpy = xmlStrdup((const xmlChar *)(str)); }
1068 #define DICT_CONST_COPY(str, cpy) \
1072 cpy = (const xmlChar *) (str); \
1074 cpy = xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1076 cpy = (const xmlChar *) xmlStrdup((const xmlChar *)(str)); }