Home
last modified time | relevance | path

Searched refs:tpdf (Results 1 – 25 of 166) sorted by relevance

1234567

/dports/textproc/p5-PDF-Builder/PDF-Builder-3.023/contrib/
H A Dpdf-optimize.pl15 my ($objs, $spdf, $tpdf, $obj, @keys) = @_;
29 $tpdf->new_obj($tobj) if $obj->is_obj($spdf) && !$tobj->is_obj($tpdf);
38 $tobj->add_elements(walk_obj($objs, $spdf, $tpdf, $k));
46 $tobj->{$k} = walk_obj($objs, $spdf, $tpdf, $obj->{$k});
59 return walk_obj($objs, $spdf, $tpdf, $obj);
72 my $tpdf = PDF::Builder::Basic::PDF::File->_new();
74 $tpdf->{'Root'} = walk_obj($mycache, $spdf, $tpdf, $spdf->{'Root'});
75 $tpdf->{'Info'} = walk_obj($mycache, $spdf, $tpdf, $spdf->{'Info'}) if $spdf->{'Info'};
77 $tpdf->out_file($ARGV[1]);
H A Dpdf-deoptimize.pl16 my ($objs, $spdf, $tpdf, $obj, @keys) = @_;
30 $tpdf->new_obj($tobj) if $obj->is_obj($spdf) && !$tobj->is_obj($tpdf);
39 $tobj->add_elements(walk_obj($objs, $spdf, $tpdf, $k));
47 $tobj->{$k} =walk_obj($objs, $spdf, $tpdf, $obj->{$k});
82 my $tpdf = PDF::Builder::Basic::PDF::File->_new();
84 $tpdf->{'Root'} = walk_obj($mycache, $spdf, $tpdf, $spdf->{'Root'});
85 $tpdf->{'Info'} = walk_obj($mycache, $spdf, $tpdf, $spdf->{'Info'}) if $spdf->{'Info'};
87 $tpdf->out_file($ARGV[1]);
/dports/textproc/p5-PDF-API2/PDF-API2-2.042/contrib/
H A Dpdf-optimize.pl9 my ($objs,$spdf,$tpdf,$obj,@keys)=@_;
23 $tpdf->new_obj($tobj) if($obj->is_obj($spdf) && !$tobj->is_obj($tpdf));
31 $tobj->add_elements(walk_obj($objs,$spdf,$tpdf,$k));
38 $tobj->{$k}=walk_obj($objs,$spdf,$tpdf,$obj->{$k});
51 return(walk_obj($objs,$spdf,$tpdf,$obj));
63 $tpdf=PDF::API2::Basic::PDF::File->_new;
65 $tpdf->{Root}=walk_obj($mycache,$spdf,$tpdf,$spdf->{Root});
66 $tpdf->{Info}=walk_obj($mycache,$spdf,$tpdf,$spdf->{Info}) if $spdf->{Info};
68 $tpdf->out_file($ARGV[1]);
H A Dpdf-deoptimize.pl10 my ($objs,$spdf,$tpdf,$obj,@keys)=@_;
24 $tpdf->new_obj($tobj) if($obj->is_obj($spdf) && !$tobj->is_obj($tpdf));
32 $tobj->add_elements(walk_obj($objs,$spdf,$tpdf,$k));
39 $tobj->{$k}=walk_obj($objs,$spdf,$tpdf,$obj->{$k});
73 $tpdf=PDF::API2::Basic::PDF::File->_new;
75 $tpdf->{Root}=walk_obj($mycache,$spdf,$tpdf,$spdf->{Root});
76 $tpdf->{Info}=walk_obj($mycache,$spdf,$tpdf,$spdf->{Info}) if $spdf->{Info};
78 $tpdf->out_file($ARGV[1]);
/dports/math/octave-forge-statistics/statistics-1.4.3/install-conditionally/distributions/
H A Dtpdf.m28 function pdf = tpdf (x, n) function
69 %! assert (tpdf (x, 1), y, 5*eps);
74 %!assert (tpdf (x, ones (1,5)), y, eps)
75 %!assert (tpdf (x, 1), y, eps)
84 %!error tpdf ()
85 %!error tpdf (1)
86 %!error tpdf (1,2,3)
87 %!error tpdf (ones (3), ones (2))
88 %!error tpdf (ones (2), ones (3))
89 %!error tpdf (i, 2)
[all …]
/dports/textproc/p5-PDF-API3/PDF-API3-3.001/contrib/
H A Dpdf-optimize.pl44 my ($objs,$spdf,$tpdf,$obj,@keys)=@_;
58 $tpdf->new_obj($tobj) if($obj->is_obj($spdf) && !$tobj->is_obj($tpdf));
66 $tobj->add_elements(walk_obj($objs,$spdf,$tpdf,$k));
73 $tobj->{$k}=walk_obj($objs,$spdf,$tpdf,$obj->{$k});
86 return(walk_obj($objs,$spdf,$tpdf,$obj));
98 $tpdf=PDF::API3::Compat::API2::Basic::PDF::File->_new;
100 $tpdf->{Root}=walk_obj($mycache,$spdf,$tpdf,$spdf->{Root});
101 $tpdf->{Info}=walk_obj($mycache,$spdf,$tpdf,$spdf->{Info});
103 $tpdf->out_file($ARGV[1]);
H A Dpdf-deoptimize.pl44 my ($objs,$spdf,$tpdf,$obj,@keys)=@_;
58 $tpdf->new_obj($tobj) if($obj->is_obj($spdf) && !$tobj->is_obj($tpdf));
66 $tobj->add_elements(walk_obj($objs,$spdf,$tpdf,$k));
73 $tobj->{$k}=walk_obj($objs,$spdf,$tpdf,$obj->{$k});
107 $tpdf=PDF::API3::Compat::API2::Basic::PDF::File->_new;
109 $tpdf->{Root}=walk_obj($mycache,$spdf,$tpdf,$spdf->{Root});
110 $tpdf->{Info}=walk_obj($mycache,$spdf,$tpdf,$spdf->{Info});
112 $tpdf->out_file($ARGV[1]);
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/jung-kurt/gofpdf/contrib/gofpdi/
H A Dgofpdi_test.go67 tpdf := gofpdf.New("P", "pt", "A4", "")
68 tpdf.AddPage()
69 tpdf.SetFont("Arial", "", 12)
70 tpdf.Text(20, 20, "Example Page 1")
71 tpdf.AddPage()
72 tpdf.Text(20, 20, "Example Page 2")
74 err := tpdf.Output(&tbuf)
/dports/editors/o/o-2.46.0/vendor/github.com/jung-kurt/gofpdf/gofpdf-1.16.2/contrib/gofpdi/
H A Dgofpdi_test.go67 tpdf := gofpdf.New("P", "pt", "A4", "")
68 tpdf.AddPage()
69 tpdf.SetFont("Arial", "", 12)
70 tpdf.Text(20, 20, "Example Page 1")
71 tpdf.AddPage()
72 tpdf.Text(20, 20, "Example Page 2")
74 err := tpdf.Output(&tbuf)
/dports/science/code_saturne/code_saturne-7.1.0/src/pprt/
H A Dpppdfr.f9061 tpdf , & argument
122 tpdf (iel) = 0.d0
216 tpdf (iel) = 1.d0
231 tpdf (iel) = 2.d0
249 tpdf (iel) = 3.d0
266 tpdf (iel) = 4.d0
297 tpdf (iel) = 0.d0
/dports/math/octave-forge-stk/stk/inst/misc/distrib/
H A Dstk_distrib_student_pdf.m10 % This code is very loosely based on Octave's tpdf function:
74 %! [0.50 / pi ... % tpdf ((1 - 1) / 10, 1)
75 %! 0.10 / pi; ... % tpdf ((1 - 1) / 10, 1) / 10
76 %! 1 / (11 * sqrt(11)) ... % tpdf ((3 - 0) / 1, 2) / 1
77 %! 3.4320590294804165e-02 ... % tpdf ((3 - 1) / 10, 2) / 10
/dports/net/libyang/libyang-1.0.240/src/
H A Dprinter_info.c210 ly_print(out, "%s\n", tpdf[0].name); in info_print_typedef()
227 ly_print(out, "%s\n", mod->tpdf[0].name); in info_print_typedef_with_include()
690 info_print_text(outf, tpdf->dsc, "Desc: "); in info_print_typedef_detail()
691 info_print_text(outf, tpdf->ref, "Reference: "); in info_print_typedef_detail()
693 info_print_type_detail_(outf, &tpdf->type, 0); in info_print_typedef_detail()
694 info_print_text(outf, tpdf->units, "Units: "); in info_print_typedef_detail()
695 info_print_text(outf, tpdf->dflt, "Default: "); in info_print_typedef_detail()
809 info_print_typedef(out, cont->tpdf, cont->tpdf_size); in info_print_container()
978 info_print_typedef(out, ntf->tpdf, ntf->tpdf_size); in info_print_notif()
995 info_print_typedef(out, rpc->tpdf, rpc->tpdf_size); in info_print_rpc()
[all …]
H A Dprinter.c512 struct lys_tpdf *tpdf = NULL; in lys_print_target() local
553 tpdf = ((struct lys_node_container *)target)->tpdf; in lys_print_target()
557 tpdf = ((struct lys_node_list *)target)->tpdf; in lys_print_target()
561 tpdf = ((struct lys_node_notif *)target)->tpdf; in lys_print_target()
566 tpdf = ((struct lys_node_rpc_action *)target)->tpdf; in lys_print_target()
570 tpdf = ((struct lys_node_grp *)target)->tpdf; in lys_print_target()
581 tpdf = module->tpdf; in lys_print_target()
586 if (!strcmp(tpdf[i].name, spec_target)) { in lys_print_target()
587 clb_print_typedef(out, &tpdf[i], &f); in lys_print_target()
H A Dprinter_json_schema.c405 jsons_print_type(out, &tpdf->type, &f); in jsons_print_typedef()
407 jsons_print_text(out, "reference", "text", tpdf->ref, 1, NULL); in jsons_print_typedef()
408 jsons_print_status(out, tpdf->flags, NULL); in jsons_print_typedef()
409 jsons_print_object(out, "units", "name", tpdf->units, 1, NULL); in jsons_print_typedef()
429 ly_print(out, "%s\"%s\"", i ? "," : "", tpdf[i].name); in jsons_print_typedefs()
963 jsons_print_typedefs(out, cont->tpdf, cont->tpdf_size, NULL); in jsons_print_container()
1084 jsons_print_typedefs(out, list->tpdf, list->tpdf_size, NULL); in jsons_print_list()
1134 jsons_print_typedefs(out, group->tpdf, group->tpdf_size, NULL); in jsons_print_grouping()
1204 jsons_print_typedefs(out, ntf->tpdf, ntf->tpdf_size, NULL); in jsons_print_notif()
1227 jsons_print_typedefs(out, rpc->tpdf, rpc->tpdf_size, NULL); in jsons_print_rpc()
[all …]
H A Dprinter_xml.c315 struct lys_tpdf *tpdf; in xml_print_leaf() local
353 for (tpdf = type->der; in xml_print_leaf()
354tpdf->module && (strcmp(tpdf->name, "xpath1.0") || strcmp(tpdf->module->name, "ietf-yang-types")); in xml_print_leaf()
355 tpdf = tpdf->type.der); in xml_print_leaf()
357 if (tpdf->module) { in xml_print_leaf()
/dports/net/libyang/libyang-1.0.240/swig/cpp/src/
H A DTree_Schema.cpp336 return node_container->tpdf ? std::make_shared<Tpdf>(node_container->tpdf, deleter) : nullptr; in ptdf()
368 std::vector<S_Tpdf> Schema_Node_List::tpdf() LY_NEW_LIST_CASTED(lys_node_list, node, tpdf, tpdf_siz…
406 std::vector<S_Tpdf> Schema_Node_Grp::tpdf() LY_NEW_LIST_CASTED(lys_node_grp, node, tpdf, tpdf_size,…
412 std::vector<S_Tpdf> Schema_Node_Inout::tpdf() LY_NEW_LIST_CASTED(lys_node_inout, node, tpdf, tpdf_s…
416 std::vector<S_Tpdf> Schema_Node_Notif::tpdf() LY_NEW_LIST_CASTED(lys_node_notif, node, tpdf, tpdf_s…
420 std::vector<S_Tpdf> Schema_Node_Rpc_Action::tpdf() LY_NEW_LIST_CASTED(lys_node_rpc_action, node, tp…
502 Tpdf::Tpdf(struct lys_tpdf *tpdf, S_Deleter deleter): in Tpdf() argument
503 tpdf(tpdf), in Tpdf()
507 S_Type Tpdf::type() {return std::make_shared<Type>(&tpdf->type, deleter);} in type()
H A DTree_Schema.hpp782 std::vector<S_Tpdf> tpdf();
887 std::vector<S_Tpdf> tpdf();
945 std::vector<S_Tpdf> tpdf();
978 std::vector<S_Tpdf> tpdf();
1009 std::vector<S_Tpdf> tpdf();
1314 const char *name() {return tpdf->name;}; in name()
1316 const char *dsc() {return tpdf->dsc;}; in dsc()
1318 const char *ref() {return tpdf->ref;}; in ref()
1320 uint16_t flags() {return tpdf->flags;}; in flags()
1336 const char *dflt() {return tpdf->dflt;}; in dflt()
[all …]
/dports/math/octave-forge-nan/nan-3.6.1/inst/
H A Dtpdf.m1 function p = tpdf(x,n) function
4 % pdf = tpdf(x,DF);
49 %!assert(tpdf(NaN,4),NaN)
/dports/net/libyang/libyang-1.0.240/src/extensions/
H A Dyangdata.c136 remove_iffeature_type(&cont->tpdf[i].type, ctx); in fix_schema()
149 remove_iffeature_type(&action->tpdf[i].type, ctx); in fix_schema()
155 remove_iffeature_type(&grp->tpdf[i].type, ctx); in fix_schema()
/dports/devel/boost-docs/boost_1_72_0/libs/math/example/
H A Dskew_normal_example.cpp22 const double x, const double tpdf, const double tcdf) in check() argument
48 …std::cout << "pdf(" << x << "): table=" << tpdf << "\tcompute=" << pdf(D,x) << "\tdiff=" << fabs(t… in check()
/dports/devel/boost-python-libs/boost_1_72_0/libs/math/example/
H A Dskew_normal_example.cpp22 const double x, const double tpdf, const double tcdf) in check() argument
48 …std::cout << "pdf(" << x << "): table=" << tpdf << "\tcompute=" << pdf(D,x) << "\tdiff=" << fabs(t… in check()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/math/example/
H A Dskew_normal_example.cpp22 const double x, const double tpdf, const double tcdf) in check() argument
48 …std::cout << "pdf(" << x << "): table=" << tpdf << "\tcompute=" << pdf(D,x) << "\tdiff=" << fabs(t… in check()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/math/example/
H A Dskew_normal_example.cpp22 const double x, const double tpdf, const double tcdf) in check() argument
48 …std::cout << "pdf(" << x << "): table=" << tpdf << "\tcompute=" << pdf(D,x) << "\tdiff=" << fabs(t… in check()
/dports/databases/percona57-server/boost_1_59_0/libs/math/example/
H A Dskew_normal_example.cpp22 const double x, const double tpdf, const double tcdf) in check() argument
48 …std::cout << "pdf(" << x << "): table=" << tpdf << "\tcompute=" << pdf(D,x) << "\tdiff=" << fabs(t… in check()
/dports/databases/xtrabackup/boost_1_59_0/libs/math/example/
H A Dskew_normal_example.cpp22 const double x, const double tpdf, const double tcdf) in check() argument
48 …std::cout << "pdf(" << x << "): table=" << tpdf << "\tcompute=" << pdf(D,x) << "\tdiff=" << fabs(t… in check()

1234567