• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/

Lines Matching defs:bas

1963     xmlURIPtr bas = NULL;
1998 bas = xmlCreateURI();
1999 if (bas == NULL)
2001 ret = xmlParseURIReference(bas, (const char *) base);
2012 if (bas->fragment != NULL) {
2013 xmlFree(bas->fragment);
2014 bas->fragment = NULL;
2016 val = xmlSaveUri(bas);
2037 if (bas->scheme != NULL)
2038 res->scheme = xmlMemStrdup(bas->scheme);
2039 if (bas->authority != NULL)
2040 res->authority = xmlMemStrdup(bas->authority);
2041 else if (bas->server != NULL) {
2042 res->server = xmlMemStrdup(bas->server);
2043 if (bas->user != NULL)
2044 res->user = xmlMemStrdup(bas->user);
2045 res->port = bas->port;
2047 if (bas->path != NULL)
2048 res->path = xmlMemStrdup(bas->path);
2053 else if (bas->query_raw != NULL)
2054 res->query_raw = xmlMemStrdup(bas->query_raw);
2055 else if (bas->query != NULL)
2056 res->query = xmlMemStrdup(bas->query);
2072 if (bas->scheme != NULL)
2073 res->scheme = xmlMemStrdup(bas->scheme);
2102 if (bas->authority != NULL)
2103 res->authority = xmlMemStrdup(bas->authority);
2104 else if (bas->server != NULL) {
2105 res->server = xmlMemStrdup(bas->server);
2106 if (bas->user != NULL)
2107 res->user = xmlMemStrdup(bas->user);
2108 res->port = bas->port;
2132 if (bas->path != NULL)
2133 len += strlen(bas->path);
2149 if (bas->path != NULL) {
2150 while (bas->path[cur] != 0) {
2151 while ((bas->path[cur] != 0) && (bas->path[cur] != '/'))
2153 if (bas->path[cur] == 0)
2158 res->path[out] = bas->path[out];
2174 if ((out == 0) && (bas->server != NULL))
2199 if (bas != NULL)
2200 xmlFreeURI(bas);
2248 xmlURIPtr bas = NULL;
2276 bas = xmlCreateURI ();
2277 if (bas == NULL)
2280 ret = xmlParseURIReference (bas, (const char *) base);
2284 bas->path = (char *)xmlStrdup(base);
2291 ((bas->scheme == NULL) ||
2292 (xmlStrcmp ((xmlChar *)bas->scheme, (xmlChar *)ref->scheme)) ||
2293 (xmlStrcmp ((xmlChar *)bas->server, (xmlChar *)ref->server)))) {
2297 if (xmlStrEqual((xmlChar *)bas->path, (xmlChar *)ref->path)) {
2301 if (bas->path == NULL) {
2316 if (bas->path == NULL) {
2326 bptr = (xmlChar *)bas->path;
2441 if (bas != NULL)
2442 xmlFreeURI (bas);