Searched refs:cur_node (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/libxml2-26/libxml2/doc/examples/
H A Dtree1.c33 xmlNode *cur_node = NULL; local
35 for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
36 if (cur_node->type == XML_ELEMENT_NODE) {
37 printf("node type: Element, name: %s\n", cur_node->name);
40 print_element_names(cur_node->children);
/macosx-10.10/mDNSResponder-561.1.1/mDNSMacOSX/
H A DDNSSECSupport.c183 xmlNode *cur_node; local
189 for (cur_node = node; cur_node; cur_node = cur_node->next)
194 val = xmlNodeListGetString(tadoc, cur_node->xmlChildrenNode, 1);
197 LogInfo("ParseElementChildren: NULL value for %s", cur_node->name);
200 if (!xmlStrcmp(cur_node->name, (const xmlChar *)"Zone"))
214 LogInfo("ParseElementChildren: Element %s, value %##s", cur_node->name, ta->zone.c);
217 else if (!xmlStrcmp(cur_node
392 xmlNode *cur_node = NULL; local
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dparsexml.m552 handle_opaque(xmlNode* cur_node, PyObject* globalDict)
554 char* name = attribute_string(cur_node, "name", NULL);
555 char* type = attribute_string(cur_node, "type", "type64");
583 handle_constant(xmlNode* cur_node, PyObject* globalDict)
585 char* name = attribute_string(cur_node, "name", NULL);
586 char* type = attribute_string(cur_node, "type", "type64");
605 BOOL magic = attribute_bool(cur_node, "magic_cookie", NULL, NO);
637 handle_string_constant(xmlNode* cur_node, PyObject* globalDict)
639 char* name = attribute_string(cur_node, "name", NULL);
640 char* value = attribute_string(cur_node, "valu
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dparsexml.m581 handle_opaque(xmlNode* cur_node, PyObject* globalDict)
583 char* name = attribute_string(cur_node, "name", NULL);
584 char* type = attribute_string(cur_node, "type", "type64");
612 handle_constant(xmlNode* cur_node, PyObject* globalDict)
614 char* name = attribute_string(cur_node, "name", NULL);
615 char* type = attribute_string(cur_node, "type", "type64");
634 BOOL magic = attribute_bool(cur_node, "magic_cookie", NULL, NO);
673 handle_string_constant(xmlNode* cur_node, PyObject* globalDict)
675 char* name = attribute_string(cur_node, "name", NULL);
676 char* value = attribute_string(cur_node, "valu
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Dsssvlv.c432 Avlnode *cur_node, *tmp_node; local
449 cur_node = tavl_end(so->so_tree, TAVL_DIR_RIGHT);
453 cur_node = tavl_end(so->so_tree, TAVL_DIR_LEFT);
477 cur_node = tavl_end(so->so_tree, TAVL_DIR_LEFT);
480 cur_node = tavl_end(so->so_tree, TAVL_DIR_RIGHT);
485 cur_node = tavl_next( cur_node, dir );
518 cur_node = tavl_find3( so->so_tree, sn, node_cmp, &j );
521 if ( cur_node )
522 cur_node
585 Avlnode *cur_node = so->so_tree; local
[all...]
/macosx-10.10/webdavfs-367/mount.tproj/
H A Dwebdav_cache.c1108 struct node_entry *cur_node; local
1134 cur_node = target_node;
1135 while ( cur_node != g_root_node )
1137 require_action(cur_node != NULL, name_too_long, error = ENAMETOOLONG);
1140 if (cur_node->isRedirected == TRUE) {
1142 require_action((cur_ptr - cur_node->redir_name_length + 1) >= pathbuf,
1150 cur_ptr -= cur_node->redir_name_length;
1151 memcpy(cur_ptr, cur_node->redir_name, cur_node->redir_name_length);
1158 require_action((cur_ptr - cur_node
[all...]
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dregexec.c66 regmatch_t *prev_idx_match, Idx cur_node,
1437 Idx idx, cur_node;
1458 cur_node = dfa->init_node;
1477 update_regs (dfa, pmatch, prev_idx_match, cur_node, idx, nmatch);
1479 if (idx == pmatch[0].rm_eo && cur_node == mctx->last_node)
1494 cur_node = pop_fail_stack (fs, &idx, nmatch, pmatch,
1507 cur_node = proceed_next_node (mctx, nmatch, pmatch, &idx, cur_node,
1510 if (BE (! REG_VALID_INDEX (cur_node), 0))
1512 if (BE (cur_node
1434 Idx idx, cur_node; local
1554 update_regs(const re_dfa_t *dfa, regmatch_t *pmatch, regmatch_t *prev_idx_match, Idx cur_node, Idx cur_idx, Idx nmatch) argument
1881 Idx cur_node = inv_eclosure->elems[ecl_idx]; local
1907 Idx cur_node = inv_eclosure->elems[ecl_idx]; local
3087 Idx cur_node = cur_nodes->elems[cur_idx]; local
3171 Idx cur_node = cur_nodes->elems[idx]; local
3210 Idx cur_node; local
[all...]
/macosx-10.10/emacs-93/emacs/lib-src/
H A Detags.c2183 register node *cur_node = *cur_node_p;
2185 if (cur_node == NULL)
2206 else if (cur_node->fdp == np->fdp)
2210 add_node (np, &cur_node->right);
2215 add_node (np, &cur_node->left);
2221 dif = strcmp (np->name, cur_node->name);
2229 if (np->fdp == cur_node->fdp)
2238 else if (!cur_node->been_warned && !no_warnings)
2243 np->fdp->infname, cur_node->fdp->infname, np->name);
2244 cur_node
2177 register node *cur_node = *cur_node_p; local
[all...]
/macosx-10.10/libxml2-26/libxml2/
H A Dxmlreader.c1689 xmlNodePtr node, cur_node; local
1698 for (cur_node = reader->node->children; cur_node != NULL;
1699 cur_node = cur_node->next) {
1700 node = xmlDocCopyNode(cur_node, doc, 1);
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxmlreader.c1674 xmlNodePtr node, cur_node; local
1683 for (cur_node = reader->node->children; cur_node != NULL;
1684 cur_node = cur_node->next) {
1685 node = xmlDocCopyNode(cur_node, doc, 1);

Completed in 1021 milliseconds