• Home
  • Raw
  • Download

Lines Matching refs:BAD_CAST

1214 	        (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) {  in xmlSaveUri()
1776 segment = xmlURIEscapeStr(BAD_CAST uri->scheme, BAD_CAST "+-."); in xmlURIEscape()
1779 ret = xmlStrcat(ret, BAD_CAST ":"); in xmlURIEscape()
1785 xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@"); in xmlURIEscape()
1787 ret = xmlStrcat(ret, BAD_CAST "//"); in xmlURIEscape()
1793 segment = xmlURIEscapeStr(BAD_CAST uri->user, BAD_CAST ";:&=+$,"); in xmlURIEscape()
1795 ret = xmlStrcat(ret,BAD_CAST "//"); in xmlURIEscape()
1797 ret = xmlStrcat(ret, BAD_CAST "@"); in xmlURIEscape()
1802 segment = xmlURIEscapeStr(BAD_CAST uri->server, BAD_CAST "/?;:@"); in xmlURIEscape()
1805 ret = xmlStrcat(ret, BAD_CAST "//"); in xmlURIEscape()
1814 ret = xmlStrcat(ret, BAD_CAST ":"); in xmlURIEscape()
1820 xmlURIEscapeStr(BAD_CAST uri->path, BAD_CAST ":@&=+$,/?;"); in xmlURIEscape()
1827 ret = xmlStrcat(ret, BAD_CAST "?"); in xmlURIEscape()
1828 ret = xmlStrcat(ret, BAD_CAST uri->query_raw); in xmlURIEscape()
1832 xmlURIEscapeStr(BAD_CAST uri->query, BAD_CAST ";/?:@&=+,$"); in xmlURIEscape()
1834 ret = xmlStrcat(ret, BAD_CAST "?"); in xmlURIEscape()
1840 segment = xmlURIEscapeStr(BAD_CAST uri->opaque, BAD_CAST ""); in xmlURIEscape()
1847 segment = xmlURIEscapeStr(BAD_CAST uri->fragment, BAD_CAST "#"); in xmlURIEscape()
1849 ret = xmlStrcat(ret, BAD_CAST "#"); in xmlURIEscape()
2221 val = xmlStrdup(BAD_CAST ""); in xmlBuildRelativeURI()
2257 val = xmlStrdup(BAD_CAST ""); in xmlBuildRelativeURI()
2284 val = xmlStrdup(BAD_CAST "./"); in xmlBuildRelativeURI()
2294 val = xmlURIEscapeStr(uptr, BAD_CAST "/;&=+$,"); in xmlBuildRelativeURI()
2336 val = xmlURIEscapeStr(vptr, BAD_CAST "/;&=+$,"); in xmlBuildRelativeURI()
2410 absuri = xmlStrstr(path, BAD_CAST "://"); in xmlCanonicPath()
2433 escURI = xmlURIEscapeStr(path, BAD_CAST ":/?_.#&;="); in xmlCanonicPath()
2460 uri->scheme = (char *) xmlStrdup(BAD_CAST "file"); in xmlCanonicPath()