| /third_party/skia/modules/skottie/src/effects/ |
| H A D | SphereEffect.cpp | 26 // This shader maps its child shader onto a sphere. To simplify things, we set it up such that: 48 uniform shader child; 80 return apply_light(EYE, N, child.eval(UV*child_scale)); 154 SphereNode(sk_sp<RenderNode> child, const SkSize& child_size) in SphereNode() argument 155 : INHERITED({std::move(child)}) in SphereNode() 179 const auto& child = this->children()[0]; in contentShader() local 180 child->revalidate(nullptr, SkMatrix::I()); in contentShader() 183 child->render(recorder.beginRecording(SkRect::MakeSize(fChildSize))); in contentShader() 201 builder.child ("child") in buildEffectShader() [all...] |
| 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);
|
| /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()
|
| /test/testfwk/xdevice/src/xdevice/_core/report/ |
| H A D | result_reporter.py | 481 for child in root: 482 child.tail = self.data_helper.LINE_BREAK_INDENT 483 if not child.get(ReportConstant.module_name) or child.get( 486 child.set(ReportConstant.module_name, module_name) 487 self._check_tests_and_unavailable(child) 489 for element in child: 492 ignored = int(child.get(ReportConstant.ignored, 0)) + 1 493 child.set(ReportConstant.ignored, "%s" % ignored) 494 test_suite_elements.append(child) [all...] |
| /third_party/libabigail/src/ |
| H A D | abg-dwarf-reader.cc | 620 get_member_child_die(const Dwarf_Die *die, Dwarf_Die *child); 5181 /// Walk the DIEs under a given die and for each child, populate the 5182 /// die -> parent map to record the child -> parent relationship 5184 /// exists between the child and the given die. 5189 /// This is done recursively as for each child DIE, this function 5208 Dwarf_Die child; in build_die_parent_relations_under() local 5209 if (dwarf_child(die, &child) != 0) in build_die_parent_relations_under() 5214 parent_of[dwarf_dieoffset(&child)] = dwarf_dieoffset(die); in build_die_parent_relations_under() 5215 if (dwarf_tag(&child) == DW_TAG_imported_unit) in build_die_parent_relations_under() 5218 if (die_die_attribute(&child, DW_AT_impor in build_die_parent_relations_under() [all...] |
| /third_party/cJSON/tests/ |
| H A D | misc_tests.c | 42 array[0].child = &elements[0]; in cjson_array_foreach_should_loop_over_arrays() 270 parent->child = &list[0]; in cjson_detach_item_via_pointer_should_detach_items() 280 TEST_ASSERT_TRUE_MESSAGE((list[2].prev == &(list[3])) && (parent->child == &(list[2])), "Didn't set the new beginning."); in cjson_detach_item_via_pointer_should_detach_items() 285 TEST_ASSERT_TRUE_MESSAGE((list[2].next == NULL) && (parent->child == &(list[2])), "Didn't set the new end"); in cjson_detach_item_via_pointer_should_detach_items() 290 TEST_ASSERT_NULL_MESSAGE(parent->child, "Child of the parent wasn't set to NULL."); in cjson_detach_item_via_pointer_should_detach_items() 322 TEST_ASSERT_TRUE(array->child == &(replacements[0])); in cjson_replace_item_via_pointer_should_replace_items() 342 cJSON *child = NULL; in cjson_replace_item_in_object_should_preserve_name() local 346 child = cJSON_CreateNumber(1); in cjson_replace_item_in_object_should_preserve_name() 347 TEST_ASSERT_NOT_NULL(child); in cjson_replace_item_in_object_should_preserve_name() 351 flag = cJSON_AddItemToObject(root, "child", chil in cjson_replace_item_in_object_should_preserve_name() [all...] |
| /third_party/FreeBSD/sys/sys/ |
| H A D | bus.h | 177 * for their child devices. 243 int bus_generic_child_present(device_t dev, device_t child); 247 int bus_generic_get_domain(device_t dev, device_t child, int *domain); 250 int bus_print_child_header(device_t dev, device_t child); 251 int bus_print_child_domain(device_t dev, device_t child); 252 int bus_print_child_footer(device_t dev, device_t child); 253 int bus_generic_print_child(device_t dev, device_t child); 255 int bus_generic_read_ivar(device_t dev, device_t child, int which, 258 int bus_generic_resume_child(device_t dev, device_t child); 262 int bus_generic_suspend_child(device_t dev, device_t child); [all...] |
| /third_party/libwebsockets/lib/misc/fts/ |
| H A D | trie-fd.c | 53 int child; member 348 m += s[n].ch[s[n].child - 1].name_length; in ac_record() 369 int w = s[n].child - 1; in ac_record() 378 * deduct this child's instance weight from his antecdents to track in ac_record() 383 s[n].ch[s[n].child - 1].child_agg -= (int)instances; in ac_record() 477 /* gets set if any child COULD match needle if it went on */ in lws_fts_search() 499 * "credible" means at least one child matches in lws_fts_search() 509 * knowledge this child is not on the in lws_fts_search() 590 } /* for each child */ in lws_fts_search() 804 * the child w in lws_fts_search() [all...] |
| /third_party/mesa3d/src/compiler/nir/ |
| H A D | nir_schedule.c | 201 * We add @before as a child of @after, so that DAG heads are the outputs of 828 nir_schedule_node *child = (nir_schedule_node *)edge->child; in dump_state() local 830 fprintf(stderr, " -> (%d parents) ", child->dag.parent_count); in dump_state() 831 nir_print_instr(child->instr, stderr); in dump_state() 953 nir_schedule_node *child = (nir_schedule_node *)edge->child; in nir_schedule_mark_node_scheduled() local 955 child->ready_time = MAX2(child->ready_time, in nir_schedule_mark_node_scheduled() 958 if (child in nir_schedule_mark_node_scheduled() 1055 nir_schedule_node *child = (nir_schedule_node *)edge->child; nir_schedule_dag_max_delay_cb() local [all...] |
| /third_party/node/deps/v8/src/profiler/ |
| H A D | heap-snapshot-generator.h | 140 V8_INLINE HeapGraphEdge* child(int i); 171 HeapGraphEdge::Type type, HeapEntry* child, in SetIndexedAutoIndexReference() 174 SetIndexedReference(type, children_count_ + 1, child, generator, in SetIndexedAutoIndexReference() 178 const char* description, HeapEntry* child, 463 Object child, int field_offset); 465 const char* reference_name, Object child); 466 void SetElementReference(HeapEntry* parent_entry, int index, Object child); 468 Object child, int field_offset = -1); 469 void SetInternalReference(HeapEntry* parent_entry, int index, Object child, 472 int index, Object child, in 170 SetIndexedAutoIndexReference( HeapGraphEdge::Type type, HeapEntry* child, HeapSnapshotGenerator* generator, ReferenceVerification verification = kVerify) SetIndexedAutoIndexReference() argument [all...] |
| /third_party/python/Lib/idlelib/ |
| H A D | tree.py | 140 for child in self.children: 141 child.deselecttree() 215 child = self.__class__(self.canvas, self, item) 216 self.children.append(child) 220 for child in self.children: 223 cy = child.draw(cx, cy) 224 if child.item._IsExpandable(): 225 if child.state == 'expanded': 227 callback = child.collapse 230 callback = child [all...] |
| /third_party/skia/third_party/externals/microhttpd/src/testspdy/ |
| H A D | test_notls.c | 37 pid_t child; variable 786 killchild(child,"wrong cls"); in standard_request_handler() 812 killchild(child,"wrong cls"); in session_closed_handler() 817 //killchild(child,"wrong by_client"); in session_closed_handler() 827 killchild(child,"session is NULL"); in session_closed_handler() 838 //child process 923 killchild(child, "select error"); in parentproc() 934 while(waitpid(child,&childstatus,WNOHANG) != child); in parentproc() 952 child in main() [all...] |
| H A D | test_request_response.c | 37 pid_t child; variable 838 killchild(child,"wrong cls"); in standard_request_handler() 869 killchild(child,"wrong cls"); in session_closed_handler() 874 //killchild(child,"wrong by_client"); in session_closed_handler() 884 killchild(child,"session is NULL"); in session_closed_handler() 895 //child process 979 killchild(child, "select error"); in parentproc() 990 while(waitpid(child,&childstatus,WNOHANG) != child); in parentproc() 1008 child in main() [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-inspector-stops-no-file.js | 6 const child = spawn(process.execPath, 11 child.kill();
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | unusedLocalsOnFunctionDeclarationWithinFunctionDeclaration1.js | 4 function maker(child: string): void { 13 function maker(child) {
|
| H A D | unusedLocalsOnFunctionDeclarationWithinFunctionExpression1.js | 4 function maker(child: string): void { 13 function maker(child) {
|
| H A D | unusedLocalsOnFunctionExpressionWithinFunctionDeclaration1.js | 4 var maker = function (child: string): void { 13 var maker = function (child) {
|