| /vbox/src/libs/libxml2-2.6.31/doc/examples/ |
| H A D | xpath2.c | 28 static void update_xpath_nodes(xmlNodeSetPtr nodes, const xmlChar * value); 79 * Parses input XML file, evaluates XPath expression and update the nodes 118 /* update selected nodes */ 138 * @nodes: the nodes set. 141 * Prints the @nodes content to @output. 144 update_xpath_nodes(xmlNodeSetPtr nodes, const xmlChar* value) { argument 149 size = (nodes) ? nodes->nodeNr : 0; 152 * NOTE: the nodes ar [all...] |
| H A D | xpath1.c | 27 void print_xpath_nodes(xmlNodeSetPtr nodes, FILE* output); 199 * @nodes: the nodes set. 202 * Prints the @nodes content to @output. 205 print_xpath_nodes(xmlNodeSetPtr nodes, FILE* output) { argument 211 size = (nodes) ? nodes->nodeNr : 0; 213 fprintf(output, "Result (%d nodes):\n", size); 215 assert(nodes->nodeTab[i]); 217 if(nodes [all...] |
| /vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ |
| H A D | ipcCommandModule.cpp | 59 BuildStringArray(const ipcStringNode *nodes) argument 65 for (node = nodes; node; node = node->mNext) 73 for (node = nodes; node; node = node->mNext, ++count) 81 BuildIDArray(const ipcIDNode *nodes) argument 87 for (node = nodes; node; node = node->mNext) 95 for (node = nodes; node; node = node->mNext, ++count)
|
| /vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/ |
| H A D | dt_xlator.c | 99 const char *name, dt_node_t *members, dt_node_t *nodes) 201 * create member nodes for every member of the output type. Otherwise 210 dxp->dx_nodes = nodes; 97 dt_xlator_create(dtrace_hdl_t *dtp, const dtrace_typeinfo_t *src, const dtrace_typeinfo_t *dst, const char *name, dt_node_t *members, dt_node_t *nodes) argument
|
| /vbox/src/VBox/GuestHost/OpenGL/packer/ |
| H A D | pack_pica.c | 131 const PICAnodeID *nodes, 139 (void) nodes; 143 const PICAnodeID *nodes, 151 (void) nodes; 130 crPackPicaCreateContext(const PICAuint *config, const PICAnodeID *nodes, PICAuint numNodes, PICAcontextID *return_value, int* writeback ) argument 142 crPackPicaCreateContextSWAP(const PICAuint *config, const PICAnodeID *nodes, PICAuint numNodes, PICAcontextID *return_value, int* writeback ) argument
|
| /vbox/src/libs/libxml2-2.6.31/ |
| H A D | c14n.c | 43 int nsCurEnd; /* number of nodes in the set */ 48 xmlNodePtr *nodeTab; /* array of nodes in no particular order */ 88 static int xmlC14NIsNodeInNodeset (xmlNodeSetPtr nodes, 248 xmlC14NIsNodeInNodeset(xmlNodeSetPtr nodes, xmlNodePtr node, xmlNodePtr parent) { argument 249 if((nodes != NULL) && (node != NULL)) { 251 return(xmlXPathNodeSetContains(nodes, node)); 268 return(xmlXPathNodeSetContains(nodes, (xmlNodePtr)&ns)); 567 * Consider a list L containing only namespace nodes in the 574 * namespace node in the node-set (default namespace nodes always 586 * ancestor nodes o 1658 xmlC14NDocSaveTo(xmlDocPtr doc, xmlNodeSetPtr nodes, int exclusive, xmlChar ** inclusive_ns_prefixes, int with_comments, xmlOutputBufferPtr buf) argument 1694 xmlC14NDocDumpMemory(xmlDocPtr doc, xmlNodeSetPtr nodes, int exclusive, xmlChar ** inclusive_ns_prefixes, int with_comments, xmlChar ** doc_txt_ptr) argument 1766 xmlC14NDocSave(xmlDocPtr doc, xmlNodeSetPtr nodes, int exclusive, xmlChar ** inclusive_ns_prefixes, int with_comments, const char *filename, int compression) argument [all...] |
| H A D | xmlwriter.c | 85 xmlListPtr nodes; /* element name stack */ member in struct:_xmlTextWriter 185 ret->nodes = xmlListCreate((xmlListDeallocator) 189 if (ret->nodes == NULL) { 203 xmlListDelete(ret->nodes); 213 xmlListDelete(ret->nodes); 481 if (writer->nodes != NULL) 482 xmlListDelete(writer->nodes); 529 lk = xmlListFront(writer->nodes); 648 while ((lk = xmlListFront(writer->nodes)) != NULL) { 731 lk = xmlListFront(writer->nodes); [all...] |
| H A D | relaxng.c | 286 xmlHashTablePtr triage; /* hash table used to direct nodes to the 3307 ctxt, xmlNodePtr nodes, 3314 xmlNodePtr nodes); 3320 ctxt, xmlNodePtr nodes); 4267 * - trying to get a total order on the element nodes generated 5402 * @nodes: list of nodes 5410 xmlRelaxNGParsePatterns(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes, argument 5416 while (nodes != NULL) { 5417 if (IS_RELAXNG(nodes, "elemen 5458 xmlRelaxNGParseStart(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes) argument 5516 xmlRelaxNGParseGrammarContent(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes) argument 6442 xmlRelaxNGParseGrammar(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes) argument [all...] |
| H A D | xpath.c | 71 * non-element nodes; actually it will speed up comparison only if 938 fprintf(output, "Set contains %d nodes:\n", cur->nodeNr); 1823 * look out for namespace nodes in the node-set. 2831 * This stamps all the element nodes with the document order 2881 * Compare two nodes w.r.t document order 3029 * Compare two nodes w.r.t document order. 3030 * This one is optimized for handling of non-element nodes. 3117 * TODO: why do we return 1 for namespace nodes? 3173 * adjacent non-element nodes around. 3361 * the namespace nodes ar 4454 xmlXPathDistinctSorted(xmlNodeSetPtr nodes) argument 4494 xmlXPathDistinct(xmlNodeSetPtr nodes) argument 4544 xmlXPathNodeLeadingSorted(xmlNodeSetPtr nodes, xmlNodePtr node) argument 4582 xmlXPathNodeLeading(xmlNodeSetPtr nodes, xmlNodePtr node) argument 4646 xmlXPathNodeTrailingSorted(xmlNodeSetPtr nodes, xmlNodePtr node) argument 4685 xmlXPathNodeTrailing(xmlNodeSetPtr nodes, xmlNodePtr node) argument [all...] |
| H A D | xmlschemas.c | 2161 * Don't try to format other nodes than element and 2162 * attribute nodes. 2170 * Work on tree nodes. 9514 * removes unwanted nodes in a schemas document tree 9524 * Remove all the blank text nodes 9723 * @nodes: the list of top level nodes 9730 xmlSchemaPtr schema, xmlNodePtr nodes) 9736 if ((ctxt == NULL) || (schema == NULL) || (nodes == NULL)) 9740 child = nodes; 9729 xmlSchemaParseSchemaTopLevel(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr nodes) argument [all...] |
| H A D | testapi.c | 2167 int legacy; /* whether to allow deprecated elements (YES is faster here for Element nodes) */ 5326 xmlNodeSetPtr nodes; /* the nodes set to be included in the canonized image or NULL if all document nodes should be included */ local 5345 nodes = gen_xmlNodeSetPtr(n_nodes, 1); 5351 ret_val = xmlC14NDocDumpMemory(doc, nodes, exclusive, inclusive_ns_prefixes, with_comments, doc_txt_ptr); 5355 des_xmlNodeSetPtr(n_nodes, nodes, 1); 5395 xmlNodeSetPtr nodes; /* the nodes set to be included in the canonized image or NULL if all document nodes shoul local 5471 xmlNodeSetPtr nodes; /* the nodes set to be included in the canonized image or NULL if all document nodes should be included */ local 46819 xmlNodeSetPtr nodes; /* a node-set */ local 46853 xmlNodeSetPtr nodes; /* a node-set, sorted by document order */ local 48367 xmlNodeSetPtr nodes; /* a node-set */ local 48408 xmlNodeSetPtr nodes; /* a node-set, sorted by document order */ local 48765 xmlNodeSetPtr nodes; /* a node-set */ local 48806 xmlNodeSetPtr nodes; /* a node-set, sorted by document order */ local [all...] |
| /vbox/src/libs/libxml2-2.6.31/python/ |
| H A D | libxml.c | 3403 "must be a tuple or list of nodes."); 3516 xmlNodeSetPtr nodes; local 3536 result = PyxmlNodeSet_Convert(pyobj_nodes, &nodes); 3542 if (nodes) { 3543 xmlFree(nodes->nodeTab); 3544 xmlFree(nodes); 3551 nodes, 3557 if (nodes) { 3558 xmlFree(nodes->nodeTab); 3559 xmlFree(nodes); 3592 xmlNodeSetPtr nodes; local [all...] |
| /vbox/src/VBox/Main/webservice/jaxlibs/ |
| H A D | jaxws-rt.jar | ... .MemberSubmissionEndpointReference msEpr
org.w3c.dom.NodeList nodes
private static java.util.Map getAttributes (org. ... |