Home
last modified time | relevance | path

Searched refs:dump (Results 1 – 25 of 99) sorted by relevance

1234

/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DDumperTest.php77 $this->assertEquals($expected, $dumper->dump($this->array, 4, 0));
182 $dump = $this->dumper->dump(['foo' => new A(), 'bar' => 1], 0, 0, Yaml::DUMP_OBJECT);
189 $dump = $this->dumper->dump(['foo' => new A(), 'bar' => 1]);
207 $this->assertEquals($expected, $this->dumper->dump($input));
240 $this->assertSame($expected, $this->dumper->dump(['data' => $binaryData]));
246 $this->assertSame('!!binary ZsM/cg==', $this->dumper->dump("f\xc3\x3fr"));
254 $yaml = $this->dumper->dump($object, 0, 0, Yaml::DUMP_OBJECT_AS_MAP);
294 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP);
313 $yaml = $this->dumper->dump($outer, 0, 0, Yaml::DUMP_OBJECT_AS_MAP);
325 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP);
[all …]
H A DYamlTest.php22 $yml = Yaml::dump($data);
33 Yaml::dump(['lorem' => 'ipsum', 'dolor' => 'sit'], 2, 0);
42 Yaml::dump(['lorem' => 'ipsum', 'dolor' => 'sit'], 2, -4);
H A DInlineTest.php89 …$this->assertEquals($yaml, Inline::dump($value), sprintf('::dump() converts a PHP structure to an …
91 … $this->assertSame($value, Inline::parse(Inline::dump($value), $parseFlags), 'check consistency');
107 $this->assertEquals('1.2', Inline::dump(1.2));
118 $this->assertSame($value, Inline::parse(Inline::dump($value)));
588 $this->assertSame($expected, Inline::dump($dateTime));
659 $yamlString = Inline::dump(['longStringWithQuotes' => $longStringWithQuotes]);
/plugin/wst/syntax/
H A Dtemplate.php60 $dump = trim(substr($match, 6, -2)); // remove curly brackets and "wst:" keyword
61 …$dump = preg_replace_callback('/\{\{(((?!(\{\{|\}\})).*?|(?R))*)\}\}/', function($match) {return s…
62 $dump = explode('|', $dump); // split template name and arguments
63 $template_name = $dump[0];
64 array_splice($dump, 0, 1); // leave only arguments (if any)
65 if ($dump) {
67 foreach ($dump as $key => $value) {
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Ddump.rst1 ``dump``
5 The ``dump`` function was added in Twig 1.5.
7 The ``dump`` function dumps information about a template variable. This is
13 {{ dump(user) }}
17 The ``dump`` function is not available by default. You must add the
27 Even when enabled, the ``dump`` function won't display anything if the
37 {{ dump(user) }}
50 {{ dump(user, categories) }}
57 {{ dump() }}
66 * ``context``: The context to dump
/plugin/combo/vendor/symfony/yaml/
H A DDumper.php49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string function in Symfony\\Component\\Yaml\\Dumper
60 $output .= $prefix.Inline::dump($input, $flags);
84 $output .= sprintf('%s%s%s |%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '', $blockIndentationIndicator, $blockChompingIndicator);
98 $output .= sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value->getTag());
114 $output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n";
117 $output .= $this->dump($value->getValue(), $inline - 1, $dumpAsMap ? $indent + $this->indentation : $indent + 2, $flags);
133 $dumpAsMap ? Inline::dump($key, $flags).':' : '-',
135 $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
161 return $output.' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n";
164 return $output."\n".$this->dump(
[all...]
H A DYaml.php17 * Yaml offers convenience methods to load and dump YAML.
86 * The dump method, when supplied with an array, will do its best
94 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string function in Symfony\\Component\\Yaml\\Yaml
98 return $yaml->dump($input, $inline, 0, $flags);
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DDumper.php49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string function in Symfony\\Component\\Yaml\\Dumper
60 $output .= $prefix.Inline::dump($input, $flags);
69 …$output .= sprintf("%s%s%s |%s\n", $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '',…
88 $dumpAsMap ? Inline::dump($key, $flags).':' : '-',
90 … $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags)
H A DYaml.php95 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string function in Symfony\\Component\\Yaml\\Yaml
99 return $yaml->dump($input, $inline, 0, $flags);
H A DInline.php124 public static function dump($value, int $flags = 0): string function in Symfony\\Component\\Yaml\\Inline
137 return '!'.$value->getTag().' '.self::dump($value->getValue(), $flags);
141 return '!php/object '.self::dump(serialize($value));
148 … $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
244 $output[] = self::dump($val, $flags);
253 $output[] = sprintf('%s: %s', self::dump($key, $flags), self::dump($val, $flags));
H A DCHANGELOG.md26 * being able to pass boolean options to the `Yaml::parse()`, `Yaml::dump()`,
27 `Parser::parse()`, and `Dumper::dump()` methods to configure the behavior of
99 Yaml::dump([], 0, 0, Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE);
121 * Added support to dump `stdClass` and `ArrayAccess` objects as YAML mappings
151 …Yaml::dump(['foo' => new A(), 'bar' => 1], 0, 0, Yaml::DUMP_EXCEPTION_ON_INVALID_TYPE | Yaml::DUMP…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Ddump.test2 "dump" function
6 {{ dump('foo') }}
7 {{ dump('foo', 'bar') }}
H A Ddump_array.test2 "dump" function, xdebug is not loaded or xdebug <2.2-dev is loaded
6 {{ dump() }}
/plugin/odt/ODT/css/
H A Dcssdocument.php410 $dump = '';
411 $dump .= 'RootLevel: '.$this->rootLevel.', RootIndex: '.$this->rootIndex."\n";
414 $dump .= str_repeat(' ', $element ['level'] * 2);
416 $dump .= '<'.$element ['element'];
417 $dump .= ' '.$element ['attributes'].'>';
419 $dump .= '</'.$element ['element'].'>';
421 $dump .= ' (Level: '.$element ['level'].')';
422 $dump .= "\n";
424 return $dump;
/plugin/dump/
H A Dplugin.info.txt1 base dump
7 desc A plugin to dump the callstack for debugging purpose
/plugin/sketchcanvas/script/
H A Djs-yaml.min.js2 !function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.jsyaml=e()}}(function(){return function e(t,n,i){function r(a,s){if(!n[a]){if(!t[a]){var u="function"==typeof require&&require;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=new Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=n[a]={exports:{}};t[a][0].call(l.exports,function(e){var n=t[a][1][e];return r(n?n:e)},l,l.exports,e,t,n,i)}return n[a].exports}for(var o="function"==typeof require&&require,a=0;a<i.length;a++)r(i[a]);return r}({1:[function(e,t,n){"use strict";function i(e){return function(){throw new Error("Function "+e+" is deprecated and cannot be used.")}}var r=e("./js-yaml/loader"),o=e("./js-yaml/dumper");t.exports.Type=e("./js-yaml/type"),t.exports.Schema=e("./js-yaml/schema"),t.exports.FAILSAFE_SCHEMA=e("./js-yaml/schema/failsafe"),t.exports.JSON_SCHEMA=e("./js-yaml/schema/json"),t.exports.CORE_SCHEMA=e("./js-yaml/schema/core"),t.exports.DEFAULT_SAFE_SCHEMA=e("./js-yaml/schema/default_safe"),t.exports.DEFAULT_FULL_SCHEMA=e("./js-yaml/schema/default_full"),t.exports.load=r.load,t.exports.loadAll=r.loadAll,t.exports.safeLoad=r.safeLoad,t.exports.safeLoadAll=r.safeLoadAll,t.exports.dump=o.dump,t.exports.safeDump=o.safeDump,t.exports.YAMLException=e("./js-yaml/exception"),t.exports.MINIMAL_SCHEMA=e("./js-yaml/schema/failsafe"),t.exports.SAFE_SCHEMA=e("./js-yaml/schema/default_safe"),t.exports.DEFAULT_SCHEMA=e("./js-yaml/schema/default_full"),t.exports.scan=i("scan"),t.exports.parse=i("parse"),t.exports.compose=i("compose"),t.exports.addConstructor=i("addConstructor")},{"./js-yaml/dumper":3,"./js-yaml/exception":4,"./js-yaml/loader":5,"./js-yaml/schema":7,"./js-yaml/schema/core":8,"./js-yaml/schema/default_full":9,"./js-yaml/schema/default_safe":10,"./js-yaml/schema/failsafe":11,"./js-yaml/schema/json":12,"./js-yaml/type":13}],2:[function(e,t,n){"use strict";function i(e){return"undefined"==typeof e||null===e}function r(e){return"object"==typeof e&&null!==e}function o(e){return Array.isArray(e)?e:i(e)?[]:[e]}function a(e,t){var n,i,r,o;if(t)for(o=Object.keys(t),n=0,i=o.length;i>n;n+=1)r=o[n],e[r]=t[r];return e}function s(e,t){var n,i="";for(n=0;t>n;n+=1)i+=e;return i}function u(e){return 0===e&&Number.NEGATIVE_INFINITY===1/e}t.exports.isNothing=i,t.exports.isObject=r,t.exports.toArray=o,t.exports.repeat=s,t.exports.isNegativeZero=u,t.exports.extend=a},{}],3:[function(e,t,n){"use strict";function i(e,t){var n,i,r,o,a,s,u;if(null===t)return{};for(n={},i=Object.keys(t),r=0,o=i.length;o>r;r+=1)a=i[r],s=String(t[a]),"!!"===a.slice(0,2)&&(a="tag:yaml.org,2002:"+a.slice(2)),u=e.compiledTypeMap[a],u&&F.call(u.styleAliases,s)&&(s=u.styleAliases[s]),n[a]=s;return n}function r(e){var t,n,i;if(t=e.toString(16).toUpperCase(),255>=e)n="x",i=2;else if(65535>=e)n="u",i=4;else{if(!(4294967295>=e))throw new I("code point within a string may not be greater than 0xFFFFFFFF");n="U",i=8}return"\\"+n+j.repeat("0",i-t.length)+t}function o(e){this.schema=e.schema||S,this.indent=Math.max(1,e.indent||2),this.skipInvalid=e.skipInvalid||!1,this.flowLevel=j.isNothing(e.flowLevel)?-1:e.flowLevel,this.styleMap=i(this.schema,e.styles||null),this.sortKeys=e.sortKeys||!1,this.implicitTypes=this.schema.compiledImplicit,this.explicitTypes=this.schema.compiledExplicit,this.tag=null,this.result="",this.duplicates=[],this.usedDuplicates=null}function a(e,t){for(var n,i=j.repeat(" ",t),r=0,o=-1,a="",s=e.length;s>r;)o=e.indexOf("\n",r),-1===o?(n=e.slice(r),r=s):(n=e.slice(r,o+1),r=o+1),n.length&&"\n"!==n&&(a+=i),a+=n;return a}function s(e,t){return"\n"+j.repeat(" ",e.indent*t)}function u(e,t){var n,i,r;for(n=0,i=e.implicitTypes.length;i>n;n+=1)if(r=e.implicitTypes[n],r.resolve(t))return!0;return!1}function c(e){this.source=e,this.result="",this.checkpoint=0}function l(e,t,n){var i,r,o,s,l,f,m,g,y,x,v,A,b,w,C,k,j,I,S,O,E;if(0===t.length)return void(e.dump="''");if(-1!==te.indexOf(t))return void(e.dump="'"+t+"'");for(i=!0,r=t.length?t.charCodeAt(0):0,o=M===r||M===t.charCodeAt(t.length-1),(K===r||G===r||V===r||J===r)&&(i=!1),o?(i=!1,s=!1,l=!1):(s=!0,l=!0),f=!0,m=new c(t),g=!1,y=0,x=0,v=e.indent*n,A=80,40>v?A-=v:A=40,w=0;w<t.length;w++){if(b=t.charCodeAt(w),i){if(h(b))continue;i=!1}f&&b===P&&(f=!1),C=ee[b],k=d(b),(C||k)&&(b!==T&&b!==D&&b!==P?(s=!1,l=!1):b===T&&(g=!0,f=!1,w>0&&(j=t.charCodeAt(w-1),j===M&&(l=!1,s=!1)),s&&(I=w-y,y=w,I>x&&(x=I))),b!==D&&(f=!1),m.takeUpTo(w),m.escapeChar())}if(i&&u(e,t)&&(i=!1),S="",(s||l)&&(O=0,t.charCodeAt(t.length-1)===T&&(O+=1,t.charCodeAt(t.length-2)===T&&(O+=1)),0===O?S="-":2===O&&(S="+")),l&&A>x&&(s=!1),g||(l=!1),i)e.dump=t;else if(f)e.dump="'"+t+"'";else if(s)E=p(t,A),e.dump=">"+S+"\n"+a(E,v);else if(l)S||(t=t.replace(/\n$/,"")),e.dump="|"+S+"\n"+a(t,v);else{if(!m)throw new Error("Failed to dump scalar value");m.finish(),e.dump
[all...]
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/
H A DDocumentation.php117 ->given($dump = new LUT\Visitor\Dump())
118 ->when($result = $dump->visit($ast))
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/
H A DHtmlDumper.php30 public function dump(Profile $profile) function in Twig\\Profiler\\Dumper\\HtmlDumper
32 return '<pre>'.parent::dump($profile).'</pre>';
/plugin/c3chart/assets/
H A Djs-yaml.min.js2dump=function(){if(0===t.length)return 2===e.quotingType?'""':"''";if(!e.noCompatMode&&(-1!==Te.in… function
/plugin/achart/assets/
H A Djs-yaml.min.js2dump=function(){if(0===t.length)return 2===e.quotingType?'""':"''";if(!e.noCompatMode&&(-1!==Te.in… function
/plugin/amcharts/assets/
H A Djs-yaml.min.js2dump=r.dump,t.exports.safeDump=r.safeDump,t.exports.YAMLException=e("./js-yaml/exception"),t.expor…
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DGlobAsset.php61 public function dump(FilterInterface $additionalFilter = null) function in Assetic\\Asset\\GlobAsset
67 return parent::dump($additionalFilter);
/plugin/findologicxmlexport/vendor/hoa/math/Bin/
H A DCalc.php92 $dump = new Compiler\Visitor\Dump();
165 echo $dump->visit($compiler->parse($handle)), "\n";
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DBrowserConsoleHandler.php176 $context = static::dump('Context', $record['context']);
177 $extra = static::dump('Extra', $record['extra']);
249 private static function dump(string $title, array $dict): array function in Monolog\\Handler\\BrowserConsoleHandler
/plugin/jplayer/vendor/kriswallsmith/assetic/
H A DREADME.md18 echo $js->dump();
60 echo $css->dump();
71 echo $leaf->dump();
191 echo $css->dump();
205 You can dump all the assets an AssetManager holds to files in a directory. This will probably be be…
249 echo $css->dump();
272 $js->dump();
273 $js->dump();
274 $js->dump();

1234