Home
last modified time | relevance | path

Searched refs:string (Results 2251 – 2275 of 3165) sorted by path

1...<<919293949596979899100>>...127

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DNot.php36 * @param string $string
40 public static function negate($string) argument
67 $string
H A DStringContains.php25 protected $string; variable in PHPUnit_Framework_Constraint_StringContains
33 * @param string $string
36 public function __construct($string, $ignoreCase = false) argument
40 $this->string = $string;
55 return mb_stripos($other, $this->string) !== false;
57 return mb_strpos($other, $this->string) !== false;
69 $string = mb_strtolower($this->string);
71 $string = $this->string;
76 $string
H A DStringMatches.php21 protected $string; variable in PHPUnit_Framework_Constraint_StringMatches
24 * @param string $string
26 public function __construct($string) argument
28 parent::__construct($string);
31 preg_replace('/\r\n/', "\n", $string)
34 $this->string = $string;
57 $this->string = implode("\n", $from);
62 return $differ->diff($this->string, $other);
67 $string = str_replace(
94 preg_quote($string, '/')
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DException.php63 $string = PHPUnit_Framework_TestFailure::exceptionToString($this);
66 $string .= "\n" . $trace;
69 return $string;
H A DExceptionWrapper.php77 $string = PHPUnit_Framework_TestFailure::exceptionToString($this);
80 $string .= "\n" . $trace;
84 $string .= "\nCaused by\n" . $this->previous;
87 return $string;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DString.php19 * @param string $string
23 public static function convertToUtf8($string) argument
25 return mb_convert_encoding($string, 'UTF-8');
31 * @param string $string
35 protected static function isUtf8($string) argument
37 $length = strlen($string);
40 if (ord($string[$i]) < 0x80) {
42 } elseif ((ord($string[$i]) & 0xE0) == 0xC0) {
44 } elseif ((ord($string[$i]) & 0xF0) == 0xE0) {
46 } elseif ((ord($string[$i]) & 0xF0) == 0xF0) {
[all …]
H A DXML.php159 * @param string $string
163 public static function prepareString($string) argument
169 PHPUnit_Util_String::convertToUtf8($string),
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DNamePrettifier.php74 $string = preg_replace('#\d+$#', '', $name, -1, $count);
76 if (in_array($string, $this->strings)) {
77 $name = $string;
79 $this->strings[] = $string;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DConstraintTest.php3045 * @param string $string
3049 private function trimnl($string) argument
3051 return preg_replace('/[ ]*\n/', "\n", $string);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D244.phpt2 GH-244: Expected Exception should support string codes
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/_files/
H A Dphpt-env.expected.txt1 string(%d) "%s"
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DClassWithScalarTypeDeclarations.php4 public function foo(string $string, int $int) argument
H A DDataProviderDebugTest.php26 $obj->string = '1';
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DDateTimeComparator.php73 $string = $datetime->format('Y-m-d\TH:i:s.uO');
75 return $string ? $string : 'Invalid DateTimeInterface object';
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DDiffer.php280 * @param string $string
284 private function getNewLineMatches($string) argument
286 \preg_match_all('(\r\n|\r|\n)', $string, $stringMatches);
H A DParser.php19 * @param string $string
23 public function parse($string) argument
25 $lines = \preg_split('(\r\n|\r|\n)', $string);
/plugin/findologicxmlexport/vendor/sebastian/environment/
H A DREADME.md46 string(9) "PHP 5.5.8"
47 string(3) "PHP"
48 string(5) "5.5.8"
49 string(14) "'/usr/bin/php'"
64 string(14) "HHVM 2.4.0-dev"
65 string(4) "HHVM"
66 string(9) "2.4.0-dev"
67 string(42) "'/usr/local/src/hhvm/hphp/hhvm/hhvm' --php"
/plugin/findologicxmlexport/vendor/sebastian/exporter/
H A DREADME.md21 'string' => ''
147 string
/plugin/findologicxmlexport/vendor/sebastian/exporter/src/
H A DExporter.php105 $string = $this->export($value);
108 if (mb_strlen($string) > 40) {
109 $string = mb_substr($string, 0, 30) . '...' . mb_substr($string, -7);
112 if (strlen($string) > 40) {
113 $string = substr($string, 0, 30) . '...' . substr($string, -7);
117 return str_replace("\n", '\n', $string);
/plugin/findologicxmlexport/vendor/sebastian/exporter/tests/
H A DExporterTest.php42 $obj->string = '1';
354 private function trimNewline($string) argument
356 return preg_replace('/[ ]*\n/', "\n", $string);
/plugin/findologicxmlexport/vendor/sebastian/global-state/tests/_fixture/
H A DSnapshotClass.php20 private static $string = 'snapshot'; variable in SebastianBergmann\\GlobalState\\TestFixture\\SnapshotClass
/plugin/findologicxmlexport/vendor/sebastian/recursion-context/tests/
H A DContextTest.php57 $obj->string = '1';
/plugin/findologicxmlexport/vendor/sebastian/version/
H A DREADME.md34 string(18) "3.7.10-17-g00f3408"
36 When a new release is prepared, the string that is passed to the constructor as the first argument …
43 * If `$path` is (part of) a Git repository and `$release` is in `X.Y` format then a string is retur…
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md20 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
22 * `%` at the beginning of an unquoted string throw a `ParseException`
60 * Starting an unquoted string with a question mark followed by a space is
63 * Deprecated support for implicitly parsing non-string mapping keys as strings.
140 * Deprecated usage of `%` at the beginning of an unquoted string.
148 * Added support for customizing the dumped YAML string through an optional bit field:
164 * Deprecated usage of @, \`, | and > at the beginning of an unquoted string
/plugin/findologicxmlexport/vendor/symfony/yaml/Command/
H A DLintCommand.php42 …public function __construct(string $name = null, callable $directoryIteratorProvider = null, calla…

1...<<919293949596979899100>>...127