| /third_party/typescript/tests/baselines/reference/ |
| H A D | unusedLocalsOnFunctionExpressionWithinFunctionExpression2.js | 4 var maker = function (child: string): void { 16 var maker = function (child) {
|
| /third_party/node/lib/internal/test_runner/ |
| H A D | runner.js | 369 const env = { __proto__: null, ...process.env, NODE_TEST_CONTEXT: 'child-v8' }; 378 const child = spawn(process.execPath, args, { __proto__: null, signal: t.signal, encoding: 'utf8', env, stdio }); 380 filesWatcher.runningProcesses.set(path, child); 381 filesWatcher.watcher.watchChildProcessModules(child, path); 387 child.on('error', (error) => { 391 child.stdout.on('data', (data) => { 395 const rl = createInterface({ __proto__: null, input: child.stderr }); 413 once(child, 'exit', { __proto__: null, signal: t.signal }), 414 finished(child.stdout, { __proto__: null, signal: t.signal }), 433 // in a child proces [all...] |
| /third_party/vk-gl-cts/executor/ |
| H A D | xeTestCase.cpp | 331 const TestNode* child = group->getChild(ndx); in addChildren() local 332 nodeSet.insert(child); in addChildren() 334 if (child->getNodeType() == TESTNODETYPE_GROUP) in addChildren() 335 addChildren(nodeSet, static_cast<const TestGroup*>(child)); in addChildren() 343 const TestNode* child = group->getChild(ndx); in removeChildren() local 344 nodeSet.erase(child); in removeChildren() 346 if (child->getNodeType() == TESTNODETYPE_GROUP) in removeChildren() 347 removeChildren(nodeSet, static_cast<const TestGroup*>(child)); in removeChildren()
|
| /third_party/skia/src/gpu/ |
| H A D | GrFragmentProcessor.h | 65 * Returns the input color, modulated by the child's alpha. 67 * output = input * child.a 70 std::unique_ptr<GrFragmentProcessor> child); 73 * Invokes child with an opaque version of the input color, then applies the input alpha to 77 std::unique_ptr<GrFragmentProcessor> child); 80 * Returns a fragment processor that generates the passed-in color, modulated by the child's 81 * RGBA color. The child's input color will be the parent's fInputColor. (Pass a null FP to use 82 * the color from fInputColor instead of a child FP.) 85 std::unique_ptr<GrFragmentProcessor> child, const SkPMColor4f& color); 88 * Returns a parent fragment processor that adopts the passed fragment processor as a child [all...] |
| /third_party/skia/third_party/externals/swiftshader/tests/regres/cov/ |
| H A D | tree.go | 151 // push into each child node 153 child := tc.Children.index(TestIndex(i)) 154 child.Spans = child.Spans.addAll(lower) 207 // TestIndex is an child test index 254 child := t.children[n.idx] 259 if len(child.children) > 0 { 260 sb.WriteString(fmt.Sprintf(":%v", child.String(s))) 269 // also optionally hold child nodes that describe coverage that differs per 270 // child tes [all...] |
| /third_party/spirv-tools/source/ |
| H A D | cfa.h | 40 bb_iter iter; ///< Iterator to the current child node being processed 202 BB* child = *top.iter; in DepthFirstTraversal() local 204 if (backedge && FindInWorkList(work_list, child->id())) { in DepthFirstTraversal() 205 backedge(top.block, child); in DepthFirstTraversal() 207 if (processed.count(child->id()) == 0) { in DepthFirstTraversal() 208 preorder(child); in DepthFirstTraversal() 210 block_info{child, std::begin(*successor_func(child))}); in DepthFirstTraversal() 211 processed.insert(child->id()); in DepthFirstTraversal()
|
| /third_party/node/test/parallel/ |
| H A D | test-child-process-exec-error.js | 28 const child = fn('does-not-exist', common.mustCall(function(err) { 33 assert.strictEqual(typeof child.pid, expectPidType);
|
| H A D | test-cluster-child-index-dgram.js | 14 function child() { function 40 child();
|
| H A D | test-cluster-child-index-net.js | 11 function child() { function 31 child();
|
| /third_party/node/benchmark/child_process/ |
| H A D | spawn-echo.js | 17 const child = spawn('echo', ['hello']); 18 child.on('exit', (code) => {
|
| /third_party/rust/crates/io-lifetimes/examples/ |
| H A D | easy-conversions.rs | 11 let mut child = Command::new("cargo") in main() variables 15 .expect("failed to execute child"); in main() 19 let mut file = File::from_into_filelike(child.stdout.take().unwrap()); in main()
|
| /third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
| H A D | nir.c | 98 ppir_node *child = NULL; in ppir_node_add_src() local 101 child = comp->var_nodes[ns->ssa->index]; in ppir_node_add_src() 102 if (child->op != ppir_op_undef) in ppir_node_add_src() 103 ppir_node_add_dep(node, child, ppir_dep_src); in ppir_node_add_src() 109 child = comp->var_nodes[(reg->index << 2) + comp->reg_base + swizzle]; in ppir_node_add_src() 111 if (!child) { in ppir_node_add_src() 112 child = ppir_node_create_reg(node->block, ppir_op_dummy, reg, in ppir_node_add_src() 114 comp->var_nodes[(reg->index << 2) + comp->reg_base + swizzle] = child; in ppir_node_add_src() 117 if (child && node != child in ppir_node_add_src() 503 ppir_node *child = block->comp->var_nodes[ns->ssa->index]; ppir_emit_tex() local [all...] |
| /third_party/mesa3d/src/amd/vulkan/winsys/amdgpu/ |
| H A D | radv_amdgpu_cs.c | 642 struct radv_amdgpu_cs *child = radv_amdgpu_cs(_child); in radv_amdgpu_cs_execute_secondary() local 646 if (parent->status != VK_SUCCESS || child->status != VK_SUCCESS) in radv_amdgpu_cs_execute_secondary() 649 for (unsigned i = 0; i < child->num_buffers; ++i) { in radv_amdgpu_cs_execute_secondary() 650 radv_amdgpu_cs_add_buffer_internal(parent, child->handles[i].bo_handle, in radv_amdgpu_cs_execute_secondary() 651 child->handles[i].bo_priority); in radv_amdgpu_cs_execute_secondary() 654 for (unsigned i = 0; i < child->num_virtual_buffers; ++i) { in radv_amdgpu_cs_execute_secondary() 655 radv_amdgpu_cs_add_buffer(&parent->base, child->virtual_buffers[i]); in radv_amdgpu_cs_execute_secondary() 664 radeon_emit(&parent->base, child->ib.ib_mc_address); in radv_amdgpu_cs_execute_secondary() 665 radeon_emit(&parent->base, child->ib.ib_mc_address >> 32); in radv_amdgpu_cs_execute_secondary() 666 radeon_emit(&parent->base, child in radv_amdgpu_cs_execute_secondary() [all...] |
| /third_party/elfutils/tests/ |
| H A D | varlocs.c | 773 Dwarf_Die child; in print_varlocs() 774 int res = dwarf_child (funcdie, &child); in print_varlocs() 778 /* We thought there was a child, but the child list was actually in print_varlocs() 786 int tag = dwarf_tag (&child); in print_varlocs() 790 print_die (&child, what, 2); in print_varlocs() 792 if (dwarf_hasattr (&child, DW_AT_location)) in print_varlocs() 795 if (dwarf_attr (&child, DW_AT_location, &attr) == NULL) in print_varlocs() 865 else if (dwarf_hasattr (&child, DW_AT_const_value)) in print_varlocs() 875 while (dwarf_siblingof (&child, in print_varlocs() 1026 Dwarf_Die child; handle_die() local [all...] |
| /third_party/skia/third_party/externals/spirv-tools/source/opt/ |
| H A D | scalar_analysis.cpp | 416 for (SENode* child : *parent) { in UpdateChildNode() 417 if (child == old_child) { in UpdateChildNode() 420 new_children.push_back(child); in UpdateChildNode() 425 for (SENode* child : new_children) { in UpdateChildNode() 426 add_node->AddChild(child); in UpdateChildNode() 459 for (SENode* child : new_children) { in BuildGraphWithoutRecurrentTerm() 460 add_node->AddChild(child); in BuildGraphWithoutRecurrentTerm() 506 // offset and coefficient manually as the child vector is sorted by ids so the in operator ==() 621 // Hash the pointers of the child nodes, each SENode has a unique pointer in operator ()() 624 for (const SENode* child in operator ()() [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| H A D | scalar_analysis.cpp | 416 for (SENode* child : *parent) { in UpdateChildNode() 417 if (child == old_child) { in UpdateChildNode() 420 new_children.push_back(child); in UpdateChildNode() 425 for (SENode* child : new_children) { in UpdateChildNode() 426 add_node->AddChild(child); in UpdateChildNode() 459 for (SENode* child : new_children) { in BuildGraphWithoutRecurrentTerm() 460 add_node->AddChild(child); in BuildGraphWithoutRecurrentTerm() 506 // offset and coefficient manually as the child vector is sorted by ids so the in operator ==() 621 // Hash the pointers of the child nodes, each SENode has a unique pointer in operator ()() 624 for (const SENode* child in operator ()() [all...] |
| /third_party/spirv-tools/source/opt/ |
| H A D | scalar_analysis.cpp | 415 for (SENode* child : *parent) { in UpdateChildNode() 416 if (child == old_child) { in UpdateChildNode() 419 new_children.push_back(child); in UpdateChildNode() 424 for (SENode* child : new_children) { in UpdateChildNode() 425 add_node->AddChild(child); in UpdateChildNode() 458 for (SENode* child : new_children) { in BuildGraphWithoutRecurrentTerm() 459 add_node->AddChild(child); in BuildGraphWithoutRecurrentTerm() 505 // offset and coefficient manually as the child vector is sorted by ids so the in operator ==() 620 // Hash the pointers of the child nodes, each SENode has a unique pointer in operator ()() 623 for (const SENode* child in operator ()() [all...] |
| /third_party/skia/src/ports/ |
| H A D | SkFontMgr_config_parser.cpp | 422 const TagHandler* child = parent->tag ? parent->tag(self, tag, attributes) : nullptr; in start_element_handler() local 423 if (child) { in start_element_handler() 424 if (child->start) { in start_element_handler() 425 child->start(self, tag, attributes); in start_element_handler() 427 self->fHandler.push_back(child); in start_element_handler() 428 XML_SetCharacterDataHandler(self->fParser, child->chars); in start_element_handler() 445 const TagHandler* child = self->fHandler.top(); in end_element_handler() local 446 if (child->end) { in end_element_handler() 447 child->end(self, tag); in end_element_handler()
|
| /third_party/skia/gm/ |
| H A D | runtimeshader.cpp | 165 builder.child("before_map") = fBefore; 166 builder.child("after_map") = fAfter; 167 builder.child("threshold_map") = fThreshold; 223 // The first version of skbug.com/11869 suffered a bug where all samples of a child were treated 229 uniform shader child; 231 half4 c = child.eval(xy) * 5; 232 c -= child.eval(xy + float2( 1, 0)); 233 c -= child.eval(xy + float2(-1, 0)); 234 c -= child.eval(xy + float2( 0, 1)); 235 c -= child [all...] |
| /third_party/f2fs-tools/fsck/ |
| H A D | dict.c | 78 * its right child C are rearranged so that the P instead becomes the left 79 * child of C. The left subtree of C is inherited as the new right subtree 599 /* rotation between parent and child preserves grandpa */ in dict_insert() 641 dnode_t *nil = dict_nil(dict), *child, *delparent = delete->parent; in dict_delete() local 671 * moving up its right child into its place. in dict_delete() 674 child = next->right; in dict_delete() 675 child->parent = nextparent; in dict_delete() 678 nextparent->left = child; in dict_delete() 681 nextparent->right = child; in dict_delete() 708 child in dict_delete() [all...] |
| /third_party/gn/src/gn/ |
| H A D | xcode_object.cc | 601 for (const auto& child : children_) { in AddSourceFile() 602 if (child->Class() != PBXFileReferenceClass) in AddSourceFile() 606 static_cast<PBXFileReference*>(child.get()); in AddSourceFile() 619 for (const auto& child : children_) { in AddSourceFile() 620 if (child->Class() != PBXGroupClass) in AddSourceFile() 623 PBXGroup* child_as_group = static_cast<PBXGroup*>(child.get()); in AddSourceFile() 654 for (const auto& child : children_) { in Visit() 655 child->Visit(visitor); in Visit() 661 for (const auto& child : children_) { in Visit() 662 child in Visit() 684 AddChildImpl(std::unique_ptr<PBXObject> child) AddChildImpl() argument [all...] |
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/types/ |
| H A D | pgo_type_generator.h | 29 static ProfileType GenerateProfileType(JSTaggedType child, ProfileType rootType) in GenerateProfileType() argument 31 CString result = JSHClass::DumpToString(child); in GenerateProfileType()
|
| /third_party/node/test/sequential/ |
| H A D | test-init.js | 25 const child = require('child_process'); 39 child.exec(path, { env: process.env }, common.mustSucceed((out) => {
|
| H A D | test-next-tick-error-spin.js | 26 if (process.argv[2] !== 'child') { 28 const child = spawn(process.execPath, [__filename, 'child'], { 32 throw new Error('child is hung'); 34 child.on('exit', common.mustCall(function(code) {
|
| /third_party/ltp/testcases/kernel/security/tomoyo/ |
| H A D | newns.c | 33 static int child(void *arg) in child() function 45 const pid_t pid = ltp_clone_quick(CLONE_NEWNS, child, (void *)argv); in main()
|