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/node/test/fixtures/wpt/user-timing/resources/
Dwebperftestharness.js44 function test_namespace(child_name, skip_root) argument
51 if (child_name !== undefined) {
52 var msg2 = 'window.performance.' + child_name + ' is defined';
53 …wp_test(function() { assert_not_equals(performanceNamespace[child_name], undefined, msg2); }, msg2…
/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.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/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/glib/patch/
Dbackport-gtestutils-Add-G_TEST_SUBPROCESS_DEFAULT.patch175 gchar *child_name;
177child_name = g_strdup_printf ("/gschema/%s%s/subprocess/do_compile", test->name, test->opt ? "/opt…
178 - g_test_trap_subprocess (child_name, 0, 0);
179 + g_test_trap_subprocess (child_name, 0, G_TEST_SUBPROCESS_DEFAULT);
180 g_free (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/python/Doc/library/
Dimportlib.rst1875 parent_name, _, child_name = absolute_name.rpartition('.')
1889 setattr(parent_module, child_name, module)