| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
| H A D | cordz_info_test.cc | 79 TestCordData parent, child; in TEST() local 80 CordzInfo::MaybeTrackCord(child.data, parent.data, kTrackCordMethod); in TEST() 81 EXPECT_THAT(child.data.cordz_info(), Eq(nullptr)); in TEST() 86 TestCordData parent, child; in TEST() local 87 CordzInfo::MaybeTrackCord(child.data, parent.data, kTrackCordMethod); in TEST() 88 EXPECT_THAT(child.data.cordz_info(), Eq(nullptr)); in TEST() 93 TestCordData parent, child; in TEST() local 95 CordzInfo::MaybeTrackCord(child.data, parent.data, kTrackCordMethod); in TEST() 97 CordzInfo* child_info = child.data.cordz_info(); in TEST() 99 EXPECT_THAT(child_info->GetCordRepForTesting(), Eq(child in TEST() 107 TestCordData parent, child; TEST() local 115 TestCordData parent, child; TEST() local 320 TestCordData child; TEST() local [all...] |
| /third_party/skia/src/gpu/ |
| H A D | GrColorSpaceXform.cpp | 65 GrColorSpaceXformEffect::GrColorSpaceXformEffect(std::unique_ptr<GrFragmentProcessor> child, in GrColorSpaceXformEffect() argument 67 : INHERITED(kGrColorSpaceXformEffect_ClassID, OptFlags(child.get())) in GrColorSpaceXformEffect() 69 this->registerChild(std::move(child)); in GrColorSpaceXformEffect() 129 const GrFragmentProcessor* child) { in OptFlags() 130 return ProcessorOptimizationFlags(child) & (kCompatibleWithCoverageAsAlpha_OptimizationFlag | in OptFlags() 142 std::unique_ptr<GrFragmentProcessor> child, in Make() 145 return Make(std::move(child), GrColorSpaceXform::Make(src, srcAT, dst, dstAT)); in Make() 149 std::unique_ptr<GrFragmentProcessor> child, in Make() 152 return Make(std::move(child), GrColorSpaceXform::Make(srcInfo, dstInfo)); in Make() 156 std::unique_ptr<GrFragmentProcessor> child, in Make() 128 OptFlags( const GrFragmentProcessor* child) OptFlags() argument 141 Make( std::unique_ptr<GrFragmentProcessor> child, SkColorSpace* src, SkAlphaType srcAT, SkColorSpace* dst, SkAlphaType dstAT) Make() argument 148 Make( std::unique_ptr<GrFragmentProcessor> child, const GrColorInfo& srcInfo, const GrColorInfo& dstInfo) Make() argument 155 Make( std::unique_ptr<GrFragmentProcessor> child, sk_sp<GrColorSpaceXform> colorXform) Make() argument [all...] |
| /third_party/skia/src/core/ |
| H A D | SkTDPQueue.h | 160 int child = LeftOf(index); in percolateDownIfNecessary() local 162 if (child >= fArray.count()) { in percolateDownIfNecessary() 168 if (child + 1 >= fArray.count()) { in percolateDownIfNecessary() 169 // We only have a left child. in percolateDownIfNecessary() 170 if (LESS(fArray[child], fArray[index])) { in percolateDownIfNecessary() 172 swap(fArray[child], fArray[index]); in percolateDownIfNecessary() 173 this->setIndex(child); in percolateDownIfNecessary() 177 } else if (LESS(fArray[child + 1], fArray[child])) { in percolateDownIfNecessary() 178 // The right child i in percolateDownIfNecessary() [all...] |
| /third_party/node/lib/internal/debugger/ |
| H A D | inspect.js | 81 const child = spawn(process.execPath, args); 82 child.stdout.setEncoding('utf8'); 83 child.stderr.setEncoding('utf8'); 84 child.stdout.on('data', (chunk) => childPrint(chunk, 'stdout')); 85 child.stderr.on('data', (chunk) => childPrint(chunk, 'stderr')); 95 child.stderr.removeListener('data', waitForListenHint); 96 resolve([child, port, host]); 100 child.stderr.on('data', waitForListenHint); 134 this.child = null; 206 if (this.child) { [all...] |
| /third_party/elfutils/libdw/ |
| H A D | dwarf_aggregate_size.c | 65 Dwarf_Die child; in array_size() 66 if (INTUSE(dwarf_child) (die, &child) != 0) in array_size() 74 switch (INTUSE(dwarf_tag) (&child)) in array_size() 78 if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_count, in array_size() 87 if (INTUSE(dwarf_attr) (get_type (&child, attr_mem, &type_mem), in array_size() 101 (&child, DW_AT_upper_bound, in array_size() 109 (&child, DW_AT_upper_bound, in array_size() 116 if (INTUSE(dwarf_attr_integrate) (&child, DW_AT_lower_bound, in array_size() 147 /* We have to find the DW_TAG_enumerator child with the in array_size() 177 while (INTUSE(dwarf_siblingof) (&child, in array_size() [all...] |
| /third_party/eudev/src/shared/ |
| H A D | strbuf.c | 72 strbuf_node_cleanup(node->children[i].child); in strbuf_node_cleanup() 107 .child = node_child, in bubbleinsert() 132 struct strbuf_child_entry *child; in strbuf_add_string() local 158 /* lookup child node */ in strbuf_add_string() 161 child = bsearch(&search, node->children, node->children_count, in strbuf_add_string() 163 if (!child) in strbuf_add_string() 165 node = child->child; in strbuf_add_string() 186 child = realloc(node->children, (node->children_count + 1) * sizeof(struct strbuf_child_entry)); in strbuf_add_string() 187 if (!child) { in strbuf_add_string() [all...] |
| /third_party/skia/third_party/externals/swiftshader/tests/regres/cov/ |
| H A D | optimization.go | 137 // invertCommon looks for tree nodes with the majority of the child nodes with 143 for id, child := range tc.Children { 144 id, child := id, child 147 o.invertForCommon(child, &t.children[id]) 153 for _, child := range tc.Children { 154 for span := range child.Spans { 163 child := tc.Children.index(idx) 164 child.Spans = child [all...] |
| /third_party/eudev/src/udev/ |
| H A D | udevadm-hwdb.c | 70 struct trie_node *child; member 87 struct trie_child_entry *child; in node_add_child() local 90 child = realloc(node->children, (node->children_count + 1) * sizeof(struct trie_child_entry)); in node_add_child() 91 if (!child) in node_add_child() 94 node->children = child; in node_add_child() 97 node->children[node->children_count].child = node_child; in node_add_child() 106 struct trie_child_entry *child; in node_lookup() local 110 child = bsearch(&search, node->children, node->children_count, sizeof(struct trie_child_entry), trie_children_cmp); in node_lookup() 111 if (child) in node_lookup() 112 return child in node_lookup() 189 struct trie_node *child; trie_insert() local [all...] |
| /third_party/typescript/tests/baselines/reference/project/prologueEmit/amd/ |
| H A D | out.js | 28 var child = /** @class */ (function (_super) {
29 __extends(child, _super);
30 function child() {
33 return child;
35 m.child = child;
|
| /third_party/typescript/tests/baselines/reference/project/prologueEmit/node/ |
| H A D | out.js | 28 var child = /** @class */ (function (_super) {
29 __extends(child, _super);
30 function child() {
33 return child;
35 m.child = child;
|
| /third_party/node/test/parallel/ |
| H A D | test-child-process-cwd.js | 32 // - whether the child pid is undefined or number, 36 const child = spawn(...common.pwdCommand, options); 38 assert.strictEqual(typeof child.pid, expectPidType); 40 child.stdout.setEncoding('utf8'); 44 child.stdout.on('data', function(chunk) { 50 child.on('exit', function(code, signal) { 54 child.on('close', common.mustCall(function() { 58 return child;
|
| H A D | test-inspector-workers-flat-list.js | 33 function processMessage({ child }) { 34 console.log(`Worker ${child} is running`); 35 if (child === MAX_DEPTH) { 57 parentPort.on('message', ({ child, depth, done }) => { 64 parentPort.postMessage({ child: depth }); 68 } else if (child) { 69 parentPort.postMessage({ child });
|
| H A D | test-promise-hook-create-hook.js | 62 const child = parent.then(() => { 65 assertState(undefined, undefined, child, undefined, undefined); 70 assertState(child, parent); 72 const grandChild = child.then(() => { 74 // `child` promise, there should have been both a before event for this 75 // promise but also settled and after events for the `child` promise. 76 assertState(undefined, undefined, grandChild, child, child); 82 assertState(grandChild, child);
|
| /third_party/node/benchmark/misc/ |
| H A D | startup.js | 20 const child = spawnSync(cmd, [script]); 21 if (child.status !== 0) { 23 console.log(child.stdout.toString()); 25 console.log(child.stderr.toString()); 26 throw new Error(`Child process stopped with exit code ${child.status}`); 41 const child = new Worker(script); 42 child.on('exit', (code) => {
|
| /third_party/ltp/testcases/open_posix_testsuite/stress/threads/ |
| H A D | helper.c | 59 static pid_t child; variable 75 ret = kill(child, SIGUSR1); in timer() 122 child = fork(); in main() 124 if (child == (pid_t) - 1) { in main() 129 /* The child process executes the test */ in main() 130 if (child == (pid_t) 0) { in main() 136 perror("Unable to run child application"); in main() 146 /* wait for the child process to terminate */ in main() 147 chk = waitpid(child, &status, 0); in main() 148 if (chk != child) { in main() [all...] |
| /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/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/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/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()
|