Home
last modified time | relevance | path

Searched refs:child_path (Results 1 – 5 of 5) sorted by relevance

/third_party/protobuf/python/google/protobuf/internal/
Dwell_known_types.py643 child_path = prefix + '.' + name
644 self.AddLeafNodes(child_path, node[name])
709 child_path = prefix + '.' + name
711 child_path = name
712 _AddFieldPaths(node[name], child_path, field_mask)
/third_party/glib/gio/
Dgdbus-tool.c1645 gchar *child_path; in dump_node() local
1648 child_path = g_strdup (o->nodes[n]->path); in dump_node()
1650 if (g_str_has_prefix (child_path, object_path)) in dump_node()
1652 introspect_do (c, child_path, indent + 2, use_colors); in dump_node()
1657 child_path, object_path); in dump_node()
1663 child_path = g_strdup_printf ("/%s", o->nodes[n]->path); in dump_node()
1665 child_path = g_strdup_printf ("%s/%s", object_path, o->nodes[n]->path); in dump_node()
1666 introspect_do (c, child_path, indent + 2, use_colors); in dump_node()
1668 g_free (child_path); in dump_node()
Dgsettings.c2438 gchar *child_path; in g_settings_get_child() local
2451 child_path = g_strconcat (settings->priv->path, child_name, NULL); in g_settings_get_child()
2455 "path", child_path, in g_settings_get_child()
2457 g_free (child_path); in g_settings_get_child()
/third_party/node/tools/gyp/pylib/gyp/
Dxcodeproj_file.py1208 child_path = child.PathFromSourceTreeAndPath()
1209 if child_path:
1210 if child_path in self._children_by_path:
1211 raise ValueError("Found multiple children with path " + child_path)
1212 self._children_by_path[child_path] = child
1216 key = (child_name, child_path)
1223 + str(child_path)
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dxcodeproj_file.py1137 child_path = child.PathFromSourceTreeAndPath()
1138 if child_path:
1139 if child_path in self._children_by_path:
1140 raise ValueError('Found multiple children with path ' + child_path)
1141 self._children_by_path[child_path] = child
1145 key = (child_name, child_path)
1149 str(child_path))