| /third_party/backends/backend/escl/ |
| H A D | escl_status.c | 70 * \return 0 if a xml child node is found, 1 otherwise 75 xmlNode *child = node->children; in find_nodes_s() local 77 while (child) { in find_nodes_s() 78 if (child->type == XML_ELEMENT_NODE) in find_nodes_s() 80 child = child->next; in find_nodes_s()
|
| /third_party/node/deps/v8/src/compiler/ |
| H A D | loop-analysis.h | 157 void SetParent(Loop* parent, Loop* child) { in SetParent() argument 159 parent->children_.push_back(child); in SetParent() 160 child->parent_ = parent; in SetParent() 161 child->depth_ = parent->depth_ + 1; in SetParent() 163 outer_loops_.push_back(child); in SetParent()
|
| /third_party/skia/modules/svg/src/ |
| H A D | SkSVGFeLighting.cpp | 40 for (const auto& child : fChildren) { in onMakeImageFilter() 41 switch (child->tag()) { in onMakeImageFilter() 44 ctx, fctx, static_cast<const SkSVGFeDistantLight*>(child.get())); in onMakeImageFilter() 47 ctx, fctx, static_cast<const SkSVGFePointLight*>(child.get())); in onMakeImageFilter() 50 ctx, fctx, static_cast<const SkSVGFeSpotLight*>(child.get())); in onMakeImageFilter()
|
| H A D | SkSVGFilter.cpp | 33 for (const auto& child : fChildren) { in buildFilterDAG() 34 if (!SkSVGFe::IsFilterEffect(child)) { in buildFilterDAG() 38 const auto& feNode = static_cast<const SkSVGFe&>(*child); in buildFilterDAG()
|
| /third_party/python/Lib/xml/dom/ |
| H A D | minidom.py | 90 "%s cannot be child of %s" % (repr(newChild), repr(self))) 122 "%s cannot be child of %s" % (repr(node), repr(self))) 138 "%s cannot be child of %s" % (repr(newChild), repr(self))) 181 for child in self.childNodes: 182 if child.nodeType == Node.TEXT_NODE: 183 if not child.data: 186 L[-1].nextSibling = child.nextSibling 187 if child.nextSibling: 188 child.nextSibling.previousSibling = child [all...] |
| /arkcompiler/ets_frontend/ets2panda/test/unit/public/ |
| H A D | ast_verifier_check_abstract_call_test.cpp | 60 ast->IterateRecursively([&checker, this](ark::es2panda::ir::AstNode *child) { in TEST_F() 61 if (child->IsCallExpression()) { in TEST_F() 62 auto *const call = child->AsCallExpression(); in TEST_F()
|
| /third_party/elfutils/tests/ |
| H A D | all-dwarf-ranges.c | 60 Dwarf_Die child; in walk_tree() local 62 if (dwarf_child (&die, &child) == 0) in walk_tree() 63 walk_tree (&child); in walk_tree()
|
| /third_party/exfatprogs/include/ |
| H A D | exfat_fs.h | 78 void exfat_free_ancestors(struct exfat_inode *child); 81 int exfat_resolve_path(struct path_resolve_ctx *ctx, struct exfat_inode *child); 83 struct exfat_inode *parent, struct exfat_inode *child);
|
| /third_party/node/test/parallel/ |
| H A D | test-inspector-wait-for-connection.js | 10 const child = new NodeInstance(['-e', `(${main.toString()})()`], '', ''); 11 const session = await child.connectInspectorSession(); 34 const secondSession = await child.connectInspectorSession();
|
| /third_party/ltp/testcases/kernel/mem/shmt/ |
| H A D | shmt10.c | 31 * Create a shared memory segment and fork a child. Both 32 * parent and child spin in a loop attaching and detaching 34 * iterations, the child exits and the parent deletes the 65 static int child(int); 106 child(iter); in main() 142 static int child(int iter) in child() function 151 "Error:child proc: shmat: iter %d, shmid = %d", in child() 156 NULL, "Error: child proc: shmdt: iter %d ", in child()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/ |
| H A D | 11-5.c | 26 * 2. Wait for the child proces to exit, then read the file using read() 52 pid_t child; in main() local 61 child = fork(); in main() 62 switch (child) { in main()
|
| H A D | 11-6.c | 26 * 2. Wait for the child proces to exit, then read the file using read() 54 pid_t child; in main() local 63 child = fork(); in main() 64 switch (child) { in main()
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
| H A D | 2-2.c | 125 pthread_t child; in main() local 146 pthread_create(&child, &scenarii[i].ta, threaded, in main() 177 ret = pthread_join(child, &rval); in main()
|
| H A D | 5-1.c | 143 pthread_t child; in main() local 169 pthread_create(&child, &scenarii[i].ta, threaded, in main() 200 ret = pthread_join(child, &rval); in main()
|
| /third_party/rust/crates/io-lifetimes/ |
| H A D | build.rs | 75 let mut child = cmd in can_compile() variables 82 writeln!(child.stdin.take().unwrap(), "{}", test.as_ref()).unwrap(); in can_compile() 84 child.wait().unwrap().success() in can_compile()
|
| /third_party/jerryscript/tests/jerry/fail/ |
| H A D | regression-test-issue-2775.js | 43 child = { "a" : 1 , "b" : new String ( "\nfoo" ) , $ : undefined } 44 parent = { "a" : true , "b" : child , "c" : null } 61 child = [ 1 , new String ( "\nfoo" ) , undefined ] 62 parent = [ true , child , null ]
|
| /third_party/mesa3d/src/intel/compiler/ |
| H A D | brw_fs_sel_peephole.cpp | 145 foreach_list_typed(bblock_link, child, link, &block->children) { in opt_peephole_sel() 146 if (child->block != then_block) { in opt_peephole_sel() 147 if (child->block->prev()->end()->opcode == BRW_OPCODE_ELSE) { in opt_peephole_sel() 148 else_block = child->block; in opt_peephole_sel()
|
| /third_party/node/deps/v8/tools/chrome/ |
| H A D | linux_perf.py | 155 log(f"QUITING chrome child processes after {options.timeout}s timeout") 158 for child in children: 159 if "chrome" in child.name() or "content_shell" in child.name(): 160 print(f" quitting PID={child.pid}") 161 child.send_signal(signal.SIGQUIT)
|
| /third_party/node/tools/inspector_protocol/jinja2/ |
| H A D | nativetypes.py | 75 for child in node.nodes: 80 const = child.as_const(frame.eval_ctx) 84 body.append(child) 100 body.append(child)
|
| /third_party/ltp/testcases/kernel/syscalls/fanotify/ |
| H A D | fanotify21.c | 55 "return invalid pidfd for event created by terminated child", 96 pid_t child; in do_fork() local 98 child = SAFE_FORK(); in do_fork() 99 if (child == 0) { in do_fork() 105 SAFE_WAITPID(child, &status, 0); in do_fork() 108 "child process terminated incorrectly"); in do_fork() 146 * Generate the event in either self or a child process. Event in do_test() 147 * generation in a child process is done so that the FAN_NOPIDFD case in do_test()
|
| H A D | fanotify19.c | 66 "unprivileged lisneter - events by child", 90 "unprivileged lisneter, privileged reader - events by child", 123 pid_t child; in do_fork() local 125 child = SAFE_FORK(); in do_fork() 127 if (child == 0) { in do_fork() 133 SAFE_WAITPID(child, &status, 0); in do_fork() 182 /* Generate events in either child or listening process */ in test_fanotify()
|
| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | flowgraph.c | 25 struct basic_block *child; in label_postorder() local 31 FOR_EACH_PTR_REVERSE(bb->children, child) { in label_postorder() 32 label_postorder(child, info); in label_postorder() 33 } END_FOR_EACH_PTR_REVERSE(child); in label_postorder()
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
| H A D | ScalarizeVecAndMatConstructorArgs.cpp | 95 for (TIntermNode *child : *node->getSequence()) in visitBlock() 97 ASSERT(child != nullptr); in visitBlock() 98 child->traverse(this); in visitBlock() 99 mBlockStack.back().push_back(child); in visitBlock()
|
| /third_party/toybox/toys/net/ |
| H A D | netcat.c | 46 When listening the COMMAND line is executed as a child process to handle 99 pid_t child; in netcat_main() local 159 child = 0; in netcat_main() 171 // child = forkpty(&fdout, NULL, NULL, NULL); in netcat_main() 178 if (FLAG(L)) NOEXIT(child = XVFORK()); in netcat_main() 179 if (child) { in netcat_main()
|
| /third_party/skia/modules/skottie/src/effects/ |
| H A D | SkSLEffect.cpp | 23 explicit SkSLShaderNode(sk_sp<RenderNode> child) : INHERITED({std::move(child)}) {} in SkSLShaderNode() argument 28 const auto& child = this->children()[0]; variable 29 return child->revalidate(ic, ctm);
|