| /third_party/skia/src/sksl/ir/ |
| H A D | SkSLChildCall.cpp | 28 return std::make_unique<ChildCall>(fLine, &this->type(), &this->child(), std::move(cloned)); in clone() 32 String result = String(this->child().name()) + ".eval("; in description() 44 const Variable& child, in call_signature_is_valid() 50 switch (child.type().typeKind()) { in call_signature_is_valid() 73 const Variable& child, in Make() 75 SkASSERT(call_signature_is_valid(context, child, arguments)); in Make() 76 return std::make_unique<ChildCall>(line, returnType, &child, std::move(arguments)); in Make() 43 call_signature_is_valid(const Context& context, const Variable& child, const ExpressionArray& arguments) call_signature_is_valid() argument 70 Make(const Context& context, int line, const Type* returnType, const Variable& child, ExpressionArray arguments) Make() argument
|
| /third_party/ltp/testcases/kernel/controllers/pids/ |
| H A D | pids.sh | 199 tst_res TINFO "the number of all child cgroup tasks larger than its parent limit" 210 mkdir $testpath/child$i 211 start_pids_tasks2_path $testpath/child$i $lim 226 pids_task1 "$testpath/child$i/$task_list" 230 tst_res TPASS "child$i cgroup fork failed as expected" 232 tst_res TFAIL "child$i cgroup fork didn't fail despite the limit" 234 tst_res TBROK "child$i cgroup pids_task1 failed" 239 stop_pids_tasks_path $testpath/child$i 240 rmdir $testpath/child$i 248 tst_res TINFO "set child cgrou [all...] |
| /third_party/skia/third_party/externals/spirv-tools/source/opt/ |
| H A D | scalar_analysis_nodes.h | 64 virtual inline void AddChild(SENode* child) { in AddChild() argument 67 assert(false && "Trying to add a child node to a constant!"); in AddChild() 70 // Find the first point in the vector where |child| is greater than the node in AddChild() 72 auto find_first_less_than = [child](const SENode* node) { in AddChild() 73 return child->unique_id_ <= node->unique_id_; in AddChild() 80 children_.insert(position, child); in AddChild() 98 // Return the child node at |index|. 102 // Iterator to iterate over the child nodes. 106 // Iterate over immediate child nodes. 110 // Constant overloads for iterating over immediate child node 248 AddCoefficient(SENode* child) AddCoefficient() argument 253 AddOffset(SENode* child) AddOffset() argument [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| H A D | scalar_analysis_nodes.h | 64 virtual inline void AddChild(SENode* child) { in AddChild() argument 67 assert(false && "Trying to add a child node to a constant!"); in AddChild() 70 // Find the first point in the vector where |child| is greater than the node in AddChild() 72 auto find_first_less_than = [child](const SENode* node) { in AddChild() 73 return child->unique_id_ <= node->unique_id_; in AddChild() 80 children_.insert(position, child); in AddChild() 98 // Return the child node at |index|. 102 // Iterator to iterate over the child nodes. 106 // Iterate over immediate child nodes. 110 // Constant overloads for iterating over immediate child node 248 AddCoefficient(SENode* child) AddCoefficient() argument 253 AddOffset(SENode* child) AddOffset() argument [all...] |
| /third_party/spirv-tools/source/opt/ |
| H A D | scalar_analysis_nodes.h | 64 virtual inline void AddChild(SENode* child) { in AddChild() argument 67 assert(false && "Trying to add a child node to a constant!"); in AddChild() 70 // Find the first point in the vector where |child| is greater than the node in AddChild() 72 auto find_first_less_than = [child](const SENode* node) { in AddChild() 73 return child->unique_id_ <= node->unique_id_; in AddChild() 80 children_.insert(position, child); in AddChild() 98 // Return the child node at |index|. 102 // Iterator to iterate over the child nodes. 106 // Iterate over immediate child nodes. 110 // Constant overloads for iterating over immediate child node 248 AddCoefficient(SENode* child) AddCoefficient() argument 253 AddOffset(SENode* child) AddOffset() argument [all...] |
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| H A D | LocaleUtility.java | 50 * return true if parent is a 'strict' fallback of child, that is, 51 * if child =~ "^parent(_.+)*" (roughly). 53 public static boolean isFallbackOf(String parent, String child) { in isFallbackOf() argument 54 if (!child.startsWith(parent)) { in isFallbackOf() 58 return (i == child.length() || in isFallbackOf() 59 child.charAt(i) == '_'); in isFallbackOf() 64 * 'strict' fallback of the child (parent string is a fallback 65 * of child string). 67 public static boolean isFallbackOf(Locale parent, Locale child) { in isFallbackOf() argument 68 return isFallbackOf(parent.toString(), child in isFallbackOf() [all...] |
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
| H A D | LocaleUtility.java | 52 * return true if parent is a 'strict' fallback of child, that is, 53 * if child =~ "^parent(_.+)*" (roughly). 55 public static boolean isFallbackOf(String parent, String child) { in isFallbackOf() argument 56 if (!child.startsWith(parent)) { in isFallbackOf() 60 return (i == child.length() || in isFallbackOf() 61 child.charAt(i) == '_'); in isFallbackOf() 66 * 'strict' fallback of the child (parent string is a fallback 67 * of child string). 69 public static boolean isFallbackOf(Locale parent, Locale child) { in isFallbackOf() argument 70 return isFallbackOf(parent.toString(), child in isFallbackOf() [all...] |
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/ |
| H A D | 17-2.c | 20 * the child process inherits the policy and priority 26 * -> check the child inherited the same policy. 28 * The test fails if the child does not inherit the parent's values. 87 pid_t child, ctl; in main() local 107 /* Create the child */ in main() 108 child = fork(); in main() 110 if (child == -1) { in main() 114 /* child */ in main() 115 if (child == 0) { in main() 122 "Failed to read scheduling policy in child"); in main() [all...] |
| H A D | 17-1.c | 20 * the child process inherits the policy and priority 26 * -> check the child inherited the same policy. 28 * The test fails if the child does not inherit the parent's values. 57 pid_t child, ctl; in main() local 76 /* Create the child */ in main() 77 child = fork(); in main() 79 if (child == -1) { in main() 83 /* child */ in main() 84 if (child == 0) { in main() 91 "Failed to read scheduling policy in child"); in main() [all...] |
| H A D | 6-1.c | 19 * The opened directory streams are copied to the child process. 25 * -> create a child 26 * -> The child counts the directory entries. 28 * The test fails if the directory is read in the parent and not in the child. 76 pid_t child, ctl; in main() local 101 /* Create the child */ in main() 102 child = fork(); in main() 104 if (child == -1) { in main() 108 /* child */ in main() 109 if (child in main() [all...] |
| /third_party/eudev/src/libudev/ |
| H A D | libudev-hwdb.c | 131 struct trie_child_entry_f *child; in node_lookup_f() local 135 child = bsearch(&search, trie_node_children(hwdb, node), node->children_count, in node_lookup_f() 137 if (child) in node_lookup_f() 138 return trie_node_from_off(hwdb, child->child_off); in node_lookup_f() 167 const struct trie_child_entry_f *child = &trie_node_children(hwdb, node)[i]; in trie_fnmatch_f() local 169 linebuf_add_char(buf, child->c); in trie_fnmatch_f() 170 err = trie_fnmatch_f(hwdb, trie_node_from_off(hwdb, child->child_off), 0, buf, search); in trie_fnmatch_f() 198 const struct trie_node_f *child; in trie_search_f() local 213 child = node_lookup_f(hwdb, node, '*'); in trie_search_f() 214 if (child) { in trie_search_f() [all...] |
| /third_party/gn/src/gn/ |
| H A D | ohos_components.cc | 144 if (current->child == nullptr) { in findChildByPath() 147 const struct OhosComponentTree *item = current->child; in findChildByPath() 163 const struct OhosComponentTree *child; in matchComponentByLabel() local 192 child = findChildByPath(current, label, len); in matchComponentByLabel() 193 if (child == nullptr) { in matchComponentByLabel() 198 if (child->child == nullptr) { in matchComponentByLabel() 199 return child->component; in matchComponentByLabel() 205 return child->component; in matchComponentByLabel() 208 // Match with child agai in matchComponentByLabel() 235 struct OhosComponentTree *child = (struct OhosComponentTree *)findChildByPath(current, path, len); addComponentToTree() local [all...] |
| /third_party/cJSON/tests/ |
| H A D | parse_object.c | 91 assert_is_child(item->child, "one", cJSON_Number); in parse_object_should_parse_objects_with_one_element() 95 assert_is_child(item->child, "hello", cJSON_String); in parse_object_should_parse_objects_with_one_element() 99 assert_is_child(item->child, "array", cJSON_Array); in parse_object_should_parse_objects_with_one_element() 103 assert_is_child(item->child, "null", cJSON_NULL); in parse_object_should_parse_objects_with_one_element() 110 assert_is_child(item->child, "one", cJSON_Number); in parse_object_should_parse_objects_with_multiple_elements() 111 assert_is_child(item->child->next, "two", cJSON_Number); in parse_object_should_parse_objects_with_multiple_elements() 112 assert_is_child(item->child->next->next, "three", cJSON_Number); in parse_object_should_parse_objects_with_multiple_elements() 140 node = item->child; in parse_object_should_parse_objects_with_multiple_elements()
|
| /third_party/NuttX/drivers/usbdev/gadget/fconfig/src/ |
| H A D | usb_obj.c | 107 struct usb_obj *child; in usbobj_find() local 117 list_for_each_entry(child, &obj->children, entry) in usbobj_find() 119 if (match(child, match_data)) in usbobj_find() 127 return found ? child : NULL; in usbobj_find() 184 struct usb_obj *child, *tmp; in usbobj_for_each_child() local 193 list_for_each_entry_safe(child, tmp, &obj->children, entry) in usbobj_for_each_child() 195 if (match && !match(child, match_data)) in usbobj_for_each_child() 199 fn(child, data); in usbobj_for_each_child()
|
| /third_party/jerryscript/jerry-ext/handle-scope/ |
| H A D | handle-scope-allocator.c | 100 * Get the child of given handle scope. 101 * If the given handle scope is in heap chain list, its child must be in heap chain list too; 102 * if the given handle scope is the last one of prelist, its child must be the first item of chain list; 106 * @returns the child of the given scope. 121 jerryx_handle_scope_dynamic_t *child = ((jerryx_handle_scope_dynamic_t *) scope)->child; in jerryx_handle_scope_get_child() local 122 return (jerryx_handle_scope_t *) child; in jerryx_handle_scope_get_child() 161 dy_scope->child = NULL; in jerryx_handle_scope_alloc() 167 dy_current->child = dy_scope; in jerryx_handle_scope_alloc() 212 jerryx_handle_scope_pool.start = dy_scope->child; in jerryx_handle_scope_free() [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-child-process-fork-net-server.js | 31 if (process.argv[2] === 'child') { 78 const child = fork(process.argv[1], ['child']); 80 child.on('exit', common.mustCall((code, signal) => { 85 // Send net.Server to child and test by connecting. 92 child.send({ what: 'close' }); 101 // Create server and send it to child. 116 child.send({ what: 'server' }, server); 143 child.removeListener('message', messageHandlers); 148 child [all...] |
| /third_party/node/deps/v8/src/torque/ |
| H A D | declaration-visitor.h | 27 for (Declaration* child : ast->declarations()) Predeclare(child); in Predeclare() 35 for (Declaration* child : decl->declarations) Predeclare(child); in Predeclare() 69 for (Declaration* child : ast->declarations()) Visit(child); in Visit() 74 for (Declaration* child : decl->declarations) Visit(child); in Visit()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
| H A D | osu_client.c | 807 xml_node_t *child; in set_pps_cred_policy_spel() local 809 xml_node_for_each_child(ctx->xml, child, spel) { in set_pps_cred_policy_spel() 810 xml_node_for_each_check(ctx->xml, child); in set_pps_cred_policy_spel() 811 set_pps_cred_policy_spe(ctx, id, child); in set_pps_cred_policy_spel() 874 xml_node_t *child; in set_pps_cred_policy_prpl() local 876 xml_node_for_each_child(ctx->xml, child, prpl) { in set_pps_cred_policy_prpl() 877 xml_node_for_each_check(ctx->xml, child); in set_pps_cred_policy_prpl() 878 set_pps_cred_policy_prp(ctx, id, child); in set_pps_cred_policy_prpl() 958 xml_node_t *child; in set_pps_cred_policy_min_backhaul_list() local 962 xml_node_for_each_child(ctx->xml, child, nod in set_pps_cred_policy_min_backhaul_list() 1030 xml_node_t *child; set_pps_cred_policy_required_proto_ports() local 1057 xml_node_t *child; set_pps_cred_policy() local 1144 xml_node_t *child; set_pps_cred_home_sp_network_ids() local 1197 xml_node_t *child; set_pps_cred_home_sp_oi() local 1247 xml_node_t *child; set_pps_cred_home_sp_oi_list() local 1261 xml_node_t *child; set_pps_cred_home_sp_other_partner() local 1293 xml_node_t *child; set_pps_cred_home_sp_other_partners() local 1321 xml_node_t *child; set_pps_cred_home_sp() local 1536 xml_node_t *child; set_pps_cred_eap_method() local 1558 xml_node_t *child; set_pps_cred_username_password() local 1763 xml_node_t *child, *sim, *realm; set_pps_cred_credential() local 1798 xml_node_t *child; set_pps_credential() local 1828 xml_node_t *child; set_pps() local [all...] |
| /third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/ |
| H A D | osu_client.c | 807 xml_node_t *child; in set_pps_cred_policy_spel() local 809 xml_node_for_each_child(ctx->xml, child, spel) { in set_pps_cred_policy_spel() 810 xml_node_for_each_check(ctx->xml, child); in set_pps_cred_policy_spel() 811 set_pps_cred_policy_spe(ctx, id, child); in set_pps_cred_policy_spel() 875 xml_node_t *child; in set_pps_cred_policy_prpl() local 877 xml_node_for_each_child(ctx->xml, child, prpl) { in set_pps_cred_policy_prpl() 878 xml_node_for_each_check(ctx->xml, child); in set_pps_cred_policy_prpl() 879 set_pps_cred_policy_prp(ctx, id, child); in set_pps_cred_policy_prpl() 959 xml_node_t *child; in set_pps_cred_policy_min_backhaul_list() local 963 xml_node_for_each_child(ctx->xml, child, nod in set_pps_cred_policy_min_backhaul_list() 1031 xml_node_t *child; set_pps_cred_policy_required_proto_ports() local 1058 xml_node_t *child; set_pps_cred_policy() local 1146 xml_node_t *child; set_pps_cred_home_sp_network_ids() local 1199 xml_node_t *child; set_pps_cred_home_sp_oi() local 1249 xml_node_t *child; set_pps_cred_home_sp_oi_list() local 1263 xml_node_t *child; set_pps_cred_home_sp_other_partner() local 1295 xml_node_t *child; set_pps_cred_home_sp_other_partners() local 1323 xml_node_t *child; set_pps_cred_home_sp() local 1538 xml_node_t *child; set_pps_cred_eap_method() local 1560 xml_node_t *child; set_pps_cred_username_password() local 1765 xml_node_t *child, *sim, *realm; set_pps_cred_credential() local 1800 xml_node_t *child; set_pps_credential() local 1830 xml_node_t *child; set_pps() local [all...] |
| /third_party/node/lib/internal/main/ |
| H A D | watch_mode.js | 49 let child; 55 child = spawn(process.execPath, args, { stdio, env: { ...process.env, WATCH_REPORT_DEPENDENCIES: '1' } }); 56 watcher.watchChildProcessModules(child); 57 child.once('exit', (code) => { 68 child?.removeAllListeners(); 69 if (!child) { 72 if ((child.killed || exited) && !force) { 75 const onExit = once(child, 'exit'); 76 child.kill(signal);
|
| /third_party/node/deps/v8/tools/profview/ |
| H A D | profile-utils.js | 173 // We found a child node. 175 let child = parent.children[childId]; 176 if (!child) { 178 child = createNodeFromStackEntry(code, codeId, vmState); 179 child.delayedExpansion = { frameList : [], ascending }; 180 parent.children[childId] = child; 182 child.ticks++; 183 addFrameToFrameList(child.delayedExpansion.frameList, stackIndex, stackPos); 343 let child = null; 362 child [all...] |
| /third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
| H A D | lower.c | 127 gpir_node *child = neg->children[0]; in gpir_lower_neg() local 129 /* check if child can dest negate */ in gpir_lower_neg() 130 if (child->type == gpir_node_type_alu) { in gpir_lower_neg() 132 if (list_is_singular(&child->succ_list) && in gpir_lower_neg() 133 gpir_op_infos[child->op].dest_neg) { in gpir_lower_neg() 134 gpir_alu_node *alu = gpir_node_to_alu(child); in gpir_lower_neg() 137 gpir_node_replace_succ(child, node); in gpir_lower_neg() 143 /* check if child can src negate */ in gpir_lower_neg() 155 alu->children[i] = child; in gpir_lower_neg() 163 gpir_node_replace_pred(dep, child); in gpir_lower_neg() 175 gpir_node *child = alu->children[0]; gpir_lower_complex() local [all...] |
| /third_party/python/Lib/test/test_importlib/ |
| H A D | test_namespace_pkgs.py | 250 import parent.child.one namespace 252 self.assertEqual(len(parent.child.__path__), 2) 253 import parent.child.two namespace 255 self.assertEqual(len(parent.child.__path__), 2) 257 self.assertEqual(parent.child.one.attr, 'parent child one') 258 self.assertEqual(parent.child.two.attr, 'parent child two') 261 import parent.child.three namespace 264 self.assertEqual(len(parent.child 267 import parent.child.one global() namespace 270 import parent.child.two global() namespace 278 import parent.child.three global() namespace 282 import parent.child.three global() namespace [all...] |
| /third_party/skia/modules/skottie/src/effects/ |
| H A D | MotionBlurEffect.cpp | 22 AutoInvalBlocker(const MotionBlurEffect* mb, const sk_sp<RenderNode>& child) in AutoInvalBlocker() argument 24 , fChild(child) { in AutoInvalBlocker() 38 sk_sp<sksg::RenderNode> child, in Make() 52 std::move(child), in Make() 58 sk_sp<sksg::RenderNode> child, in MotionBlurEffect() 60 : INHERITED({std::move(child)}) in MotionBlurEffect() 100 const sk_sp<RenderNode>& child = this->children()[0]; in renderToRaster8888Pow2Samples() local 120 if (!child->isVisible()) { in renderToRaster8888Pow2Samples() 129 child->render(canvas, ctx); in renderToRaster8888Pow2Samples() 199 const auto& child in onRender() local 37 Make(sk_sp<Animator> animator, sk_sp<sksg::RenderNode> child, size_t samples_per_frame, float shutter_angle, float shutter_phase) Make() argument 57 MotionBlurEffect(sk_sp<Animator> animator, sk_sp<sksg::RenderNode> child, size_t samples, float phase, float dt) MotionBlurEffect() argument [all...] |
| /third_party/node/test/message/ |
| H A D | stdin_messages.js | 32 const child = spawn(process.execPath, args); 33 child.stdout.pipe(process.stdout); 34 child.stderr.pipe(process.stdout); 35 child.stdin.end(cmd); 36 child.on('close', cb);
|