Home
last modified time | relevance | path

Searched refs:input (Results 676 – 700 of 1436) sorted by path

1...<<21222324252627282930>>...58

/plugin/feedback/_test/
H A DgetFeedbackContact.test.php76 public function test_getFeedbackContact ($input, $options, $expected_output, $message) { argument
89 $actual_output = $action->getFeedbackContact($input);
/plugin/fetchmedia/lib/
H A Dbundle.js1 …uerySelector('input[name="namespace"]').value,type:s.querySelector('input[name="mediatypes"]:check…
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php337 * @param string $input The docblock string to parse.
342 public function parse($input, $context = '') argument
344 $pos = $this->findInitialTokenPosition($input);
351 $this->lexer->setInput(trim(substr($input, $pos), '* /'));
360 * @param string $input The docblock string to parse
364 private function findInitialTokenPosition($input) argument
369 while (($pos = strpos($input, '@', $pos)) !== false) {
370 $preceding = substr($input, $pos - 1, 1);
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/
H A DAbstractLexer.php37 private $input; variable in Doctrine\\Common\\Lexer\\AbstractLexer
86 * @param string $input The input to be tokenized.
90 public function setInput($input) argument
92 $this->input = $input;
96 $this->scan($input);
143 return substr($this->input, 0, $position);
241 * @param string $input A query string.
245 protected function scan($input) argument
259 $matches = preg_split($regex, $input, -1, $flags);
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/CSV/
H A DCSVItem.php104 private function sanitize($input, $stripTags = true) argument
107 $input = strip_tags($input);
110 $sanitized = preg_replace('/\t/', ' ', $input);
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DREADME.md417 A stream is like a pipe, with an input, and an output. This is
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md419 - Make sure input is always a string [\#755](https://github.com/schmittjoh/serializer/pull/755) ([g…
500 - Throw exceptions on invalid input [\#112](https://github.com/schmittjoh/serializer/issues/112)
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DObjectWithToString.php9 private $input; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithToString
11 public function __construct($input) argument
13 $this->input = $input;
18 return $this->input;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DArrayTest.php40 public function testToArrayWithScalar($input) argument
45 gettype($input),
46 gettype($input)
48 $result = $this->serializer->toArray($input);
50 self::assertEquals([$input], $result);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/
H A Dbootstrap.min.css5input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,… selector
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dbootstrap.min.js6input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.ne…
H A Djquery.min.js2 …{return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/
H A DJSON.php246 array_walk_recursive($buffer, function (&$input) {
247 if (is_string($input)) {
248 $input = PHPUnit_Util_String::convertToUtf8($input);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dphpt-stdin.phpt7 $input = file_get_contents('php://stdin');
8 echo $input;
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DDiffer.php70 * @param mixed $input
74 private function validateDiffInput($input) argument
76 if (!\is_array($input) && !\is_string($input)) {
77 return (string) $input;
80 return $input;
294 * @param string $input
298 private function splitStringByLines($input) argument
300 return \preg_split('(\r\n|\r|\n)', $input);
/plugin/findologicxmlexport/vendor/symfony/yaml/Command/
H A DLintCommand.php82 protected function execute(InputInterface $input, OutputInterface $output) argument
84 $io = new SymfonyStyle($input, $output);
85 $filenames = (array) $input->getArgument('filename');
86 $this->format = $input->getOption('format');
88 $flags = $input->getOption('parse-tags') ? Yaml::PARSE_CUSTOM_TAGS : 0;
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DDumper.php42 * @param mixed $input The PHP value
49 public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0): string argument
55 …if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($input instanceof \ArrayObject || $input instanceof \std…
56 $dumpObjectAsInlineMap = empty((array) $input);
59 if ($inline <= 0 || (!\is_array($input) && $dumpObjectAsInlineMap) || empty($input)) {
60 $output .= $prefix.Inline::dump($input, $flags);
62 $dumpAsMap = Inline::isHash($input);
64 foreach ($input as $key => $value) {
H A DYaml.php68 * @param string $input A string containing YAML
75 public static function parse(string $input, int $flags = 0) argument
79 return $yaml->parse($input, $flags);
88 * @param mixed $input The PHP value
95 public static function dump($input, int $inline = 2, int $indent = 4, int $flags = 0): string argument
99 return $yaml->dump($input, $inline, 0, $flags);
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DDumperTest.php205 public function testEscapedEscapeSequencesInQuotedScalar($input, $expected) argument
207 $this->assertEquals($expected, $this->dumper->dump($input));
H A DParserTest.php426 $input = <<<'EOF'
435 $input = <<<'EOF'
439 …$this->assertEquals(['foo' => null, 'bar' => 1], $this->parser->parse($input), '->parse() does not…
800 $input = <<<'EOD'
813 $this->assertSame($expected, Yaml::parse($input));
822 $input = <<<'EOD'
831 $this->assertSame($expected, Yaml::parse($input));
838 public function testParseExceptionOnDuplicate($input, $duplicateKey, $lineNumber) argument
842 Yaml::parse($input);
904 $input = <<<'EOF'
[all …]
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Extension/
H A DTextTest.php32 public function testTruncate($input, $length, $preserve, $separator, $expectedOutput) argument
34 $output = twig_truncate_filter($this->env, $input, $length, $preserve, $separator);
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst226 Some filters may need to work on input that is already escaped or safe, for
228 case, set the ``pre_escape`` option to escape the input data before it is run
H A Dadvanced_legacy.rst253 Some filters may need to work on input that is already escaped or safe, for
255 case, set the ``pre_escape`` option to escape the input data before it is run
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dconvert_encoding.rst9 is the input charset:
25 * ``from``: The input charset
H A Djoin.rst35 * ``and``: The separator for the last pair of input items

1...<<21222324252627282930>>...58