HomeSort by relevance Sort by last modified time
    Searched defs:cur_node (Results 1 - 5 of 5) sorted by null

  /external/libxml2/doc/examples/
tree1.c 33 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);
  /external/v8/src/
locked-queue-inl.h 34 Node* cur_node = head_; local
35 while (cur_node != nullptr) {
36 old_node = cur_node;
37 cur_node = cur_node->next.Value();
  /packages/services/Car/vehicle_network_service/
VehiclePropertyAccessControl.cpp 131 xmlNode* cur_node = NULL; local
148 for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
149 if ((xmlStrcmp(cur_node->name, (const xmlChar *)"PROPERTY") == 0) &&
150 (cur_node->type == XML_ELEMENT_NODE)) {
154 property = xmlGetProp(cur_node, (const xmlChar *)"name");
161 property_value_str = xmlGetProp(cur_node, (const xmlChar*)"value");
175 for (child = cur_node->children; child; child = child->next)
    [all...]
  /external/selinux/libsepol/src/
expand.c 2819 cond_node_t *cur_node; local
    [all...]
  /external/libxml2/
xmlreader.c 1702 xmlNodePtr node, cur_node; local
    [all...]

Completed in 3048 milliseconds