Home
last modified time | relevance | path

Searched refs:child_name (Results 1 – 8 of 8) sorted by relevance

/third_party/protobuf/python/
Dstubout.py112 def Set(self, parent, child_name, new_child): argument
122 old_child = getattr(parent, child_name)
124 old_attribute = parent.__dict__.get(child_name)
128 self.cache.append((parent, old_child, child_name))
129 setattr(parent, child_name, new_child)
141 for (parent, old_child, child_name) in self.cache:
142 setattr(parent, child_name, old_child)
/third_party/ffmpeg/libavformat/
Dteeproto.c94 char *child_name = NULL; in tee_open() local
110 ret = ff_tee_parse_slave_options(h, child_string, &options, &child_name); in tee_open()
114 ret = ffurl_open_whitelist(&c->child[c->child_count].url_context, child_name, flags, in tee_open()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dxcodeproj_file.py1124 child_name = child.Name()
1125 if child_name != None:
1126 hashables.append(child_name)
1144 child_name = child._properties.get('name', None)
1145 key = (child_name, child_path)
1148 'name ' + str(child_name) + ' and path ' + \
/third_party/node/tools/gyp/pylib/gyp/
Dxcodeproj_file.py1195 child_name = child.Name()
1196 if child_name is not None:
1197 hashables.append(child_name)
1215 child_name = child._properties.get("name", None)
1216 key = (child_name, child_path)
1221 + str(child_name)
/third_party/vulkan-loader/tests/framework/
Dtest_util.cpp379 std::string child_name = s_p + file_name_utf8; in delete_folder_contents() local
380 DeleteFileW(widen(child_name).c_str()); in delete_folder_contents()
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Ddiagnostics.dart382 /// ├─<child_name>: <child_description>
388 /// │ └─<child_name>: <child_description>
394 /// └─<child_name>: <child_description>'
430 /// ╎ └─<child_name>: <child_description>
442 /// ╎ └─<child_name>: <child_description>
475 /// ├<child_name>: <child_description>(<property1>, <property2>, <propertyN>)
476 /// └<child_name>: <child_description>(<property1>, <property2>, <propertyN>)
566 /// ╎ └─<child_name>: <child_description>
578 /// ╎ └─<child_name>: <child_description>
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-read-common.c2443 const gchar *child_name = gst_tag_list_nth_tag_name (child_taglist, i); in gst_matroska_read_common_parse_metadata_id_simple_tag() local
2444 guint taglen = gst_tag_list_get_tag_size (child_taglist, child_name); in gst_matroska_read_common_parse_metadata_id_simple_tag()
2451 if (!gst_tag_list_get_string_index (child_taglist, child_name, in gst_matroska_read_common_parse_metadata_id_simple_tag()
/third_party/python/Doc/library/
Dimportlib.rst1875 parent_name, _, child_name = absolute_name.rpartition('.')
1889 setattr(parent_module, child_name, module)