Home
last modified time | relevance | path

Searched refs:pipeline (Results 26 – 50 of 109) sorted by relevance

12345

/plugin/html2pdf/html2pdf/html2ps/samples/
H A Dsample.simplest.from.memory.php73 $pipeline = PipelineFactory::create_default_pipeline('', // Attempt to auto-detect encoding
79 $pipeline->fetchers[] = new MyFetcherMemory($html, $base_path);
82 $pipeline->destination = new MyDestinationFile($path_to_pdf);
108 $pipeline->configure($g_config);
109 $pipeline->process_batch(array($baseurl), $media);
H A Dsample.pipeline.default.php32 $pipeline = PipelineFactory::create_default_pipeline("",""); variable
33 $pipeline->configure($g_config);
34 $pipeline->process('http://localhost:81/testing/ww.html', $media);
/plugin/html2pdf/html2pdf/html2ps/
H A Dfilter.pre.footnotes.class.php13 function process(&$tree, $data, &$pipeline) { argument
24 $note_call =& BoxNoteCall::create($tree->content[$i], $pipeline);
27 $pipeline->_addFootnote($note_call);
29 $this->process($tree->content[$i], $data, $pipeline);
H A Dinline.content.builder.pre.wrap.php20 function build(&$box, $text, &$pipeline) { argument
31 $box->process_word($word, $pipeline);
33 $whitespace =& WhitespaceBox::create($pipeline);
38 $this->add_line_break($box, $pipeline);
H A Dbox.button.php38 function &create(&$root, &$pipeline) { argument
59 $box->readCSS($pipeline->get_current_css_state());
66 $box->_setup($text, $pipeline);
71 function _setup($text, &$pipeline) { argument
72 $this->setup_content($text, $pipeline);
H A Dinline.content.builder.pre.line.php15 function build(&$box, $text, &$pipeline) { argument
26 $box->process_word($word, $pipeline);
28 $whitespace =& WhitespaceBox::create($pipeline);
33 $this->add_line_break($box, $pipeline);
H A Dcss.rules.inc.php13 function apply(&$root, &$state, &$pipeline) { argument
14 $pipeline->push_base_url($this->baseurl);
16 $pipeline->pop_base_url();
23 function CSSRule($rule, &$pipeline) { argument
33 function set_property($key, $value, &$pipeline) { argument
H A Dcss.utils.inc.php31 function _fix_tag_display($default_display, &$state, &$pipeline) { argument
44 $handler->css('table-cell', $pipeline);
49 $css_state =& $pipeline->get_current_css_state();
53 $handler->css('-button', $pipeline);
H A Dbox.button.submit.php47 * @param Pipeline $pipeline reference to current pipeline object (unused)
51 function &create(&$root, &$pipeline) { argument
65 $css_state =& $pipeline->get_current_css_state();
68 $box->_setup($text, $pipeline);
H A Dcss.parse.inc.php16 function parse_style_attr($root, &$state, &$pipeline) { argument
34 $properties = parse_css_properties($style, $pipeline);
39 $pipeline->get_base_url(),
42 $pipeline);
44 $rule->apply($root, $state, $pipeline);
H A Dcss.background.image.inc.php17 function parse($value, &$pipeline) { argument
31 $full_url = $pipeline->guess_url(css_remove_value_quotes($url));
33 ImageFactory::get($full_url, $pipeline));
H A Dcss.list-style-image.inc.php12 function parse($value, &$pipeline) { argument
25 $full_url = $pipeline->guess_url(css_remove_value_quotes($url));
27 ImageFactory::get($full_url, $pipeline));
H A Dbox.list-item.php7 function &create(&$root, &$pipeline) { argument
8 $box = new ListItemBox($root, $pipeline);
9 $box->readCSS($pipeline->get_current_css_state());
14 $css_state =& $pipeline->get_current_css_state();
22 $pipeline);
23 $box->str_number_box->readCSS($pipeline->get_current_css_state());
31 $box->create_content($root, $pipeline);
64 function ListItemBox(&$root, &$pipeline) { argument
H A Dcss.parse.properties.php3 function &parse_css_property($string, &$pipeline) { argument
4 $collection =& parse_css_properties($string, $pipeline);
8 function &parse_css_properties($string, &$pipeline) { argument
24 $property =& CSSPropertyDeclaration::create($code, $value, $pipeline);
H A Dinline.content.builder.pre.php19 function build(&$box, $text, &$pipeline) { argument
27 $box->process_word($line, $pipeline);
30 $this->add_line_break($box, $pipeline);
H A Dbox.body.php8 function &create(&$root, &$pipeline) { argument
10 $box->readCSS($pipeline->get_current_css_state());
11 $box->create_content($root, $pipeline);
H A Dbox.form.php18 function &create(&$root, &$pipeline) { argument
28 $box->readCSS($pipeline->get_current_css_state());
29 $box->create_content($root, $pipeline);
H A Dfilter.pre.headfoot.class.php19 function process(&$tree, $data, &$pipeline) { argument
25 $box =& $parser->process($this->header_html, $pipeline, $null);
30 $box =& $parser->process($this->footer_html, $pipeline, $null);
H A Dbox.inline.php93 function &create(&$root, &$pipeline) { argument
96 $css_state =& $pipeline->get_current_css_state();
99 $pipeline);
104 $css_state =& $pipeline->get_current_css_state();
111 $child_box =& create_pdf_box($child, $pipeline);
124 $whitespace = WhitespaceBox::create($pipeline);
138 $box->readCSS($pipeline->get_current_css_state());
141 $css_state =& $pipeline->get_current_css_state();
146 $inline_content_builder->build($box, $text, $pipeline);
165 function process_word($raw_content, &$pipeline) { argument
[all …]
H A Dbox.input.img.php86 function &create(&$root, &$pipeline) { argument
93 $src_img = ImageFactory::get($pipeline->guess_url($src), $pipeline);
111 $css_state =& $pipeline->get_current_css_state();
118 $css_state =& $pipeline->get_current_css_state();
H A Dbox.table.section.php5 function &create(&$root, &$pipeline) { argument
6 $state =& $pipeline->get_current_css_state();
18 $child_box =& create_pdf_box($child, $pipeline);
H A Dbox.input.password.php5 function &create(&$root, &$pipeline) { argument
19 $box->readCSS($pipeline->get_current_css_state());
21 $ibox = InlineBox::create_from_text(" ", WHITESPACE_PRE, $pipeline);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Genomics/
H A DMetadata.php103 public function setPipeline(Pipeline $pipeline) argument
105 $this->pipeline = $pipeline;
112 return $this->pipeline;
/plugin/html2pdf/html2pdf/html2ps/unittest/
H A Dtest.width.absolute.positioned.php6 $pipeline = null;
9 $pipeline);
16 …$pipeline->output_driver->stringwidth('No positioning data at all', 'Times-Roman', 'iso-8859-1', $…
21 … $pipeline->output_driver->stringwidth('Left', 'Times-Roman', 'iso-8859-1', $base),
46 … $pipeline->output_driver->stringwidth('Right', 'Times-Roman', 'iso-8859-1', $base),
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudLifeSciences/
H A DMetadata.php107 public function setPipeline(Pipeline $pipeline) argument
109 $this->pipeline = $pipeline;
116 return $this->pipeline;

12345