Home
last modified time | relevance | path

Searched refs:child (Results 326 - 350 of 1042) sorted by relevance

1...<<11121314151617181920>>...42

/third_party/skia/modules/sksg/include/
H A DSkSGClipEffect.h23 static sk_sp<ClipEffect> Make(sk_sp<RenderNode> child, sk_sp<GeometryNode> clip, in Make() argument
25 return (child && clip) in Make()
26 ? sk_sp<ClipEffect>(new ClipEffect(std::move(child), std::move(clip), aa)) in Make()
/third_party/vk-gl-cts/framework/randomshaders/
H A DrsgExpressionGenerator.cpp73 Expression* child = curExpr->createNextChild(m_state); in generate() local
75 if (child) in generate()
77 m_expressionStack.push_back(child); in generate()
/arkcompiler/ets_runtime/ecmascript/compiler/pgo_type/
H A Dpgo_type_manager.cpp68 for (auto& child: root.second) { in GetSymbolCountFromHClassData()
69 if (!JSTaggedValue(child.second).IsJSHClass()) { in GetSymbolCountFromHClassData()
72 JSHClass* hclass = JSHClass::Cast(JSTaggedValue(child.second).GetTaggedObject()); in GetSymbolCountFromHClassData()
97 for (auto& child: root.second) { in GenSymbolInfo()
98 if (!JSTaggedValue(child.second).IsJSHClass()) { in GenSymbolInfo()
101 ProfileType childType = child.first; in GenSymbolInfo()
102 JSHClass* hclass = JSHClass::Cast(JSTaggedValue(child.second).GetTaggedObject()); in GenSymbolInfo()
142 for (auto& child: root.second) { in GenHClassInfo()
143 ProfileType childType = child.first; in GenHClassInfo()
144 JSTaggedType hclass = child in GenHClassInfo()
[all...]
/third_party/jinja2/
H A Didtracking.py179 for child in node.iter_child_nodes():
180 self.sym_visitor.visit(child)
191 for child in node.body:
192 self.sym_visitor.visit(child)
195 for child in node.iter_child_nodes(exclude=("call",)):
196 self.sym_visitor.visit(child)
199 for child in node.body:
200 self.sym_visitor.visit(child)
225 for child in node.body:
226 self.sym_visitor.visit(child)
[all...]
/third_party/node/deps/v8/third_party/jinja2/
H A Didtracking.py156 for child in node.iter_child_nodes():
157 self.sym_visitor.visit(child)
168 for child in node.body:
169 self.sym_visitor.visit(child)
172 for child in node.iter_child_nodes(exclude=("call",)):
173 self.sym_visitor.visit(child)
176 for child in node.body:
177 self.sym_visitor.visit(child)
198 for child in node.body:
199 self.sym_visitor.visit(child)
[all...]
/third_party/node/tools/inspector_protocol/jinja2/
H A Didtracking.py157 for child in node.iter_child_nodes():
158 self.sym_visitor.visit(child)
165 for child in node.body:
166 self.sym_visitor.visit(child)
169 for child in node.iter_child_nodes(exclude=('call',)):
170 self.sym_visitor.visit(child)
173 for child in node.body:
174 self.sym_visitor.visit(child)
195 for child in node.body:
196 self.sym_visitor.visit(child)
[all...]
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
H A Dcontainer.js41 _proto.index = function index(child) {
42 if (typeof child === 'number') {
43 return child;
45 return this.nodes.indexOf(child);
47 _proto.removeChild = function removeChild(child) {
48 child = this.index(child);
49 this.at(child).parent = undefined;
50 this.nodes.splice(child, 1);
54 if (index >= child) {
[all...]
/third_party/ltp/testcases/kernel/syscalls/kill/
H A Dkill10.c100 * SIGHUP -> Reset child signal counter
356 /* reply to child on USR2 */ in setup()
437 * fork_pgrps() forks off a child, changes it's pgrp, then continues
441 pid_t child; in fork_pgrps() local
452 switch (child = fork()) { in fork_pgrps()
464 child_checklist[child_checklist_total++].pid = child; in fork_pgrps()
465 setpgid(child, child); in fork_pgrps()
468 child); in fork_pgrps()
469 kill(child, SIGALR in fork_pgrps()
680 pid_t child; fork_procs() local
[all...]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
H A D3-2.c105 static sem_t semsync[2]; /* These semaphores will only be used in child process! */
178 pid_t child, ctrl; in test_stack() local
186 child = fork(); /* We'll test the feature in another process as this test may segfault */ in test_stack()
188 if (child == -1) { in test_stack()
193 if (child != 0) { /* father */ in test_stack()
194 /* Just wait for the child and check its return value */ in test_stack()
195 ctrl = waitpid(child, &status, 0); in test_stack()
196 if (ctrl != child) { in test_stack()
208 ("The child process returned unresolved status\n"); in test_stack()
211 output("The child proces in test_stack()
524 pthread_t child; main() local
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Didtracking.py156 for child in node.iter_child_nodes():
157 self.sym_visitor.visit(child)
168 for child in node.body:
169 self.sym_visitor.visit(child)
172 for child in node.iter_child_nodes(exclude=("call",)):
173 self.sym_visitor.visit(child)
176 for child in node.body:
177 self.sym_visitor.visit(child)
198 for child in node.body:
199 self.sym_visitor.visit(child)
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_ring.h83 // `offset_type` is the type for the data offset inside a child rep's data.
94 // The maximum # of child nodes that can be hosted inside a CordRepRing.
115 static CordRepRing* Create(CordRep* child, size_t extra = 0);
141 // Returns the child pointer of entry `index`.
153 // Appends the provided child node to the `rep` instance.
154 // Adopts a reference from `rep` and `child` which may not be null.
155 // If the provided child is a FLAT or EXTERNAL node, or a SUBSTRING node
158 // If the provided child is a RING or CONCAT tree, or a SUBSTRING of a RING or
159 // CONCAT tree, then all child nodes not excluded by any start offset or
161 static CordRepRing* Append(CordRepRing* rep, CordRep* child);
[all...]
/third_party/selinux/libsepol/src/
H A Dhierarchy.c283 uint32_t child, uint32_t parent, uint32_t src, in bounds_check_rule()
297 if (ebitmap_get_bit(&p->attr_type_map[src - 1], child - 1)) { in bounds_check_rule()
312 rc = bounds_add_bad(handle, child, i+1, class, d, bad); in bounds_check_rule()
324 cond_av_list_t *rules, uint32_t child, in bounds_check_cond_rules()
338 child, parent, key->source_type, in bounds_check_cond_rules()
352 uint32_t child; member
366 return bounds_check_rule(a->handle, a->p, NULL, a->cur_avtab, a->child, in bounds_check_rule_callback()
374 uint32_t child, uint32_t parent, in bounds_check_child_rules()
384 args.child = child; in bounds_check_child_rules()
281 bounds_check_rule(sepol_handle_t *handle, policydb_t *p, avtab_t *global_avtab, avtab_t *cur_avtab, uint32_t child, uint32_t parent, uint32_t src, uint32_t tgt, uint32_t class, uint32_t data, avtab_ptr_t *bad, int *numbad) bounds_check_rule() argument
322 bounds_check_cond_rules(sepol_handle_t *handle, policydb_t *p, avtab_t *global_avtab, avtab_t *cond_avtab, cond_av_list_t *rules, uint32_t child, uint32_t parent, avtab_ptr_t *bad, int *numbad) bounds_check_cond_rules() argument
371 bounds_check_child_rules(sepol_handle_t *handle, policydb_t *p, avtab_t *global_avtab, struct bounds_cond_info *cond_info, uint32_t child, uint32_t parent, avtab_ptr_t *bad, int *numbad) bounds_check_child_rules() argument
413 bounds_check_type(sepol_handle_t *handle, policydb_t *p, uint32_t child, uint32_t parent, avtab_ptr_t *bad, int *numbad) bounds_check_type() argument
439 bounds_report(sepol_handle_t *handle, policydb_t *p, uint32_t child, uint32_t parent, avtab_ptr_t cur) bounds_report() argument
[all...]
/third_party/gn/src/gn/
H A Dparse_tree.cc23 const char kJsonNodeChild[] = "child";
320 base::Value child(base::Value::Type::LIST); in GetJSONNode()
322 child.GetList().push_back(subscript_->GetJSONNode()); in GetJSONNode()
325 child.GetList().push_back(member_->GetJSONNode()); in GetJSONNode()
328 dict.SetKey(kJsonNodeChild, std::move(child)); in GetJSONNode()
333 const base::Value* child = value.FindKey(kJsonNodeChild); \
334 if (!child || !child->is_list()) { \
345 const base::Value::ListStorage& children = child->GetList(); in NewFromJSON()
518 base::Value child(bas in GetJSONNode()
[all...]
/third_party/node/test/fixtures/wpt/resources/
H A Dchannel.sub.js758 * array) containing a serialized representation of the child
861 for (let child of item) {
862 queue.push({item: child, target: serialized});
867 for (let [targetName, child] of Object.entries(item)) {
868 queue.push({item: child, target: serialized, targetName});
1029 for (let child of value) {
1030 queue.push({item: child, target: newTarget});
1036 for (let child of value) {
1037 queue.push({item: child, target: newTarget});
1043 for (let [targetName, child] o
[all...]
/third_party/vk-gl-cts/executor/tools/
H A DxeCommandLineExecutor.cpp309 const xe::TestNode* child = group.getChild(childNdx); in addMatchingCases() local
310 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; in addMatchingCases()
311 const string fullPath = child->getFullPath(); in addMatchingCases()
318 addMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter); in addMatchingCases()
322 DE_ASSERT(child->getNodeType() == xe::TESTNODETYPE_TEST_CASE); in addMatchingCases()
323 testSet.add(child); in addMatchingCases()
333 const xe::TestNode* child = group.getChild(childNdx); in removeMatchingCases() local
334 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; in removeMatchingCases()
335 const string fullPath = child->getFullPath(); in removeMatchingCases()
342 removeMatchingCases(static_cast<const xe::TestGroup&>(*child), testSe in removeMatchingCases()
[all...]
/third_party/alsa-utils/topology/
H A Dpre-process-dapm.c170 snd_config_t *temp_cfg, *child, *class_cfg, *n; in tplg_pp_get_widget_name() local
195 ret = tplg_config_make_add(&child, class_name, SND_CONFIG_TYPE_COMPOUND, temp_cfg); in tplg_pp_get_widget_name()
293 snd_config_t *top, *obj, *cfg, *route, *child, *parent_obj; in tplg_build_dapm_route_object() local
410 ret = tplg_config_make_add(&child, "index", SND_CONFIG_TYPE_INTEGER, route); in tplg_build_dapm_route_object()
416 ret = snd_config_set_integer(child, index); in tplg_build_dapm_route_object()
430 ret = tplg_config_make_add(&child, "0", SND_CONFIG_TYPE_STRING, cfg); in tplg_build_dapm_route_object()
443 ret = snd_config_set_string(child, line_str); in tplg_build_dapm_route_object()
/third_party/node/test/sequential/
H A Dtest-module-loading.js248 const child = require('../fixtures/module-require/child/');
249 assert.strictEqual(child.loaded, parent.loaded);
270 const children = module.children.reduce(function red(set, child) {
271 if (visited.has(child)) return set;
272 visited.add(child);
273 let id = path.relative(path.dirname(__dirname), child.id);
275 set[id] = child.children.reduce(red, {});
324 'fixtures/module-require/child/index.js': {
325 'fixtures/module-require/child/node_module
[all...]
/third_party/mesa3d/src/mapi/glapi/gen/
H A DglX_server_table.py147 # If all of the child nodes are non-empty leaf nodes, pull
182 for child in children:
183 if child[1] == []:
222 child_index += child[2]
229 for child in children:
230 if child[1] != []:
231 self.dump_tree(child, base_opcode, remaining_bits - M, child_index, depth + 1)
232 child_index += child[2]
249 # child nodes. For leaf nodes, the followign 2^M values are
252 # If an inner node's child inde
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dstorage.c217 struct basic_block *child; in set_up_bb_storage() local
219 FOR_EACH_PTR(bb->children, child) { in set_up_bb_storage()
221 FOR_EACH_PTR(child->needs, pseudo) { in set_up_bb_storage()
225 child_in = lookup_storage(child, pseudo, STOR_IN); in set_up_bb_storage()
229 add_storage(parent_out, child, pseudo, STOR_IN); in set_up_bb_storage()
243 add_storage(parent_out, child, pseudo, STOR_IN); in set_up_bb_storage()
245 } END_FOR_EACH_PTR(child); in set_up_bb_storage()
/third_party/mesa3d/src/util/
H A Dsparse_array.c178 uintptr_t child = p_atomic_read(&children[child_idx]); in util_sparse_array_get() local
180 if (unlikely(!child)) { in util_sparse_array_get()
181 child = _util_sparse_array_node_alloc(arr, node_level - 1); in util_sparse_array_get()
182 child = _util_sparse_array_set_or_free_node(&children[child_idx], in util_sparse_array_get()
183 NULL_NODE, child); in util_sparse_array_get()
186 node_data = _util_sparse_array_node_data(child); in util_sparse_array_get()
187 node_level = _util_sparse_array_node_level(child); in util_sparse_array_get()
/third_party/skia/tests/
H A DSkDSLRuntimeEffectTest.cpp54 SkRuntimeShaderBuilder::BuilderChild child(skstd::string_view name) { in child() function in DSLTestEffect
55 return fBuilder->child(SkString(name).c_str()); in child()
252 // Sampling a null child should return the paint color in test_RuntimeEffect_Shaders()
255 GlobalVar child(kUniform_Modifier, kShader_Type, "child"); in test_RuntimeEffect_Shaders()
256 Declare(child); in test_RuntimeEffect_Shaders()
259 Return(child.eval(p2)) in test_RuntimeEffect_Shaders()
262 effect.child(child.name()) = nullptr; in test_RuntimeEffect_Shaders()
/third_party/node/test/parallel/
H A Dtest-child-process-bad-stdio.js7 if (process.argv[2] === 'child') {
12 // Monkey patch spawn() to create a child process normally, but destroy the
30 const cmd = `"${process.execPath}" "${__filename}" child`;
35 // Verify that normal execution of a child process is handled.
47 const child = createChild({}, (err, stdout, stderr) => {
53 child.emit('error', error);
H A Dtest-child-process-fork-dgram.js25 // sending a fd representing a UDP socket to the child and sending messages
27 // child process.
32 common.skip('Sending dgram sockets to child processes is not supported');
38 if (process.argv[2] === 'child') {
55 const child = fork(__filename, ['child']);
68 child.send('server', parentServer);
70 child.on('message', (msg) => {
83 // Both the parent and the child got at least one message,
H A Dtest-child-process-fork-exec-path.js55 const child = fork(__filename, { execPath: copyPath, env: envCopy });
56 child.on('message', common.mustCall(function(recv) {
59 child.on('exit', common.mustCall(function(code) {
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/
H A Dvariable_mutator.js18 const child = path.find(p => p.parent && babelTypes.isFunction(p.parent));
19 return child && child.parentKey === 'params';

Completed in 17 milliseconds

1...<<11121314151617181920>>...42