Home
last modified time | relevance | path

Searched refs:classes (Results 201 – 225 of 396) sorted by path

12345678910>>...16

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestResult.php1279 $classes = [new ReflectionClass($className)];
1281 $classes = [$className];
1289 $classes[count($classes) - 1]->getName()
1292 $class = new ReflectionClass($classes[count($classes) - 1]);
1299 $classes[] = $parent;
1301 $classes[] = $parent->getName();
1308 return $classes;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php929 $classes = [$className];
931 foreach ($classes as $className) {
965 $classes = [$className];
967 foreach ($classes as $className) {
1001 $classes = [$element];
1004 $classes = array_merge(
1005 $classes,
1011 foreach ($classes as $className) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/Trac/
H A D523.phpt2 #523: assertAttributeEquals does not work with classes extending ArrayIterator
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A Dautoload.php7 static $classes = null; variable
8 if ($classes === null) {
9 $classes = array( variable
33 if (isset($classes[$cn])) {
34 require __DIR__ . $classes[$cn];
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DBlacklist.php28 private $classes = array(); variable in SebastianBergmann\\GlobalState\\Blacklist
63 $this->classes[] = $className;
119 if (in_array($className, $this->classes)) {
H A DRestorer.php76 $newClasses = array_diff($current->classes(), $snapshot->classes());
H A DSnapshot.php74 private $classes = array(); variable in SebastianBergmann\\GlobalState\\Snapshot
226 public function classes() function in SebastianBergmann\\GlobalState\\Snapshot
228 return $this->classes;
273 $this->classes[] = $className;
276 $this->classes = array_reverse($this->classes);
339 foreach ($this->classes as $className) {
/plugin/findologicxmlexport/vendor/sebastian/global-state/tests/
H A DSnapshotTest.php69 $classes = $snapshot->classes();
71 $this->assertContains('PHPUnit_Framework_TestCase', $classes);
72 $this->assertNotContains('Exception', $classes);
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md44 * the `Dumper`, `Parser`, and `Yaml` classes are marked as final
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG9 * fixed the bundled Autoloader to also load namespaced classes
33 * made namespace classes the default classes (PSR-0 ones are aliases now)
36 * changed internal code to use the namespaced classes as much as possible
117 * added namespaced aliases for all (non-deprecated) classes and interfaces
161 * marked some classes as being final (via @final)
206 * removed template source code from generated template classes when debug is disabled
220 * changed the way we store template source in template classes
309 * fixed regression when using the deprecated Twig_Test_* classes
862 * in Node classes,
980 If you have created NodeTransformer classes, you will need to upgrade them to
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst516 Reading the existing ``TokenParser`` classes is the best way to learn all
855 instance on the environment that knows how to instantiate such runtime classes
856 (runtime classes must be autoload-able)::
H A Dadvanced_legacy.rst226 The ``Twig_Filter`` classes take options as their last argument. For instance,
456 Reading the existing ``TokenParser`` classes is the best way to learn all
H A Ddeprecated.rst65 classes and interfaces will be removed in 2.0:
82 classes and interfaces will be removed in 2.0:
98 * As of Twig 1.x, use ``\Twig\TwigTest`` to add a test. The following classes
223 * As of Twig 1.29, some classes are marked as being final via the `@final`
224 annotation. Those classes will be marked as final in 2.0.
H A Drecipes.rst38 classes). To catch all notices, register a custom error handler like the one
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/LegacyFixtures/
H A Dtest.legacy.test2 Old test classes usage
/plugin/findologicxmlexport/vendor/webmozart/assert/
H A DREADME.md110 …eOfAny($value, array $classes, $message = '')` | Check that a value is an `instanceof` a at least …
/plugin/findologicxmlexport/vendor/webmozart/assert/src/
H A DAssert.php393 public static function isInstanceOfAny($value, array $classes, $message = '') argument
395 foreach ($classes as $class) {
404 implode(', ', array_map(array('static', 'valueToString'), $classes))
/plugin/flowchartjs/
H A Dscript.js13 var classes = cls.length == 1? cls[0]: cls[0] + ' ' + cls[1];
14 var id = classes.replace(/ /g, '_') + '_' + index;
16 jQuery('<div class="' + classes + '" id="' + id + '"></div>')
45 var classes = [];
48 if (cls.length == 1) classes[''] = 1;
49 else classes[cls[1]] = 1;
53 for (var cls in classes){
/plugin/gallery/script/
H A Dprosemirror.js293 this.form = new window.Prosemirror.classes.KeyValueForm(
373 this.prototype = Object.create(window.Prosemirror.classes.AbstractMenuItemDispatcher.prototype);
380 return new window.Prosemirror.classes.MenuItem({
396 var form = new window.Prosemirror.classes.KeyValueForm(
/plugin/geonav/tpl/startermap/css/
H A Dbasic.css454 /*____________ general classes ____________*/
/plugin/geonav/tpl/startermap/
H A Dtpl_functions.php110 $classes = array(
118 return join(' ', $classes);
/plugin/googlefonts/
H A DREADME3 A DokuWiki Plugin to embed google web font for headlines or other tags, css classes or css id's.
/plugin/highlightjs/highlight/
H A Dhighlight.js279 var classes = block.className.split(/\s+/)
280 classes = classes.concat(block.parentNode.className.split(/\s+/));
281 for (var i = 0; i < classes.length; i++) {
282 var class_ = classes[i].replace(/^language-/, '');
H A Dreadme.eng.txt42 A full list of available classes is below ("Languages").
46 marked up by logical pieces with defined class names. The classes are
93 This is a full list of available classes corresponding to languages'
182 pseudo pseudo classes and elemens (:after, ::after etc.)
/plugin/html2pdf/html2pdf/html2ps/
H A DChangeLog21 * Fixed: Characters with AI, SA, SG and XX line breaking classes

12345678910>>...16