Home
last modified time | relevance | path

Searched refs:child (Results 226 - 250 of 1108) sorted by relevance

12345678910>>...45

/third_party/skia/modules/skottie/src/animator/
H A DAnimator.cpp33 sk_sp<AnimatablePropertyContainer> child) { in attachDiscardableAdapter()
34 if (!child) { in attachDiscardableAdapter()
38 if (child->isStatic()) { in attachDiscardableAdapter()
39 child->seek(0); in attachDiscardableAdapter()
43 fAnimators.push_back(child); in attachDiscardableAdapter()
32 attachDiscardableAdapter( sk_sp<AnimatablePropertyContainer> child) attachDiscardableAdapter() argument
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DResultTests.cpp184 TChild child; in TEST() local
185 T* childAsT = &child; in TEST()
187 Result<T*, int> result(&child); in TEST()
191 Result<TChild*, int> resultChild(&child); in TEST()
196 Result<TChild*, int> resultChild(&child); in TEST()
312 Child child; in TEST() local
313 Ref<Child> refChild(&child); in TEST()
316 TestSuccess<Base>(&result, &child); in TEST()
321 Child child; in TEST() local
322 Ref<Child> refChild(&child); in TEST()
331 Child child; TEST() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dxml-utils.c314 xml_node_t *child; in get_first_child_node() local
316 xml_node_for_each_child(ctx, child, node) { in get_first_child_node()
317 xml_node_for_each_check(ctx, child); in get_first_child_node()
318 lname = xml_node_get_localname(ctx, child); in get_first_child_node()
320 return child; in get_first_child_node()
387 xml_node_t *child; in tnds_to_mo_iter() local
409 child = get_first_child_node(ctx, node, "Node"); in tnds_to_mo_iter()
410 if (child) { in tnds_to_mo_iter()
412 tnds_to_mo_iter(ctx, root, child, nodename); in tnds_to_mo_iter()
416 tnds_to_mo_iter(ctx, root, child, new_ur in tnds_to_mo_iter()
461 xml_node_t *body, *child; soap_get_body() local
[all...]
H A Djson.c195 if (json_check_tree_state(token->child) < 0 || in json_check_tree_state()
262 token->child = json_alloc_token(&tokens); in json_parse()
263 if (!token->child) in json_parse()
265 curr_token = token->child; in json_parse()
287 if (curr_token->child->state == JSON_EMPTY && in json_parse()
288 !curr_token->child->child && in json_parse()
289 !curr_token->child->sibling) { in json_parse()
290 /* Remove pending child token since the in json_parse()
292 json_free(curr_token->child); in json_parse()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dxml-utils.c314 xml_node_t *child; in get_first_child_node() local
316 xml_node_for_each_child(ctx, child, node) { in get_first_child_node()
317 xml_node_for_each_check(ctx, child); in get_first_child_node()
318 lname = xml_node_get_localname(ctx, child); in get_first_child_node()
320 return child; in get_first_child_node()
387 xml_node_t *child; in tnds_to_mo_iter() local
409 child = get_first_child_node(ctx, node, "Node"); in tnds_to_mo_iter()
410 if (child) { in tnds_to_mo_iter()
412 tnds_to_mo_iter(ctx, root, child, nodename); in tnds_to_mo_iter()
416 tnds_to_mo_iter(ctx, root, child, new_ur in tnds_to_mo_iter()
461 xml_node_t *body, *child; soap_get_body() local
[all...]
H A Djson.c195 if (json_check_tree_state(token->child) < 0 || in json_check_tree_state()
262 token->child = json_alloc_token(&tokens); in json_parse()
263 if (!token->child) in json_parse()
265 curr_token = token->child; in json_parse()
287 if (curr_token->child->state == JSON_EMPTY && in json_parse()
288 !curr_token->child->child && in json_parse()
289 !curr_token->child->sibling) { in json_parse()
290 /* Remove pending child token since the in json_parse()
292 json_free(curr_token->child); in json_parse()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dhuffman.c49 int child = root * 2 + 1; in heap_sift() local
50 if (child < size - 1 && h[child].val > h[child+1].val) in heap_sift()
51 child++; in heap_sift()
52 if (h[root].val > h[child].val) { in heap_sift()
53 FFSWAP(HeapElem, h[root], h[child]); in heap_sift()
54 root = child; in heap_sift()
H A Dflac_parser.c72 int max_score; /**< maximum score found after checking each child that
454 FLACHeaderMarker *child, in check_header_mismatch()
457 FLACFrameInfo *header_fi = &header->fi, *child_fi = &child->fi; in check_header_mismatch()
473 while (curr != child) { in check_header_mismatch()
505 for (i = 0; i < FLAC_MAX_SEQUENTIAL_HEADERS && curr != child; i++) in check_header_mismatch()
515 end = child; in check_header_mismatch()
518 while (start->next != child) in check_header_mismatch()
544 child->offset, child_fi->frame_or_sample_num); in check_header_mismatch()
562 FLACHeaderMarker *child; in score_header() local
579 child in score_header()
452 check_header_mismatch(FLACParseContext *fpc, FLACHeaderMarker *header, FLACHeaderMarker *child, int log_level_offset) check_header_mismatch() argument
621 FLACHeaderMarker *child = header->best_child; get_best_header() local
[all...]
/third_party/node/deps/icu-small/source/tools/genrb/
H A Dfilterrb.cpp112 auto child = node->fChildren.find(key); in match() local
114 if (child == node->fChildren.end()) { in match()
123 node = &child->second; in match()
189 for (auto& child : fChildren) { in applyRule()
190 child.second.applyRule(path, it, inclusionRule, status); in applyRule()
214 for (auto& child : fChildren) { in print()
216 out << child.first << ": {" << std::endl; in print()
217 child.second.print(out, indent + 1); in print()
/third_party/icu/icu4c/source/tools/genrb/
H A Dfilterrb.cpp112 auto child = node->fChildren.find(key); in match() local
114 if (child == node->fChildren.end()) { in match()
123 node = &child->second; in match()
189 for (auto& child : fChildren) { in applyRule()
190 child.second.applyRule(path, it, inclusionRule, status); in applyRule()
214 for (auto& child : fChildren) { in print()
216 out << child.first << ": {" << std::endl; in print()
217 child.second.print(out, indent + 1); in print()
/third_party/skia/third_party/externals/icu/source/tools/genrb/
H A Dfilterrb.cpp112 auto child = node->fChildren.find(key); in match() local
114 if (child == node->fChildren.end()) { in match()
123 node = &child->second; in match()
189 for (auto& child : fChildren) { in applyRule()
190 child.second.applyRule(path, it, inclusionRule, status); in applyRule()
214 for (auto& child : fChildren) { in print()
216 out << child.first << ": {" << std::endl; in print()
217 child.second.print(out, indent + 1); in print()
/third_party/ltp/tools/sparse/sparse-src/
H A Dc2xml.c172 xmlNodePtr child = NULL; in examine_symbol() local
184 child = new_sym_node(sym, get_type_name(sym->type), node); in examine_symbol()
185 examine_modifiers(sym, child); in examine_symbol()
186 examine_layout(sym, child); in examine_symbol()
193 xmlNewProp(child, BAD_CAST "base-type", in examine_symbol()
196 newProp(child, "base-type-builtin", base); in examine_symbol()
202 newNumProp(child, "array-size", array_size); in examine_symbol()
209 examine_members(sym->symbol_list, child); in examine_symbol()
212 examine_members(sym->arguments, child); in examine_symbol()
215 newProp(child, "bas in examine_symbol()
[all...]
/third_party/mesa3d/src/mapi/glapi/gen/
H A Dgl_XML.py724 for child in element:
725 if child.tag == "return":
726 return_type = child.get( "type", "void" )
727 elif child.tag == "param":
728 param = self.context.factory.create_parameter(child, self.context)
884 for child in element:
885 if child.tag == "category":
886 self.process_category( child )
887 elif child.tag == "OpenGLAPI":
888 self.process_OpenGLAPI( file_name, child )
[all...]
/third_party/ltp/testcases/kernel/mem/lib/
H A Dmem.c112 * desired outcome (e.g. child killed, operation failed with ENOMEM)
113 * @testcase: selects how child allocates memory
115 * @lite: if non-zero, child makes only single TESTMEM+MB allocation
116 * if zero, child keeps allocating memory until it gets killed
118 * @retcode: expected return code of child process
119 * if matches child ret code, this function reports PASS,
121 * @allow_sigkill: if zero and child is killed, this function reports FAIL
122 * if non-zero, then if child is killed by SIGKILL
313 tst_res(TINFO, "child %d verifies memory content.", proc); in verify()
320 tst_res(TFAIL, "child in verify()
418 stop_ksm_children(int *child, int num) stop_ksm_children() argument
430 resume_ksm_children(int *child, int num) resume_ksm_children() argument
443 int i, j, status, *child; create_same_memory() local
[all...]
/third_party/skia/third_party/externals/microhttpd/src/testspdy/
H A Dtest_new_connection.c27 //TODO child exits with ret val 1 sometimes
42 pid_t child; variable
841 killchild(child,"wrong cls"); in new_session_callback()
849 killchild(child,"inet_ntop"); in new_session_callback()
861 killchild(child,"inet_ntop"); in new_session_callback()
870 killchild(child,"wrong family"); in new_session_callback()
878 //child process
905 parentproc(int child) in parentproc() argument
957 killchild(child, "select error"); in parentproc()
968 while(loop && waitpid(child, in parentproc()
[all...]
/third_party/node/test/node-api/test_instance_data/
H A Dtest.js25 // When launched as a script, run tests in either a child process or in a
32 // Run tests in a child process.
33 requireAs(__filename, ['--expose-gc'], runOptions, 'child');
35 // Run tests in a worker thread in a child process.
45 // to the child process. Windows needs this.
47 const child = spawnSync(process.execPath, ['-e', `require('${path}');`]);
48 assert.strictEqual(child.signal, null);
49 assert.strictEqual(child.status, 0);
50 assert.strictEqual(child.stderr.toString(), 'addon_free');
/third_party/node/test/common/
H A Dbenchmark.js16 const child = fork(runjs, argv, {
20 child.stdout.setEncoding('utf8');
23 child.stdout.on('data', (line) => {
27 child.on('exit', (code, signal) => {
/third_party/skia/src/sksl/ir/
H A DSkSLChildCall.h18 * A call to a child effect object (shader, color filter, or blender).
24 ChildCall(int line, const Type* type, const Variable* child, ExpressionArray arguments) in ChildCall() argument
26 , fChild(*child) in ChildCall()
29 // Creates the child call; reports errors via ASSERT.
33 const Variable& child,
36 const Variable& child() const { in child() function in SkSL::final
/arkcompiler/toolchain/tooling/client/manager/
H A Dvariable_manager.cpp34 void TreeNode::AddChild(std::unique_ptr<TreeNode> child) in AddChild() argument
36 children.push_back(std::move(child)); in AddChild()
77 for (const auto &child : children) { in Print()
78 child->Print(depth + 1); in Print()
103 for (const auto& child : root_->children) { in PrintRootAndImmediateChildren()
104 if (std::holds_alternative<std::map<int32_t, std::map<int32_t, std::string>>>(child->data)) { in PrintRootAndImmediateChildren()
105 const auto& outerMap = std::get<std::map<int32_t, std::map<int32_t, std::string>>>(child->data); in PrintRootAndImmediateChildren()
181 for (const auto& child : node->children) { in FindNodeWithObjectIdRecursive()
182 TreeNode* foundNode = FindNodeWithObjectIdRecursive(child.get(), objectId); in FindNodeWithObjectIdRecursive()
206 for (const auto &child in FindNodeWithInnerKeyZero()
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qir_schedule.c540 struct schedule_node *child = in dump_state() local
541 (struct schedule_node *)edge->child; in dump_state()
543 qir_dump_inst(c, child->inst); in dump_state()
545 child->dag.parent_count); in dump_state()
607 struct schedule_node *child = in compute_delay() local
608 (struct schedule_node *)edge->child; in compute_delay()
610 n->delay = MAX2(n->delay, (child->delay + in compute_delay()
611 latency_between(child, n))); in compute_delay()
650 struct schedule_node *child = in schedule_instructions() local
651 (struct schedule_node *)edge->child; in schedule_instructions()
[all...]
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dvalhall.py66 for child in el:
67 if child.tag == 'value':
68 is_default = child.attrib.get('default', False)
69 values.append(EnumValue(child.text, is_default))
70 elif child.tag == 'reserved':
372 for child in root.findall('enum'):
373 enums[safe_name(child.attrib['name'])] = build_enum(child)
422 for child in root:
423 if child
[all...]
/third_party/protobuf/src/google/protobuf/util/
H A Dfield_mask_util_test.cc507 FieldMaskUtil::FromString("child.payload", &mask); in TEST()
509 EXPECT_EQ(1234, nested_dst.child().payload().optional_int32()); in TEST()
510 EXPECT_EQ(0, nested_dst.child().child().payload().optional_int32()); in TEST()
512 FieldMaskUtil::FromString("child.child.payload", &mask); in TEST()
514 EXPECT_EQ(1234, nested_dst.child().payload().optional_int32()); in TEST()
515 EXPECT_EQ(5678, nested_dst.child().child().payload().optional_int32()); in TEST()
518 FieldMaskUtil::FromString("child in TEST()
[all...]
/third_party/node/test/parallel/
H A Dtest-child-process-execfile-maxbuf.js73 const child = execFile(
80 child.stdout.setEncoding('utf-8');
84 const child = execFile(
91 child.stderr.setEncoding('utf-8');
H A Dtest-inspector-waiting-for-disconnect.js15 const child = new NodeInstance(['--inspect-brk=0', '-e', 'process.exit(55)']);
16 const session = await child.connectInspectorSession();
17 const oldStyleSession = await child.connectInspectorSession();
41 assert.strictEqual((await child.expectShutdown()).exitCode, 55);
H A Dtest-vm-sigint.js12 if (process.argv[2] === 'child') {
38 const args = [__filename, 'child', method, listeners];
39 const child = spawn(process.execPath, args, {
43 child.on('message', common.mustCall(() => {
44 process.kill(child.pid, 'SIGINT');
47 child.on('close', common.mustCall((code, signal) => {

Completed in 16 milliseconds

12345678910>>...45