Lines Matching refs:BAD_CAST
1215 (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) { in xmlSaveUri()
1777 segment = xmlURIEscapeStr(BAD_CAST uri->scheme, BAD_CAST "+-."); in xmlURIEscape()
1780 ret = xmlStrcat(ret, BAD_CAST ":"); in xmlURIEscape()
1786 xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@"); in xmlURIEscape()
1788 ret = xmlStrcat(ret, BAD_CAST "//"); in xmlURIEscape()
1794 segment = xmlURIEscapeStr(BAD_CAST uri->user, BAD_CAST ";:&=+$,"); in xmlURIEscape()
1796 ret = xmlStrcat(ret,BAD_CAST "//"); in xmlURIEscape()
1798 ret = xmlStrcat(ret, BAD_CAST "@"); in xmlURIEscape()
1803 segment = xmlURIEscapeStr(BAD_CAST uri->server, BAD_CAST "/?;:@"); in xmlURIEscape()
1806 ret = xmlStrcat(ret, BAD_CAST "//"); in xmlURIEscape()
1815 ret = xmlStrcat(ret, BAD_CAST ":"); in xmlURIEscape()
1821 xmlURIEscapeStr(BAD_CAST uri->path, BAD_CAST ":@&=+$,/?;"); in xmlURIEscape()
1828 ret = xmlStrcat(ret, BAD_CAST "?"); in xmlURIEscape()
1829 ret = xmlStrcat(ret, BAD_CAST uri->query_raw); in xmlURIEscape()
1833 xmlURIEscapeStr(BAD_CAST uri->query, BAD_CAST ";/?:@&=+,$"); in xmlURIEscape()
1835 ret = xmlStrcat(ret, BAD_CAST "?"); in xmlURIEscape()
1841 segment = xmlURIEscapeStr(BAD_CAST uri->opaque, BAD_CAST ""); in xmlURIEscape()
1848 segment = xmlURIEscapeStr(BAD_CAST uri->fragment, BAD_CAST "#"); in xmlURIEscape()
1850 ret = xmlStrcat(ret, BAD_CAST "#"); in xmlURIEscape()
2222 val = xmlStrdup(BAD_CAST ""); in xmlBuildRelativeURI()
2246 val = xmlURIEscapeStr(uptr, BAD_CAST "/;&=+$,"); in xmlBuildRelativeURI()
2275 val = xmlStrdup(BAD_CAST ""); in xmlBuildRelativeURI()
2314 val = xmlURIEscapeStr(uptr, BAD_CAST "/;&=+$,"); in xmlBuildRelativeURI()
2356 val = xmlURIEscapeStr(vptr, BAD_CAST "/;&=+$,"); in xmlBuildRelativeURI()
2430 absuri = xmlStrstr(path, BAD_CAST "://"); in xmlCanonicPath()
2453 escURI = xmlURIEscapeStr(path, BAD_CAST ":/?_.#&;="); in xmlCanonicPath()
2480 uri->scheme = (char *) xmlStrdup(BAD_CAST "file"); in xmlCanonicPath()