Home
last modified time | relevance | path

Searched refs:child (Results 301 - 325 of 1042) sorted by relevance

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

/third_party/libevdev/doc/html/search/
H A Dsearch.js197 var child = win.childNodes[i]; // get span within a
198 if (child.className=='SelectItem')
200 child.focus();
247 var child = win.childNodes[i]; // get span within a
248 if (child.className=='SelectItem')
262 var child = win.childNodes[i]; // get span within a
263 if (child.className=='SelectItem')
265 var node = child.firstChild;
624 var child = this.FindChildElement(focusItem.parentNode.parentNode.id);
625 if (child
[all...]
/third_party/skia/src/gpu/effects/
H A DGrSkSLFP.h82 std::unique_ptr<GrFragmentProcessor> child; member
84 static GrIgnoreOptFlags IgnoreOptFlags(std::unique_ptr<GrFragmentProcessor> child) { in IgnoreOptFlags() argument
85 return {std::move(child)}; in IgnoreOptFlags()
96 * Both factories support a single 'input' FP, as well as a collection of other 'child' FPs.
97 * The 'child' FPs correspond to the children declared in the effect's SkSL. The inputFP is
99 * child - if present, it's evaluated to produce the input color fed to the SkSL. Otherwise,
125 * uniform shader child;
131 * std::unique_ptr<GrFragmentProcessor> child = ...;
135 * "child", std::move(child),
216 appendArgs(uint8_t* uniformDataPtr, UniformFlags* uniformFlagsPtr, const char* name, std::unique_ptr<GrFragmentProcessor>&& child, Args&&... remainder) appendArgs() argument
228 appendArgs(uint8_t* uniformDataPtr, UniformFlags* uniformFlagsPtr, const char* name, GrIgnoreOptFlags&& child, Args&&... remainder) appendArgs() argument
317 checkArgs(uniform_iterator uIter, uniform_iterator uEnd, child_iterator cIter, child_iterator cEnd, const char* name, std::unique_ptr<GrFragmentProcessor>&& child, Args&&... remainder) checkArgs() argument
331 checkArgs(uniform_iterator uIter, uniform_iterator uEnd, child_iterator cIter, child_iterator cEnd, const char* name, GrIgnoreOptFlags&& child, Args&&... remainder) checkArgs() argument
[all...]
/third_party/skia/third_party/externals/oboe/docs/reference/search/
H A Dsearch.js194 var child = win.childNodes[i]; // get span within a
195 if (child.className=='SelectItem')
197 child.focus();
245 var child = win.childNodes[i]; // get span within a
246 if (child.className=='SelectItem')
260 var child = win.childNodes[i]; // get span within a
261 if (child.className=='SelectItem')
263 var node = child.firstChild;
622 var child = this.FindChildElement(focusItem.parentNode.parentNode.id);
623 if (child
[all...]
/third_party/skia/src/pathops/
H A DSkPathOpsAsWinding.cpp297 bool checkContainerChildren(Contour* parent, Contour* child) {
298 for (auto grandChild : child->fChildren) {
299 if (!checkContainerChildren(child, grandChild)) {
304 if (!containerContains(*parent, *child)) {
311 bool markReverse(Contour* parent, Contour* child) {
313 for (auto grandChild : child->fChildren) {
314 reversed |= markReverse(grandChild->fContained ? child : parent, grandChild);
316 if (parent && parent->fDirection == child->fDirection) {
317 child->fReverse = true;
318 child
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/
H A Doma_dm_client.c245 xml_node_t *info, *child, *replace; in add_replace_devinfo() local
262 xml_node_for_each_child(ctx->xml, child, info) { in add_replace_devinfo()
263 xml_node_for_each_check(ctx->xml, child); in add_replace_devinfo()
264 name = xml_node_get_localname(ctx->xml, child); in add_replace_devinfo()
266 txt = xml_node_get_text(ctx->xml, child); in add_replace_devinfo()
907 * list of children node names in Results element. The child list type is in oma_dm_get()
997 xml_node_t *syncml, *syncbody, *hdr, *body, *child; in oma_dm_process() local
1023 xml_node_for_each_child(ctx->xml, child, hdr) { in oma_dm_process()
1024 xml_node_for_each_check(ctx->xml, child); in oma_dm_process()
1025 name = xml_node_get_localname(ctx->xml, child); in oma_dm_process()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/
H A Doma_dm_client.c245 xml_node_t *info, *child, *replace; in add_replace_devinfo() local
262 xml_node_for_each_child(ctx->xml, child, info) { in add_replace_devinfo()
263 xml_node_for_each_check(ctx->xml, child); in add_replace_devinfo()
264 name = xml_node_get_localname(ctx->xml, child); in add_replace_devinfo()
266 txt = xml_node_get_text(ctx->xml, child); in add_replace_devinfo()
907 * list of children node names in Results element. The child list type is in oma_dm_get()
997 xml_node_t *syncml, *syncbody, *hdr, *body, *child; in oma_dm_process() local
1023 xml_node_for_each_child(ctx->xml, child, hdr) { in oma_dm_process()
1024 xml_node_for_each_check(ctx->xml, child); in oma_dm_process()
1025 name = xml_node_get_localname(ctx->xml, child); in oma_dm_process()
[all...]
/third_party/node/test/js-native-api/test_instance_data/
H A Dtest.js23 // When launched as a script, run tests in either a child process or in a
28 function checkOutput(child) {
29 assert.strictEqual(child.status, 0);
31 (child.stdout.toString().split(/\r\n?|\n/) || [])[0],
35 // Run tests in a child process.
36 checkOutput(requireAs(__filename, ['--expose-gc'], runOptions, 'child'));
38 // Run tests in a worker thread in a child process.
/third_party/node/test/parallel/
H A Dtest-child-process-exec-kill-throws.js7 if (process.argv[2] === 'child') {
21 const cmd = `"${process.execPath}" "${__filename}" child`;
24 const child = cp.exec(cmd, options, common.mustCall((err, stdout, stderr) => {
29 assert.strictEqual(child.killed, true);
H A Dtest-child-process-internal.js31 if (process.argv[2] === 'child') {
43 const child = fork(process.argv[1], ['child']);
45 child.once('message', common.mustCall(function(data) {
49 child.once('internalMessage', common.mustCall(function(data) {
/third_party/node/test/wasi/
H A Dtest-wasi-not-started.js4 if (process.argv[2] === 'wasi-child') {
30 const child = cp.spawnSync(process.execPath, [
32 'wasi-child',
36 assert.strictEqual(child.signal, null);
37 assert.strictEqual(child.status, 0);
/third_party/node/benchmark/child_process/
H A Dchild-process-read-ipc.js2 if (process.argv[2] === 'child') {
26 const child = spawn(process.argv[0],
27 [process.argv[1], 'child', len], options);
30 child.on('message', (msg) => { bytes += msg.length; });
33 child.kill();
/third_party/mesa3d/src/util/
H A Ddag.h36 struct dag_node *child; member
55 void dag_add_edge(struct dag_node *parent, struct dag_node *child, uintptr_t data);
56 void dag_add_edge_max_data(struct dag_node *parent, struct dag_node *child, uintptr_t data);
/third_party/skia/modules/sksg/include/
H A DSkSGOpacityEffect.h21 static sk_sp<OpacityEffect> Make(sk_sp<RenderNode> child, float opacity = 1) { in Make() argument
22 return child ? sk_sp<OpacityEffect>(new OpacityEffect(std::move(child), opacity)) : nullptr; in Make()
H A DSkSGMaskEffect.h28 static sk_sp<MaskEffect> Make(sk_sp<RenderNode> child, sk_sp<RenderNode> mask, in Make() argument
30 return (child && mask) in Make()
31 ? sk_sp<MaskEffect>(new MaskEffect(std::move(child), std::move(mask), mode)) in Make()
/third_party/rust/crates/rustix/tests/process/
H A Dwait.rs7 // `test_wait` waits for the child process spawned in `test_waitpid`, causing
13 let child = Command::new("yes") in test_waitpid()
17 .expect("failed to execute child"); in test_waitpid()
18 unsafe { kill(child.id() as _, SIGSTOP) }; in test_waitpid()
20 let pid = unsafe { process::Pid::from_raw(child.id() as _) }; in test_waitpid()
/third_party/node/tools/gyp/pylib/gyp/
H A Dxcodeproj_file.py254 hashable value into its child, and it can do so by appending
262 parent: The object's parent. This is set by a parent XCObject when a child
452 for child in self.Children():
453 child.ComputeIDs(recursive, overwrite, child_hash)
507 for child in children:
508 descendants.extend(child.Descendants())
855 # Set up the child's back-reference to this object. Don't use |value|
1164 actual child XCHierarchicalElement objects.
1166 PBXVariantGroup children to the actual child PBXVariantGroup objects.
1183 for child i
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dxcodeproj_file.py254 hashable value into its child, and it can do so by appending
262 parent: The object's parent. This is set by a parent XCObject when a child
452 for child in self.Children():
453 child.ComputeIDs(recursive, overwrite, child_hash)
507 for child in children:
508 descendants.extend(child.Descendants())
855 # Set up the child's back-reference to this object. Don't use |value|
1164 actual child XCHierarchicalElement objects.
1166 PBXVariantGroup children to the actual child PBXVariantGroup objects.
1183 for child i
[all...]
/third_party/node/test/fixtures/wpt/WebCryptoAPI/
H A Dalgorithm-discards-context.https.window.js7 let {child, t} = tests[testId];
9 document.body.removeChild(child);
28 let child = document.createElement("iframe");
29 tests[testId] = {t, child};
30 document.body.appendChild(child);
33 child.contentDocument.body.appendChild(script);
/third_party/ltp/testcases/kernel/syscalls/ipc/semctl/
H A Dsemctl06.c96 int count, child, status, nwait; in main() local
134 while ((child = wait(&status)) > 0) { in main()
137 child, status); in main()
166 int count, child, nwait; in dotest() local
208 while ((child = wait(&status)) > 0) { in dotest()
211 prog, child, status); in dotest()
/third_party/skia/modules/sksg/src/
H A DSkSGRenderNode.cpp227 for (const auto& child : fChildren) { in CustomRenderNode()
228 this->observeInval(child); in CustomRenderNode()
233 for (const auto& child : fChildren) { in ~CustomRenderNode()
234 this->unobserveInval(child); in ~CustomRenderNode()
239 for (const auto& child : fChildren) { in hasChildrenInval()
240 if (NodePriv::HasInval(child)) { in hasChildrenInval()
/third_party/ltp/testcases/kernel/mce-test/tsrc/
H A Dttranshuge.c353 pid_t child; in main() local
361 /* Fork a child process for test */ in main()
362 child = fork(); in main()
363 if (child < 0) { in main()
364 print_err("Failed to fork child process.\n"); in main()
368 if (child == 0) { in main()
408 if (waitid(P_PID, child, &sig, WEXITED) < 0) { in main()
409 print_err("Failed to wait child process.\n"); in main()
/third_party/ltp/testcases/kernel/mce-test/hwpoison/
H A Dttranshuge.c353 pid_t child; in main() local
361 /* Fork a child process for test */ in main()
362 child = fork(); in main()
363 if (child < 0) { in main()
364 print_err("Failed to fork child process.\n"); in main()
368 if (child == 0) { in main()
408 if (waitid(P_PID, child, &sig, WEXITED) < 0) { in main()
409 print_err("Failed to wait child process.\n"); in main()
/third_party/ltp/tools/sparse/sparse-src/
H A Dgraph.c66 struct basic_block *child; in graph_ep() local
107 FOR_EACH_PTR(bb->children, child) { in graph_ep()
108 printf(" bb%p -> bb%p [op=br, %s];\n", bb, child, in graph_ep()
109 (bb->pos.line > child->pos.line) ? "weight=5" : "weight=10"); in graph_ep()
110 } END_FOR_EACH_PTR(child); in graph_ep()
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
H A Doptimize.c129 gpir_alu_node *child = gpir_node_to_alu(alu->children[0]); in optimize_not() local
130 replace = child->children[0]; in optimize_not()
136 gpir_alu_node *child = gpir_node_to_alu(alu->children[0]); in optimize_not() local
140 new->children[0] = child->children[0]; in optimize_not()
141 new->children[1] = child->children[1]; in optimize_not()
/third_party/node/test/js-native-api/test_general/
H A DtestEnvCleanup.js3 if (process.argv[2] === 'child') {
41 const child = spawnSync(process.execPath, [__filename, 'child'], {
45 // Grab the child's output and construct an object whose keys are the rows of
49 child.stdout.toString().split(/\r\n|\r|\n/g).reduce((obj, item) =>
55 // Ensure that the child exited successfully.
56 assert.strictEqual(child.status, 0);

Completed in 15 milliseconds

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