HomeSort by relevance Sort by last modified time
    Searched full:sub_node (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/tools/gyp/tools/
pretty_vcproj.py 90 for sub_node in node.childNodes:
91 PrettyPrintNode(sub_node, indent=indent+2)
146 for sub_node in node.childNodes:
147 AbsoluteNode(sub_node)
148 CleanupVcproj(sub_node)
151 for sub_node in node.childNodes:
152 if sub_node.nodeType == Node.TEXT_NODE:
153 sub_node.data = sub_node.data.replace("\r", "")
154 sub_node.data = sub_node.data.replace("\n", ""
    [all...]
  /external/valgrind/main/callgrind/
clo.c 87 config_node* sub_node[NODE_DEGREE]; member in struct:_config_node
137 node->sub_node[i] = 0;
192 n = node->sub_node[ name[0]%NODE_DEGREE ];
206 new_sub->next = node->sub_node[ name[0]%NODE_DEGREE ];
207 node->sub_node[ name[0]%NODE_DEGREE ] = new_sub;
228 node->sub_node[ n->name[0]%NODE_DEGREE ] = new_node;
231 new_node->sub_node[ n->name[len]%NODE_DEGREE ] = n;
242 /* this sub_node of new_node could already be set: chain! */
243 new_sub->next = new_node->sub_node[ name[0]%NODE_DEGREE ];
244 new_node->sub_node[ name[0]%NODE_DEGREE ] = new_sub
    [all...]

Completed in 95 milliseconds