Searched refs:ns (Results 51 - 75 of 154) sorted by relevance

1234567

/haiku-fatelf/src/tools/docbook/libxml2/include/libxml/
H A Dpattern.h80 const xmlChar *ns,
85 const xmlChar *ns);
89 const xmlChar *ns);
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dtree.c46 xmlNsPtr xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns);
761 * @ns: a namespace pointer
766 xmlSetNs(xmlNodePtr node, xmlNsPtr ns) { argument
774 node->ns = ns;
788 "xmlFreeNs : ns == NULL\n");
809 "xmlFreeNsList : ns == NULL\n");
1731 xmlNewPropInternal(xmlNodePtr node, xmlNsPtr ns, argument
1762 cur->ns = ns;
1850 xmlNewNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name, const xmlChar *value) argument
1875 xmlNewNsPropEatName(xmlNodePtr node, xmlNsPtr ns, xmlChar *name, const xmlChar *value) argument
2111 xmlNewNode(xmlNsPtr ns, const xmlChar *name) argument
2153 xmlNewNodeEatName(xmlNsPtr ns, xmlChar *name) argument
2201 xmlNewDocNode(xmlDocPtr doc, xmlNsPtr ns, const xmlChar *name, const xmlChar *content) argument
2238 xmlNewDocNodeEatName(xmlDocPtr doc, xmlNsPtr ns, xmlChar *name, const xmlChar *content) argument
2267 xmlNewDocRawNode(xmlDocPtr doc, xmlNsPtr ns, const xmlChar *name, const xmlChar *content) argument
2365 xmlNewTextChild(xmlNodePtr parent, xmlNsPtr ns, const xmlChar *name, const xmlChar *content) argument
2745 xmlNewChild(xmlNodePtr parent, xmlNsPtr ns, const xmlChar *name, const xmlChar *content) argument
3640 xmlNsPtr ns; local
3878 xmlNsPtr ns; local
4533 xmlNsPtr ns; local
4605 xmlNsPtr ns; local
4750 xmlNsPtr ns; local
5726 xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) argument
6303 xmlUnsetNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name) argument
6343 xmlNsPtr ns; local
6367 xmlSetNsProp(xmlNodePtr node, xmlNsPtr ns, const xmlChar *name, const xmlChar *value) argument
7362 xmlNsPtr ns; local
7395 xmlNsPtr ns; local
7437 xmlNsPtr ns; local
7465 xmlNsPtr ns; local
7600 xmlNsPtr ns; local
7733 xmlNsPtr ns, prevns; local
7834 xmlNsPtr ns; local
7971 xmlDOMWrapNSNormAquireNormalizedNs(xmlDocPtr doc, xmlNodePtr elem, xmlNsPtr ns, xmlNsPtr *retNs, xmlNsMapPtr *nsMap, int depth, int ancestorsOnly, int prefixed) argument
8116 xmlNsPtr ns, prevns; local
8383 xmlNsPtr ns = NULL; local
8711 xmlNsPtr ns; local
9198 xmlNsPtr ns = NULL; local
[all...]
H A Dxmlreader.c901 if ((node->ns == NULL) || (node->ns->prefix == NULL)) {
908 qname = xmlStrdup(node->ns->prefix);
992 if ((node->ns == NULL) || (node->ns->prefix == NULL)) {
999 qname = xmlStrdup(node->ns->prefix);
1457 (reader->node->ns != NULL) &&
1458 ((xmlStrEqual(reader->node->ns->href, XINCLUDE_NS)) ||
1459 (xmlStrEqual(reader->node->ns->href, XINCLUDE_OLD_NS)))) {
2266 xmlNsPtr ns; local
2314 xmlNsPtr ns; local
2386 xmlNsPtr ns; local
2482 xmlNsPtr ns; local
2510 xmlNsPtr ns; local
2559 xmlNsPtr ns; local
2664 xmlNsPtr ns; local
2759 xmlNsPtr ns = (xmlNsPtr) reader->curnode; local
2824 xmlNsPtr ns = (xmlNsPtr) reader->curnode; local
2890 xmlNsPtr ns; local
3043 xmlNsPtr ns = (xmlNsPtr) node; local
3074 xmlNsPtr ns = (xmlNsPtr) node; local
3141 xmlNsPtr ns = (xmlNsPtr) node; local
3212 xmlNsPtr ns = (xmlNsPtr) node; local
3247 xmlNsPtr ns = (xmlNsPtr) node; local
3279 xmlNsPtr ns = (xmlNsPtr) node; local
[all...]
H A Dpattern.c91 const xmlChar *ns; /* second string value */ member in struct:_xmlStreamStep
529 if (node->ns == NULL) {
532 } else if (node->ns->href != NULL) {
535 if (!xmlStrEqual(step->value2, node->ns->href))
575 if (node->ns == NULL) {
579 if (!xmlStrEqual(step->value2, node->ns->href))
601 if (node->ns == NULL) {
604 } else if (node->ns->href != NULL) {
607 if (!xmlStrEqual(step->value2, node->ns->href))
638 if (node->ns
1539 xmlStreamCompAddStep(xmlStreamCompPtr comp, const xmlChar *name, const xmlChar *ns, int nodeType, int flags) argument
1851 xmlStreamPushInternal(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType) argument
2210 xmlStreamPush(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns) argument
2235 xmlStreamPushNode(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType) argument
2260 xmlStreamPushAttr(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns) argument
[all...]
H A Dvalid.c1375 xmlChar *ns, *uqname; local
1427 uqname = xmlSplitQName2(name, &ns);
1448 if (ns != NULL)
1449 xmlFree(ns);
1458 ret = xmlHashLookup2(dtd->doc->intSubset->elements, name, ns);
1462 xmlHashRemoveEntry2(dtd->doc->intSubset->elements, name, ns, NULL);
1471 ret = xmlHashLookup2(table, name, ns);
1484 if (ns != NULL)
1485 xmlFree(ns);
1488 if (ns !
1959 xmlAddAttributeDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name, const xmlChar *ns, xmlAttributeType type, xmlAttributeDefault def, const xmlChar *defaultValue, xmlEnumerationPtr tree) argument
4430 xmlValidateOneNamespace(xmlValidCtxtPtr ctxt, xmlDocPtr doc, xmlNodePtr elem, const xmlChar *prefix, xmlNsPtr ns, const xmlChar *value) argument
6069 xmlNsPtr ns; local
6078 xmlNsPtr ns; local
6153 xmlNsPtr ns; local
6170 xmlNsPtr ns; local
6275 xmlNsPtr ns; local
[all...]
H A Dxlink.c133 } else if ((node->ns != NULL) &&
134 (xmlStrEqual(node->ns->href, XHTML_NAMESPACE))) {
H A DSAX2.c1057 xmlChar *ns; local
1064 name = xmlSplitQName(ctxt, fullname, &ns);
1066 if (xmlStrEqual(ns, BAD_CAST "xmlns")) {
1075 if (ns != NULL)
1076 xmlFree(ns);
1077 ns = NULL;
1083 if (ns != NULL)
1084 xmlFree(ns);
1110 if ((!ctxt->html) && (ns == NULL) &&
1165 (ns !
1518 xmlNsPtr ns; local
2125 xmlNsPtr last = NULL, ns; local
[all...]
H A DdebugXML.c84 * @ns: the namespace node
93 xmlNsCheckScope(xmlNodePtr node, xmlNsPtr ns) argument
97 if ((node == NULL) || (ns == NULL))
117 if (cur == ns)
119 if (xmlStrEqual(cur->prefix, ns->prefix))
131 if (oldNs == ns)
192 * @ns: the namespace node
197 xmlCtxtNsCheckScope(xmlDebugCtxtPtr ctxt, xmlNodePtr node, xmlNsPtr ns) argument
201 ret = xmlNsCheckScope(node, ns);
203 if (ns
335 xmlNsPtr ns; local
713 xmlCtxtDumpNamespace(xmlDebugCtxtPtr ctxt, xmlNsPtr ns) argument
750 xmlCtxtDumpNamespaceList(xmlDebugCtxtPtr ctxt, xmlNsPtr ns) argument
1763 xmlNsPtr ns = (xmlNsPtr) node; local
2160 xmlNsPtr ns; local
[all...]
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dtransform.c619 (((target->ns == NULL) &&
622 ((target->ns != NULL) &&
624 target->name, target->ns->href) != NULL)))) {
702 (((target->ns == NULL) &&
705 ((target->ns != NULL) &&
707 target->name, target->ns->href) != NULL)))) {
829 if (attr->ns != NULL) {
830 xmlNsPtr ns = NULL; local
831 const xmlChar *prefix = attr->ns->prefix;
838 * don't want to add yet another ns
966 xmlNsPtr ns; local
995 xmlNsPtr ns; local
1247 xmlNsPtr *nsList, *cur, ns; local
1686 xmlNsPtr ns; local
1774 xmlNsPtr ns; local
2163 xmlNsPtr ns, lastns = NULL; local
2655 xmlNsPtr ns, ret; local
3559 xmlNsPtr ns = NULL, oldns = NULL; local
[all...]
H A Dxslt.c452 xmlNsPtr ns,
457 if ((cctxt == NULL) || (doc == NULL) || (ns == NULL))
469 ret->ns = ns;
470 ret->origNsName = ns->href;
657 * Global list of excluded result ns-decls.
892 * Restore changed ns-decls before freeing the document.
1022 * TODO: This will gather the ns-decls of elements even if
1274 xmlNsPtr ns; local
1285 ns
450 xsltNewNamespaceMapItem(xsltCompilerCtxtPtr cctxt, xmlDocPtr doc, xmlNsPtr ns, xmlNodePtr elem) argument
1535 xmlNsPtr ns; local
1668 xmlNsPtr ns; local
1716 xmlNsPtr ns; local
1762 xmlNsPtr ns; local
1808 xmlNsPtr ns; local
1981 xmlNsPtr ns, tmpns; local
2420 xmlNsPtr ns; local
3300 xmlNsPtr ns = cur->nsDef, prev = NULL, next; local
3442 xmlNsPtr ns = cur->nsDef; local
4837 xmlNsPtr ns; local
5980 xsltRestoreDocumentNamespaces(xsltNsMapPtr ns, xmlDocPtr doc) argument
[all...]
H A Dtemplates.c353 * @ns: the attribute namespace URI
364 const xmlChar *name, const xmlChar *ns) {
371 expr = xsltGetNsProp(node, name, ns);
396 * @ns: the attribute namespace URI
407 const xmlChar *name, const xmlChar *ns, int *found) {
414 expr = xsltGetNsProp(node, name, ns);
445 xmlNsPtr ns; local
462 if ((cur->ns != NULL) &&
463 (xmlStrEqual(cur->ns->href, XSLT_NAMESPACE))) {
473 if (cur->ns
363 xsltEvalAttrValueTemplate(xsltTransformContextPtr ctxt, xmlNodePtr node, const xmlChar *name, const xmlChar *ns) argument
406 xsltEvalStaticAttrValueTemplate(xsltStylesheetPtr style, xmlNodePtr node, const xmlChar *name, const xmlChar *ns, int *found) argument
[all...]
H A Dtemplates.h36 const xmlChar *ns);
41 const xmlChar *ns,
H A Dpreproc.c73 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL))
85 if ((parent->ns == NULL) ||
86 ((parent->ns != inst->ns) &&
87 (!xmlStrEqual(parent->ns->href, inst->ns->href))) ||
113 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL) ||
127 if (((parent->ns == inst->ns) ||
128 ((parent->ns !
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A Dkernel_interface_r5.cpp52 static int bfs_write_fs_stat(void *ns, struct fs_info *, long mode);
55 static int bfs_sync(void *ns);
59 static int bfs_remove_vnode(void *ns, void *node, char r);
64 static int bfs_ioctl(void *ns, void *node, void *cookie, int cmd, void *buf, size_t len);
65 static int bfs_setflags(void *ns, void *node, void *cookie, int flags);
67 static int bfs_select(void *ns, void *node, void *cookie, uint8 event,
69 static int bfs_deselect(void *ns, void *node, void *cookie, uint8 event,
71 static int bfs_fsync(void *ns, void *node);
73 static int bfs_create(void *ns, void *dir, const char *name,
75 static int bfs_symlink(void *ns, voi
263 bfs_unmount(void *ns) argument
544 bfs_release_vnode(void *ns, void *_node, char reenter) argument
846 bfs_select(void *ns, void *node, void *cookie, uint8 event, uint32 ref, selectsync *sync) argument
856 bfs_deselect(void *ns, void *node, void *cookie, uint8 event, selectsync *sync) argument
1105 bfs_link(void *ns, void *dir, const char *name, void *node) argument
1776 bfs_free_dir_cookie(void *ns, void *node, void *_cookie) argument
1811 bfs_close_attrdir(void *ns, void *node, void *cookie) argument
1819 bfs_free_attrdir_cookie(void *ns, void *node, void *_cookie) argument
1909 bfs_rename_attr(void *ns, void *node, const char *oldname, const char *newname) argument
1923 bfs_stat_attr(void *ns, void *_node, const char *name, struct attr_info *attrInfo) argument
2156 bfs_rename_index(void *ns, const char *oldname, const char *newname) argument
2240 bfs_close_query(void *ns, void *cookie) argument
2248 bfs_free_query_cookie(void *ns, void *node, void *cookie) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/
H A Dntfs.h107 #define ntfs_mark_free_space_outdated(ns) (ns->state |= (NF_FreeClustersOutdate | NF_FreeMFTOutdate));
H A Dvolume_util.c68 nspace *ns = (nspace*)_ns; local
69 ntfs_volume *vol = ns->ntvol;
76 if(ns== NULL || vol==NULL || data==NULL)
82 if (!(ns->state & NF_FreeClustersOutdate))
105 ns->free_clusters = free_clusters;
106 ns->state &= ~(NF_FreeClustersOutdate);
/haiku-fatelf/src/tools/docbook/libxslt/libexslt/
H A Dsets.c103 xmlNodeSetPtr ns, ret; local
118 ns = xmlXPathPopNodeSet(ctxt);
123 ret = xmlXPathDistinctSorted(ns);
125 if (ret != ns)
126 xmlXPathFreeNodeSet(ns);
/haiku-fatelf/src/bin/pcmcia-cs/
H A Dcardctl.c330 for (i = 0; i < vers->ns; i++)
360 vers->ns = 0;
364 (i < vers->ns) ? vers->str+vers->ofs[i] : "");
661 int cmd, fd[MAX_SOCKS], ns, ret, i; local
726 ns = strtol(argv[optind+1], &s, 0);
729 fd[0] = open_sock(ns);
741 for (ns = 0; ns < MAX_SOCKS; ns++) {
742 fd[ns]
[all...]
/haiku-fatelf/src/tests/kits/net/netperf/
H A Dnetsh.c303 char *ns;
304 ns = strchr(s,',');
305 if (ns) {
307 *ns++ = '\0';
308 while ((*arg2++ = *ns++) != '\0');
311 /* there was not a comma, we can use ns as a temp s */
313 ns = s;
314 while ((*arg2++ = *ns++) != '\0');
329 char *ns;
330 ns
302 char *ns; local
328 char *ns; local
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/googlefs/
H A Dgooglefs.h126 ino_t new_vnid(fs_nspace *ns);
128 int googlefs_event(fs_nspace *ns, fs_node *node, int flags);
/haiku-fatelf/headers/private/kernel/arch/sparc/
H A Dstand.h132 #define btochs(b,c,h,s,nh,ns) \
133 c = (b) / ((nh) * (ns)); \
134 h = ((b) % ((nh) * (ns))) / (ns); \
135 s = ((b) % ((nh) * (ns))) % (ns);
/haiku-fatelf/src/kits/shared/
H A DColorQuantizer.cpp125 uint32 ns = 0; local
131 ns += sums[k];
133 table[j].r = clip((float)nr / ns);
134 table[j].g = clip((float)ng / ns);
135 table[j].b = clip((float)nb / ns);
136 table[j].a = clip((float)na / ns);
/haiku-fatelf/src/documentation/docbook-xsl/extensions/xalan2/com/nwalsh/xalan/
H A DVerbatim.java261 String ns = node.getNamespaceURI();
265 rtf.startElement(ns, localName, name,
326 String ns = node.getNamespaceURI();
329 rtf.endElement(ns, localName, name);
610 String ns = node.getNamespaceURI();
614 rtf.startElement(ns, localName, name,
701 String ns = node.getNamespaceURI();
704 rtf.endElement(ns, localName, name);
846 String ns = elem.getNamespaceURI();
853 && (((ns !
[all...]
/haiku-fatelf/src/documentation/docbook-xsl/extensions/xalan27/src/com/nwalsh/xalan/
H A DVerbatim.java266 String ns = node.getNamespaceURI();
270 rtf.startElement(ns, localName, name,
331 String ns = node.getNamespaceURI();
334 rtf.endElement(ns, localName, name);
615 String ns = node.getNamespaceURI();
619 rtf.startElement(ns, localName, name,
707 String ns = node.getNamespaceURI();
710 rtf.endElement(ns, localName, name);
852 String ns = elem.getNamespaceURI();
859 && (((ns !
[all...]
/haiku-fatelf/src/tests/kits/net/preflet/InterfacesAddOn/
H A DInterfacesAddOn.cpp175 NetworkSettings* ns = item->GetSettings(); local
176 ns->RenegotiateAddresses();

Completed in 252 milliseconds

1234567