Home
last modified time | relevance | path

Searched refs:chnode (Results 1 – 25 of 66) sorted by relevance

123

/dports/www/flickcurl/flickcurl-1.26/src/
H A Dtags.c110 xmlNodePtr chnode; in flickcurl_build_tags() local
158 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_tags()
159 const char *chnode_name = (const char*)chnode->name; in flickcurl_build_tags()
160 if(chnode->type == XML_ELEMENT_NODE) { in flickcurl_build_tags()
164 memcpy(t->raw, chnode->children->content, len + 1); in flickcurl_build_tags()
166 } else if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_tags()
168 size_t len = strlen((const char*)chnode->content); in flickcurl_build_tags()
170 memcpy(t->cooked, chnode->content, len + 1); in flickcurl_build_tags()
320 xmlNodePtr chnode; in flickcurl_build_tag_clusters() local
353 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_tag_clusters()
[all …]
H A Dphotoset.c118 xmlNodePtr chnode; in flickcurl_build_photosets() local
158 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_photosets()
159 const char *chnode_name = (const char*)chnode->name; in flickcurl_build_photosets()
160 if(chnode->type == XML_ELEMENT_NODE) { in flickcurl_build_photosets()
162 if(chnode->children) { in flickcurl_build_photosets()
163 size_t len = strlen((const char*)chnode->children->content); in flickcurl_build_photosets()
165 memcpy(ps->title, chnode->children->content, len + 1); in flickcurl_build_photosets()
168 if(chnode->children) { in flickcurl_build_photosets()
169 size_t len = strlen((const char*)chnode->children->content); in flickcurl_build_photosets()
171 memcpy(ps->description, chnode->children->content, len + 1); in flickcurl_build_photosets()
H A Dmachinetags.c90 xmlNodePtr chnode; in flickcurl_build_tag_namespaces() local
118 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_tag_namespaces()
119 if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_tag_namespaces()
120 size_t len = strlen((const char*)chnode->content); in flickcurl_build_tag_namespaces()
122 memcpy(tn->name, chnode->content, len + 1); in flickcurl_build_tag_namespaces()
241 xmlNodePtr chnode; in flickcurl_build_tag_predicate_values() local
275 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_tag_predicate_values()
276 if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_tag_predicate_values()
277 size_t len = strlen((const char*)chnode->content); in flickcurl_build_tag_predicate_values()
280 memcpy(*ptr, chnode->content, len + 1); in flickcurl_build_tag_predicate_values()
H A Dactivity.c109 xmlNodePtr chnode; in flickcurl_build_activity_event() local
139 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_activity_event()
140 if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_activity_event()
141 size_t len = strlen((const char*)chnode->content); in flickcurl_build_activity_event()
143 memcpy(ae->value, chnode->content, len + 1); in flickcurl_build_activity_event()
180 xmlNodePtr chnode; in flickcurl_build_activities() local
250 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_activities()
251 const char *chnode_name = (const char*)chnode->name; in flickcurl_build_activities()
252 if(chnode->type == XML_ELEMENT_NODE) { in flickcurl_build_activities()
254 size_t len = strlen((const char*)chnode->children->content); in flickcurl_build_activities()
[all …]
H A Dexif.c111 xmlNodePtr chnode; in flickcurl_build_exifs() local
144 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_exifs()
145 const char *chnode_name = (const char*)chnode->name; in flickcurl_build_exifs()
146 if(chnode->type == XML_ELEMENT_NODE) { in flickcurl_build_exifs()
148 size_t len = strlen((const char*)chnode->children->content); in flickcurl_build_exifs()
150 memcpy(e->raw, chnode->children->content, len + 1); in flickcurl_build_exifs()
152 size_t len = strlen((const char*)chnode->children->content); in flickcurl_build_exifs()
154 memcpy(e->clean, chnode->children->content, len + 1); in flickcurl_build_exifs()
H A Dgallery.c118 xmlNodePtr chnode; in flickcurl_build_galleries() local
180 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_galleries()
181 const char *chnode_name = (const char*)chnode->name; in flickcurl_build_galleries()
182 if(chnode->type == XML_ELEMENT_NODE) { in flickcurl_build_galleries()
184 if(chnode->children) { in flickcurl_build_galleries()
185 size_t len = strlen((const char*)chnode->children->content); in flickcurl_build_galleries()
187 memcpy(g->title, chnode->children->content, len + 1); in flickcurl_build_galleries()
190 if(chnode->children) { in flickcurl_build_galleries()
191 size_t len = strlen((const char*)chnode->children->content); in flickcurl_build_galleries()
193 memcpy(g->description, chnode->children->content, len + 1); in flickcurl_build_galleries()
H A Dargs.c80 xmlNodePtr chnode;
101 for(chnode = node->children; chnode; chnode = chnode->next) {
102 if(chnode->type == XML_TEXT_NODE) {
103 size_t len = strlen((const char*)chnode->content);
105 memcpy(arg->description, (const char*)chnode->content, len + 1);
H A Dreflection-api.c102 xmlNodePtr chnode; in flickcurl_reflection_getMethods() local
111 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_reflection_getMethods()
112 if(chnode->type == XML_TEXT_NODE) { in flickcurl_reflection_getMethods()
113 size_t len = strlen((const char*)chnode->content); in flickcurl_reflection_getMethods()
115 memcpy(methods[count], chnode->content, len + 1); in flickcurl_reflection_getMethods()
H A Dpanda-api.c69 xmlNodePtr chnode; in flickcurl_build_pandas() local
78 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_pandas()
79 if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_pandas()
80 size_t len = strlen((const char*)chnode->content); in flickcurl_build_pandas()
82 memcpy(panda, chnode->content, len + 1); in flickcurl_build_pandas()
H A Dnote.c88 xmlNodePtr chnode; in flickcurl_build_notes() local
130 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_notes()
131 if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_notes()
132 size_t len = strlen((const char*)chnode->content); in flickcurl_build_notes()
134 memcpy(n->text, chnode->content, len + 1); in flickcurl_build_notes()
H A Dcomments.c113 xmlNodePtr chnode; in flickcurl_build_comments() local
147 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_comments()
148 if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_comments()
149 size_t len = strlen((const char*)chnode->content); in flickcurl_build_comments()
151 memcpy(comment_object->text, chnode->content, len +1); in flickcurl_build_comments()
H A Duser_upload_status.c96 xmlNodePtr chnode;
97 for(chnode = node->children; chnode; chnode = chnode->next) {
98 size_t len = strlen((const char*)chnode->content);
99 if(chnode->type != XML_TEXT_NODE)
102 memcpy(u->username, chnode->content, len + 1);
H A Dgroup.c115 xmlNodePtr chnode; in flickcurl_build_groups() local
169 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_groups()
170 const char *chnode_name = (const char*)chnode->name; in flickcurl_build_groups()
174 if(chnode->type != XML_ELEMENT_NODE) in flickcurl_build_groups()
178 for(attr = chnode->properties; attr; attr = attr->next) { in flickcurl_build_groups()
200 for(attr = chnode->properties; attr; attr = attr->next) { in flickcurl_build_groups()
226 if(!chnode->children) in flickcurl_build_groups()
229 value_len = strlen((const char*)chnode->children->content); in flickcurl_build_groups()
231 memcpy(value, chnode->children->content, value_len + 1); in flickcurl_build_groups()
H A Dblog.c215 xmlNodePtr chnode; in flickcurl_build_blog_services() local
239 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_blog_services()
240 if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_blog_services()
241 size_t len = strlen((const char*)chnode->content); in flickcurl_build_blog_services()
243 memcpy(b->name, chnode->content, len + 1); in flickcurl_build_blog_services()
H A Dplace.c681 xmlNodePtr chnode; in flickcurl_build_place_types() local
708 for(chnode = node->children; chnode; chnode = chnode->next) { in flickcurl_build_place_types()
709 if(chnode->type == XML_TEXT_NODE) { in flickcurl_build_place_types()
710 size_t len = strlen((const char*)chnode->content); in flickcurl_build_place_types()
712 memcpy(pt->name, chnode->content, len + 1); in flickcurl_build_place_types()
/dports/cad/electric/electric-7.00/src/sc/
H A Dsc1route.c1342 for (chnode = chan->nodes; chnode; chnode = chnode->next) in Sc_route_create_pass_throughs()
1349 for (chnode = chan->nodes; chnode; chnode = chnode->next) in Sc_route_create_pass_throughs()
1887 for (chnode = chan->nodes; chnode; chnode = chnode->next) in Sc_route_decide_exports()
1892 if (chnode) in Sc_route_decide_exports()
2167 for (chnode = channel->nodes; chnode; chnode = chnode->next) in Sc_route_create_VCG()
2209 for (chnode = channel->nodes; chnode; chnode = chnode->next) in Sc_route_create_VCG()
2214 vcg_node->chnode = chnode; in Sc_route_create_VCG()
2322 for (chnode = channel->nodes; chnode; chnode = chnode->next) in Sc_route_VCG_create_dependents()
2661 for (chnode = channel->nodes; chnode; chnode = chnode->next) in Sc_route_create_ZRG()
3508 vnode->chnode = chnode; in Sc_route_create_power_ties()
[all …]
/dports/dns/libnspsl/libnspsl-0.1.6/src/
H A Dnspsl.c52 const struct hnode *chnode; in huffcasecmp() local
64 chnode = &zhnode; in huffcasecmp()
65 while (chnode->term == 0) { in huffcasecmp()
66 chnode = &htable[chnode->value + (curc & 1)]; in huffcasecmp()
76 res = ascii_to_lower(str[cnt]) - chnode->value; in huffcasecmp()
/dports/net/quagga/quagga-1.2.4/pimd/
H A Dpim_upstream.c254 struct listnode *chnode; in forward_on() local
267 for (ALL_LIST_ELEMENTS(pim_ifp->pim_ifchannel_list, chnode, chnextnode, ch)) { in forward_on()
283 struct listnode *chnode; in forward_off() local
296 for (ALL_LIST_ELEMENTS(pim_ifp->pim_ifchannel_list, chnode, chnextnode, ch)) { in forward_off()
457 struct listnode *chnode; in pim_upstream_evaluate_join_desired() local
470 for (ALL_LIST_ELEMENTS(pim_ifp->pim_ifchannel_list, chnode, chnextnode, ch)) { in pim_upstream_evaluate_join_desired()
575 struct listnode *chnode; in pim_upstream_rpf_interface_changed() local
585 for (ALL_LIST_ELEMENTS(pim_ifp->pim_ifchannel_list, chnode, chnextnode, ch)) { in pim_upstream_rpf_interface_changed()
610 struct listnode *chnode; in pim_upstream_update_could_assert() local
638 struct listnode *chnode; in pim_upstream_update_my_assert_metric() local
[all …]
/dports/cad/openscad-devel/openscad-63a7c77740030c63d646eb0684ba6947eecb0db7/tests/
H A DCSGTextRenderer.cc61 const AbstractNode *chnode = *iter; in applyToChildren() local
62 assert(this->cache.contains(*chnode)); in applyToChildren()
64 if (chnode->modinst->tag_background) continue; in applyToChildren()
66 N += "(" + this->cache[*chnode]; in applyToChildren()
70 process(N, this->cache[*chnode], op); in applyToChildren()
72 chnode->progress_report(); in applyToChildren()
/dports/cad/openscad/openscad-41f58fe57c03457a3a8b4dc541ef5654ec3e8c78/tests/
H A DCSGTextRenderer.cc61 const AbstractNode *chnode = *iter; in applyToChildren() local
62 assert(this->cache.contains(*chnode)); in applyToChildren()
64 if (chnode->modinst->tag_background) continue; in applyToChildren()
66 N += "(" + this->cache[*chnode]; in applyToChildren()
70 process(N, this->cache[*chnode], op); in applyToChildren()
72 chnode->progress_report(); in applyToChildren()
/dports/cad/openscad/openscad-41f58fe57c03457a3a8b4dc541ef5654ec3e8c78/src/
H A DCSGTreeEvaluator.cc47 for(const auto &chnode : this->visitedchildren[node.index()]) { in applyBackgroundAndHighlight()
48 shared_ptr<CSGNode> t(this->stored_term[chnode->index()]); in applyBackgroundAndHighlight()
49 this->stored_term.erase(chnode->index()); in applyBackgroundAndHighlight()
66 for(const auto &chnode : vc) { in applyToChildren() local
67 shared_ptr<CSGNode> t2(this->stored_term[chnode->index()]); in applyToChildren()
68 this->stored_term.erase(chnode->index()); in applyToChildren()
165 for(const AbstractNode *chnode : this->visitedchildren[node.index()]) { in visit()
166 addToParent(state, *chnode); in visit()
/dports/cad/openscad-devel/openscad-63a7c77740030c63d646eb0684ba6947eecb0db7/src/
H A DCSGTreeEvaluator.cc47 for(const auto &chnode : this->visitedchildren[node.index()]) { in applyBackgroundAndHighlight()
48 shared_ptr<CSGNode> t(this->stored_term[chnode->index()]); in applyBackgroundAndHighlight()
49 this->stored_term.erase(chnode->index()); in applyBackgroundAndHighlight()
66 for(const auto &chnode : vc) { in applyToChildren() local
67 shared_ptr<CSGNode> t2(this->stored_term[chnode->index()]); in applyToChildren()
68 this->stored_term.erase(chnode->index()); in applyToChildren()
165 for(const AbstractNode *chnode : this->visitedchildren[node.index()]) { in visit()
166 addToParent(state, *chnode); in visit()
H A DNodeVisitor.cc19 for(const auto &chnode : node.getChildren()) { in traverse() local
20 response = this->traverse(*chnode, newstate); in traverse()
/dports/misc/mc/mc-4.8.27/src/viewer/
H A Dhex.c476 struct hexedit_change_node **chnode = head; in mcview_enqueue_change() local
478 while (*chnode != NULL && (*chnode)->offset < node->offset) in mcview_enqueue_change()
479 chnode = &((*chnode)->next); in mcview_enqueue_change()
481 node->next = *chnode; in mcview_enqueue_change()
482 *chnode = node; in mcview_enqueue_change()
/dports/misc/mc-nox11/mc-4.8.27/src/viewer/
H A Dhex.c476 struct hexedit_change_node **chnode = head; in mcview_enqueue_change() local
478 while (*chnode != NULL && (*chnode)->offset < node->offset) in mcview_enqueue_change()
479 chnode = &((*chnode)->next); in mcview_enqueue_change()
481 node->next = *chnode; in mcview_enqueue_change()
482 *chnode = node; in mcview_enqueue_change()

123