Home
last modified time | relevance | path

Searched refs:child (Results 501 - 525 of 1042) sorted by relevance

1...<<21222324252627282930>>...42

/third_party/node/deps/v8/src/compiler/backend/
H A Dspill-placer.cc55 for (const LiveRange* child = range; child != nullptr; in Add()
56 child = child->next()) { in Add()
57 if (child->spilled()) { in Add()
59 for (UseInterval* interval = child->first_interval(); interval != nullptr; in Add()
89 for (const UsePosition* pos = child->first_pos(); pos != nullptr; in Add()
/third_party/skia/modules/skottie/src/effects/
H A DDisplacementMapEffect.cpp44 uniform shader child;
55 return child.eval(xy + d.xy*d.zw);
77 static sk_sp<DisplacementNode> Make(sk_sp<RenderNode> child, in Make() argument
81 if (!child || !displ) { in Make()
85 return sk_sp<DisplacementNode>(new DisplacementNode(std::move(child), child_size, in Make()
121 DisplacementNode(sk_sp<RenderNode> child, const SkSize& child_size, in DisplacementNode() argument
123 : INHERITED({std::move(child)}) in DisplacementNode()
210 builder.child("child") = std::move(child_shader);
211 builder.child("disp
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dreg.py104 for child in parent.findall('*'):
105 if child.tag == 'remove':
107 parent.remove(child)
109 stack.append(child)
111 supportedList = child.get('supported')
116 child.set('supported', toApiName)
118 if child.get('api'):
123 if child.tag in ['type']:
124 if child.get('name') is not None:
125 definitionName = child
[all...]
/third_party/vulkan-headers/registry/
H A Dreg.py104 for child in parent.findall('*'):
105 if child.tag == 'remove':
107 parent.remove(child)
109 stack.append(child)
111 supportedList = child.get('supported')
116 child.set('supported', toApiName)
118 if child.get('api'):
123 if child.tag in ['type']:
124 if child.get('name') is not None:
125 definitionName = child
[all...]
/third_party/ltp/testcases/kernel/mem/vmtests/
H A Dstack_space.c139 int child; in runtest() local
144 if ((child = fork()) == 0) { /* child */ in runtest()
148 if (child < 0) { in runtest()
163 while ((child = wait(&status)) > 0) { in runtest()
165 tst_resm(TINFO, "\t%s[%d] exited status = 0x%x\n", prog, child, in runtest()
424 tst_resm(TINFO, "term1 - child - exiting\n"); in term()
H A Ddata_space.c151 int child; in runtest() local
157 switch (child = fork()) { in runtest()
164 allchild[i] = child; in runtest()
174 while ((child = wait(&status)) > 0) { in runtest()
176 tst_resm(TINFO, "\t%s[%d] exited status = 0x%x\n", prog, child, in runtest()
235 * NOTE: If we run this with a lot of children, the last child
239 * not the first child.
496 "\tThis is not ok for first child - check parameters.");
/third_party/node/deps/v8/src/profiler/
H A Dallocation-tracker.cc41 AllocationTraceNode* child = FindChild(function_info_index); in FindOrAddChild() local
42 if (child == nullptr) { in FindOrAddChild()
43 child = new AllocationTraceNode(tree_, function_info_index); in FindOrAddChild()
44 children_.push_back(child); in FindOrAddChild()
46 return child; in FindOrAddChild()
/third_party/protobuf/
H A Dupdate_version.py43 for child in elem.childNodes:
44 if child.nodeName == tagname:
45 return child
267 for child in children:
269 elem.appendChild(child)
/third_party/node/test/internet/
H A Dtest-inspector-help-page.js12 const child = spawnSync(process.execPath, ['--inspect', '-e', '""']);
13 const stderr = child.stderr.toString();
/third_party/node/test/parallel/
H A Dtest-async-hooks-fatal-error.js7 if (process.argv[2] === 'child') {
8 child(process.argv[3], process.argv[4]);
13 function child(type, valueType) { function
45 [ __filename, 'child', type, valueType ],
H A Dtest-internal-module-require.js76 if (process.argv[2] === 'child') {
104 const child = fork(__filename, ['child'], {
111 child.send(message);
H A Dtest-domain-nested-throw.js28 if (process.argv[2] !== 'child') {
37 const child = spawn(node, [__filename, 'child'], opt);
38 child.on('exit', function(c) {
/third_party/node/test/abort/
H A Dtest-abort-uncaught-exception.js9 if (process.argv[2] === 'child') {
10 throw new Error('child error');
16 run('', 'child', null);
17 run('--abort-on-uncaught-exception', 'child',
27 const child = spawn(node, args);
28 child.on('exit', common.mustCall(function(code, sig) {
/third_party/ltp/testcases/kernel/syscalls/ioctl/
H A Dioctl_ns01.c68 static int child(void *arg LTP_ATTRIBUTE_UNUSED) in child() function
78 if (ltp_clone(CLONE_NEWPID | SIGCHLD, &child, 0, in run()
/third_party/typescript/tests/baselines/reference/
H A DdeeplyNestedCheck.js5 child(path: string): DataSnapshot;
9 child<U extends Extract<keyof T, string>>(path: U): Snapshot<T[U]>;
/third_party/skia/modules/skottie/src/layers/shapelayer/
H A DRoundCorners.cpp25 sk_sp<sksg::GeometryNode> child) in RoundCornersAdapter()
26 : INHERITED(sksg::RoundEffect::Make(std::move(child))) { in RoundCornersAdapter()
23 RoundCornersAdapter(const skjson::ObjectValue& jround, const AnimationBuilder& abuilder, sk_sp<sksg::GeometryNode> child) RoundCornersAdapter() argument
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_sched.c323 struct ir3_sched_node *child = in schedule() local
324 container_of(edge->child, struct ir3_sched_node, dag); in schedule()
325 child->earliest_ip = MAX2(child->earliest_ip, ctx->ip + delay); in schedule()
868 struct ir3_sched_node *child = (struct ir3_sched_node *)edge->child; in dump_state() local
870 di(child->instr, " -> (%d parents) ", child->dag.parent_count); in dump_state()
1149 struct ir3_sched_node *child = (struct ir3_sched_node *)edge->child; in sched_dag_max_delay_cb() local
[all...]
/third_party/FreeBSD/sys/sys/
H A Dtree.h579 struct type *child, *parent, *old = elm; \
582 child = RB_RIGHT(elm, field); \
584 child = RB_LEFT(elm, field); \
590 child = RB_RIGHT(elm, field); \
593 if (child) \
594 RB_PARENT(child, field) = parent; \
597 RB_LEFT(parent, field) = child; \
599 RB_RIGHT(parent, field) = child; \
602 RB_ROOT(head) = child; \
627 if (child) \
[all...]
/third_party/libuv/include/uv/
H A Dtree.h533 struct type *child, *parent, *old = elm; \
536 child = RB_RIGHT(elm, field); \
538 child = RB_LEFT(elm, field); \
544 child = RB_RIGHT(elm, field); \
547 if (child) \
548 RB_PARENT(child, field) = parent; \
551 RB_LEFT(parent, field) = child; \
553 RB_RIGHT(parent, field) = child; \
556 RB_ROOT(head) = child; \
581 if (child) \
[all...]
/third_party/node/deps/uv/include/uv/
H A Dtree.h533 struct type *child, *parent, *old = elm; \
536 child = RB_RIGHT(elm, field); \
538 child = RB_LEFT(elm, field); \
544 child = RB_RIGHT(elm, field); \
547 if (child) \
548 RB_PARENT(child, field) = parent; \
551 RB_LEFT(parent, field) = child; \
553 RB_RIGHT(parent, field) = child; \
556 RB_ROOT(head) = child; \
581 if (child) \
[all...]
/third_party/python/Lib/importlib/metadata/
H A D__init__.py795 def joinpath(self, child):
796 return pathlib.Path(self.root, child)
810 return dict.fromkeys(child.split(posixpath.sep, 1)[0] for child in names)
833 for child in path.children():
834 low = child.lower()
839 self.infos[normalized].append(path.joinpath(child))
843 self.eggs[legacy_normalized].append(path.joinpath(child))
/arkcompiler/ets_frontend/ets2panda/ir/visitor/
H A DIterateAstVisitor.h83 node->Iterate([this](ir::AstNode *child) { child->Accept(this); }); in Iterate()
/third_party/musl/src/thread/powerpc64/
H A Dclone.s19 # save fn and arg to child stack
40 # we're the child. call fn(arg)
/third_party/ltp/testcases/kernel/sched/cfs-scheduler/
H A Dstarvation.c74 static void child(void) in child() function
91 child(); in do_test()
/third_party/libabigail/include/
H A Dabg-viz-dot.h20 enum type { child, parent }; enumerator
72 : node_base(__id, node_base::child, child_sty) in child_node()
85 - child classes

Completed in 14 milliseconds

1...<<21222324252627282930>>...42