Home | History | Annotate | Download | only in src

Lines Matching refs:cpy

1040 #define DICT_COPY(str, cpy) \
1044 cpy = (xmlChar *) (str); \
1046 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1048 cpy = xmlStrdup((const xmlChar *)(str)); }
1057 #define DICT_CONST_COPY(str, cpy) \
1061 cpy = (const xmlChar *) (str); \
1063 cpy = xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1065 cpy = (const xmlChar *) xmlStrdup((const xmlChar *)(str)); }