Home
last modified time | relevance | path

Searched refs:child (Results 976 - 1000 of 1042) sorted by relevance

1...<<31323334353637383940>>...42

/third_party/gn/src/gn/
H A Dxcode_object.h307 PBXObject* AddChildImpl(std::unique_ptr<PBXObject> child);
/third_party/node/deps/v8/src/objects/
H A Dmap.h890 Handle<Map> child, Handle<Name> name,
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
H A Dregalloc.c543 if (!handle_value_read(&store->node, store->child, &ctx)) in regalloc_value_regs()
/third_party/toybox/lib/
H A Dlib.h88 struct dirtree *next, *parent, *child; member
/third_party/toybox/porting/liteos_a/lib/
H A Dlib.h88 struct dirtree *next, *parent, *child; member
/third_party/python/Tools/clinic/
H A Dclinic.py2129 child = parent.modules.get(field)
2130 if child:
2131 parent = module = child
2136 child = parent.classes.get(field)
2137 if not child:
2139 cls = parent = child
/third_party/python/Lib/test/
H A D_test_multiprocessing.py346 # Launch a child process. Make it launch a grandchild process. Kill the
347 # child process and make sure that the grandchild notices the death of
348 # its parent (a.k.a the child process).
355 raise AssertionError("Could not communicate with child process")
363 raise AssertionError("Could not communicate with child process")
675 # Number of fds in child processes should not grow with the
719 # A child process should wait for non-daemonic threads to end
763 # broken by the child process
2658 # We want ensure that the traceback from the child process is
3180 conn.send_bytes(SENTINEL) # tell child t
5056 def child(cls, n, conn): global() member in TestForkAwareThreadLock
[all...]
H A Dtest_xml_etree.py1482 self._feed(parser, "<child />\n")
1484 ('start', '{abc}child'),
1485 ('end', '{abc}child'),
1505 self._feed(parser, "<child />\n")
1507 ('start', '{abc}child'),
1508 ('end', '{abc}child'),
1887 "xi:fallback tag must be child of xi:include "
2488 dumper.SubElement(e, 'child').append(dumper.Element('grandchild'))
2489 e.append(dumper.Element('child'))
2621 e.append(ET.Element('child'))
[all...]
/third_party/python/Objects/
H A Dtypeobject.c4681 compatible_with_tp_base(PyTypeObject *child) in compatible_with_tp_base() argument
4683 PyTypeObject *parent = child->tp_base; in compatible_with_tp_base()
4685 child->tp_basicsize == parent->tp_basicsize && in compatible_with_tp_base()
4686 child->tp_itemsize == parent->tp_itemsize && in compatible_with_tp_base()
4687 child->tp_dictoffset == parent->tp_dictoffset && in compatible_with_tp_base()
4688 child->tp_weaklistoffset == parent->tp_weaklistoffset && in compatible_with_tp_base()
4689 ((child->tp_flags & Py_TPFLAGS_HAVE_GC) == in compatible_with_tp_base()
4691 (child->tp_dealloc == subtype_dealloc || in compatible_with_tp_base()
4692 child->tp_dealloc == parent->tp_dealloc)); in compatible_with_tp_base()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H A Dfunction.cpp1988 root->Iterate([this, oldNode, newScope](ir::AstNode *child) { in ReplaceScope()
1989 auto *scope = NodeScope(child); in ReplaceScope()
1996 ReplaceScope(child, oldNode, newScope); in ReplaceScope()
/third_party/rust/crates/bindgen/bindgen/codegen/
H A Dmod.rs550 for child in self.children() { in codegen()
551 if ctx.codegen_items().contains(child) { in codegen()
553 ctx.resolve_item(*child).codegen(ctx, result, &()); in codegen()
4423 fn from(child: #class_name) -> #parent_struct { in from()
4424 #parent_struct(child.0) in from()
/third_party/libinput/test/
H A Dlitest.c121 pid_t parent, child; in litest_backtrace() local
133 child = fork(); in litest_backtrace()
135 if (child == 0) { in litest_backtrace()
152 waitpid(child, &status, 0); in litest_backtrace()
875 /* child, we can run system() */ in litest_signal()
1157 /* child always exits here */ in litest_fork_subtests()
/third_party/ltp/tools/sparse/sparse-src/
H A Devaluate.c2373 struct expression *child = e->idx_expression; in convert_index() local
2379 e->init_expr = child; in convert_index()
2384 struct expression *child = e->ident_expression; in convert_ident() local
2390 e->init_expr = child; in convert_ident()
/third_party/node/deps/v8/src/profiler/
H A Dheap-snapshot-generator.cc297 HeapEntry* child, in SetNamedAutoIndexReference()
305 SetNamedReference(type, name, child, generator, verification); in SetNamedAutoIndexReference()
3014 for (AllocationTraceNode* child : node->children()) { in SerializeTraceNode()
3018 SerializeTraceNode(child); in SerializeTraceNode()
295 SetNamedAutoIndexReference(HeapGraphEdge::Type type, const char* description, HeapEntry* child, StringsStorage* names, HeapSnapshotGenerator* generator, ReferenceVerification verification) SetNamedAutoIndexReference() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Ddpp.c2021 token = token->child; in dpp_conf_req_rx()
2330 for (token = groups->child; token; token = token->sibling) { in dpp_parse_connector()
3536 for (token = groups->child; token; token = token->sibling) { in dpp_connector_compatible_group()
3573 for (token = groups->child; token; token = token->sibling) { in dpp_connector_match_groups()
/third_party/vulkan-loader/loader/
H A Dloader.c2432 if (!disable_environment->child || disable_environment->child->type != cJSON_String) { in loader_read_layer_json()
2434 "Didn't find required layer child value disable_environment in manifest JSON file, skipping this layer " in loader_read_layer_json()
2439 result = loader_copy_to_new_str(inst, disable_environment->child->string, &(props.disable_env_var.name)); in loader_read_layer_json()
2441 result = loader_copy_to_new_str(inst, disable_environment->child->valuestring, &(props.disable_env_var.value)); in loader_read_layer_json()
2560 if (enable_environment && enable_environment->child && enable_environment->child->type == cJSON_String) { in loader_read_layer_json()
2561 result = loader_copy_to_new_str(inst, enable_environment->child->string, &(props.enable_env_var.name)); in loader_read_layer_json()
2563 result = loader_copy_to_new_str(inst, enable_environment->child->valuestring, &(props.enable_env_var.value)); in loader_read_layer_json()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_profiler_info.h480 ProfileType rootType, JSTaggedType parent, ProfileType parentType, JSTaggedType child, ProfileType childType);
/third_party/rust/crates/libc/src/unix/newlib/
H A Dmod.rs717 child: ::Option<unsafe extern "C" fn()>, in pthread_atfork()
/third_party/protobuf/python/google/protobuf/internal/
H A Dreflection_test.py2469 child = self.proto.optional_foreign_message
2471 child.c = 128
2476 child = self.extended_proto.Extensions[extension]
2478 child.foreign_message_int = 1
2480 child.foreign_message_int = 128
3180 'leaf', 'package.parent.child.leaf', '',
3187 'child', 'package.parent.child', '',
/third_party/typescript/lib/
H A DtypingsInstaller.js5830 // - Bitmasks for flags that should propagate from a child
6512 * Watch the directory recursively using host provided method to watch child directories
6622 // Call the actual callbacks and remove child watches
6650 // Because the child refresh is fresh, we would need to invalidate whole root directory being watched
6690 var hasChanges = ts.enumerateInsertsAndDeletes(fileSystemEntryExists(parentDir, 1 /* FileSystemEntryKind.Directory */) ? ts.mapDefined(getAccessibleSortedChildDirectories(parentDir), function (child) {
6691 var childFullName = ts.getNormalizedAbsolutePath(child, parentDir);
6695 }) : ts.emptyArray, parentWatcher.childWatches, function (child, childWatcher) { return filePathComparer(child, childWatcher.dirName); }, createAndAddChildDirectoryWatcher, ts.closeFileWatcher, addChildDirectoryWatcher);
6706 * Add child directory watcher to the new ChildDirectoryWatcher list
8150 function containsPath(parent, child, currentDirector
[all...]
/third_party/node/test/fixtures/wpt/resources/
H A Dtestharness.js1399 return "Document node with " + val.childNodes.length + (val.childNodes.length == 1 ? " child" : " children");
1403 return "DocumentFragment node with " + val.childNodes.length + (val.childNodes.length == 1 ? " child" : " children");
4833 table#results > thead > tr > th:first-child,\
4834 table#results > tbody > tr > td:first-child {\
4838 table#results > thead > tr > th:last-child,\
4839 table#results > thead > tr > td:last-child {\
4843 table#results.assertions > thead > tr > th:last-child,\
4844 table#results.assertions > tbody > tr > td:last-child {\
/third_party/littlefs/scripts/
H A Dtest.py931 for child in children.copy():
932 child.kill()
/third_party/python/Lib/collections/
H A D__init__.py1097 for child in reversed(self.maps):
1098 m.update(child)
/third_party/python/Lib/test/test_import/
H A D__init__.py1213 def _setup_broken_package(self, parent, child):
1224 f.write(child)
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_btree_test.cc501 // Ref child node once every 16 iterations, and leaf node every 4 in TEST_P()
562 // Ref child node once every 16 iterations, and leaf node every 4 in TEST_P()
805 EXPECT_THAT(leaf->Edges()[1]->substring()->child, Eq(flat)); in TEST()
810 EXPECT_THAT(result->substring()->child, Eq(flat)); in TEST()

Completed in 102 milliseconds

1...<<31323334353637383940>>...42