/plugin/barcodes/lib/ |
H A D | BarcodesWrapper.php | 32 private $factory; variable in DokuWiki\\Barcodes\\BarcodesWrapper 56 $this->factory = QRcode::factory(); 57 $this->factory->setMargin(0); 60 $this->factory = Datamatrix::factory(); 61 $this->factory->setMargin(0); 64 $this->factory = Barcode::factory(); 65 $this->factory [all...] |
/plugin/findologicxmlexport/vendor/jms/metadata/tests/ |
H A D | MetadataFactoryTest.php | 36 $factory = new MetadataFactory($driver); 64 $factory = new MetadataFactory($driver); 102 $factory = new MetadataFactory($driver); 122 $factory = new MetadataFactory($driver); 136 $factory->setCache($cache); 183 $factory->setIncludeInterfaces(true); 204 $factory->getAllClassNames(); 235 $factory->setCache($cache); 242 $factory->setCache($cache); 271 $factory->setCache($cache); [all …]
|
/plugin/authfacebook/lib/ |
H A D | FacebookResponse.php | 287 $factory = new GraphNodeFactory($this); 301 $factory = new GraphNodeFactory($this); 303 return $factory->makeGraphAlbum(); 315 $factory = new GraphNodeFactory($this); 317 return $factory->makeGraphPage(); 329 $factory = new GraphNodeFactory($this); 343 $factory = new GraphNodeFactory($this); 345 return $factory->makeGraphUser(); 357 $factory = new GraphNodeFactory($this); 359 return $factory->makeGraphEvent(); [all …]
|
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/ |
H A D | UtilsTest.php | 16 $s = Stream::factory('foobaz'); 26 $s1 = Stream::factory('foobaz'); 38 $s1 = Stream::factory('foobaz'); 39 $s2 = Stream::factory(''); 42 $s2 = Stream::factory(''); 52 $s1 = Stream::factory('foobaz'); 53 $s2 = Stream::factory(''); 61 $s1 = Stream::factory('foobaz'); 62 $s2 = Stream::factory(''); 70 $s1 = Stream::factory('fooba [all...] |
H A D | AppendStreamTest.php | 53 Stream::factory('foo'), 54 Stream::factory('bar'), 55 Stream::factory('baz'), 68 $s1 = Stream::factory('foo'); 69 $s2 = Stream::factory('foo'); 79 $s1 = Stream::factory('foo'); 87 $a = new AppendStream([Stream::factory('foo')]); 103 Stream::factory('foo'), 104 Stream::factory('bar'), 105 Stream::factory('ba [all...] |
H A D | StreamTest.php | 124 $stream = Stream::factory($h); 175 $stream = Stream::factory('foo'); 183 $s = Stream::factory(); 190 $s = Stream::factory($r); 198 $s = Stream::factory($r); 205 $s = Stream::factory('foo'); 206 $this->assertSame($s, Stream::factory($s)); 212 Stream::factory(new \stdClass()); 217 $s = Stream::factory('foo', ['metadata' => ['hwm' => 3]]); 224 $s = Stream::factory('', ['siz [all...] |
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ |
H A D | AsseticExtension.php | 19 protected $factory; variable in Assetic\\Extension\\Twig\\AsseticExtension 23 …public function __construct(AssetFactory $factory, $functions = array(), ValueSupplierInterface $v… argument 25 $this->factory = $factory; 41 new AsseticTokenParser($this->factory, 'javascripts', 'js/*.js'), 42 new AsseticTokenParser($this->factory, 'stylesheets', 'css/*.css'), 43 new AsseticTokenParser($this->factory, 'image', 'images/*', true), 61 'debug' => $this->factory->isDebug(), 69 return new AsseticFilterInvoker($this->factory, $this->functions[$function]);
|
H A D | AsseticFilterInvoker.php | 21 private $factory; variable in Assetic\\Extension\\Twig\\AsseticFilterInvoker 25 public function __construct($factory, $filter) argument 27 $this->factory = $factory; 40 return $this->factory; 55 $asset = $this->factory->createAsset($input, $this->filters, $options + $this->options);
|
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/ |
H A D | FactoryTest.php | 73 $factory = new Factory; 74 $actual = $factory->getComparatorFor($a, $b); 85 $factory = new Factory; 86 $factory->register($comparator); 91 $actual = $factory->getComparatorFor($a, $b); 93 $factory->unregister($comparator); 104 $factory = new Factory; 105 $factory->register($comparator); 106 $factory->unregister($comparator); 111 $actual = $factory->getComparatorFor($a, $b);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
H A D | TwistedEdwards.php | 99 $this->factory = new PrimeField($modulo); 100 $this->zero = $this->factory->newInteger(new BigInteger(0)); 101 $this->one = $this->factory->newInteger(new BigInteger(1)); 102 $this->two = $this->factory->newInteger(new BigInteger(2)); 110 if (!isset($this->factory)) { 113 $this->a = $this->factory->newInteger($a); 114 $this->d = $this->factory->newInteger($d); 128 if (!isset($this->factory)) { 132 $x instanceof BigInteger ? $this->factory->newInteger($x) : $x, 133 $y instanceof BigInteger ? $this->factory->newInteger($y) : $y [all …]
|
H A D | Montgomery.php | 48 protected $factory; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Montgomery 105 $this->factory = new PrimeField($modulo); 106 $this->zero = $this->factory->newInteger(new BigInteger()); 107 $this->one = $this->factory->newInteger(new BigInteger(1)); 115 if (!isset($this->factory)) { 118 $this->a = $this->factory->newInteger($a); 119 $two = $this->factory->newInteger(new BigInteger(2)); 120 $four = $this->factory->newInteger(new BigInteger(4)); 139 if (!isset($this->factory)) { 155 if (!isset($this->factory)) { [all …]
|
H A D | Base.php | 55 protected $factory; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Base 64 return $this->factory->randomInteger(); 74 return $this->factory->newInteger($x); 84 return $this->factory->getLengthInBytes(); 94 return $this->factory->getLength(); 182 $this->factory->setReduction($func);
|
H A D | Binary.php | 44 protected $factory; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Binary 94 $this->factory = new BinaryField(...$modulo); 96 $this->one = $this->factory->newInteger("\1"); 107 if (!isset($this->factory)) { 110 $this->a = $this->factory->newInteger(pack('H*', $a)); 111 $this->b = $this->factory->newInteger(pack('H*', $b)); 128 if (!isset($this->factory)) { 133 is_string($y) ? $this->factory->newInteger(pack('H*', $y)) : $y 144 if (!isset($this->factory)) { 162 if (!isset($this->factory)) { [all …]
|
/plugin/combo/vendor/dragonmantank/cron-expression/tests/Cron/ |
H A D | CronExpressionTest.php | 17 * @covers Cron\CronExpression::factory 21 $this->assertEquals('0 0 1 1 *', CronExpression::factory('@annually')->getExpression()); 22 $this->assertEquals('0 0 1 1 *', CronExpression::factory('@yearly')->getExpression()); 23 $this->assertEquals('0 0 * * 0', CronExpression::factory('@weekly')->getExpression()); 34 $cron = CronExpression::factory('1 2-4 * 4,5,6 */3'); 45 $cron = CronExpression::factory('A 1 2 3 4'); 58 $cron = CronExpression::factory($schedule); 91 $cron = CronExpression::factory('* * * 1'); 101 $cron = CronExpression::factory('* * * * *'); 197 $cron = CronExpression::factory( [all...] |
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/ |
H A D | Assert.php | 31 throw PHPUnit_Util_InvalidArgumentHelper::factory( 38 throw PHPUnit_Util_InvalidArgumentHelper::factory( 60 throw PHPUnit_Util_InvalidArgumentHelper::factory( 67 throw PHPUnit_Util_InvalidArgumentHelper::factory( 88 throw PHPUnit_Util_InvalidArgumentHelper::factory( 95 throw PHPUnit_Util_InvalidArgumentHelper::factory( 140 throw PHPUnit_Util_InvalidArgumentHelper::factory( 209 throw PHPUnit_Util_InvalidArgumentHelper::factory( 254 throw PHPUnit_Util_InvalidArgumentHelper::factory( 285 throw PHPUnit_Util_InvalidArgumentHelper::factory( [all …]
|
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/ |
H A D | Comparator.php | 23 protected $factory; variable in SebastianBergmann\\Comparator\\Comparator 36 * @param Factory $factory 38 public function setFactory(Factory $factory) argument 40 $this->factory = $factory;
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/ |
H A D | functions.php | 22 * @param AssetFactory $factory The asset factory 24 function assetic_init(AssetFactory $factory) argument 29 $_assetic->factory = $factory; 109 $coll = $_assetic->factory->createAsset($inputs, $filters, $options); 111 $debug = isset($options['debug']) ? $options['debug'] : $_assetic->factory->isDebug();
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/ |
H A D | LazyAssetManager.php | 26 private $factory; variable in Assetic\\Factory\\LazyAssetManager 36 * @param AssetFactory $factory The asset factory 39 public function __construct(AssetFactory $factory, $loaders = array()) argument 41 $this->factory = $factory; 177 parent::set($name, $this->factory->createAsset($inputs, $filters, $options)); 203 return $this->factory->isDebug(); 208 return $this->factory->getLastModified($asset);
|
/plugin/bez/struct/ |
H A D | BezSearch.php | 10 protected $factory; variable in dokuwiki\\plugin\\bez\\struct\\BezSearch 12 public function __construct($data, Factory $factory) { argument 15 $this->factory = $factory;
|
/plugin/xcom/scripts/ |
H A D | xcom_latinize.js | 4 (function(root, factory) { 7 define(factory); 10 module.exports = factory(); 13 root.xcom_latinize = factory();
|
/plugin/elasticsearch/vendor/react/promise/src/ |
H A D | LazyPromise.php | 10 private $factory; variable in React\\Promise\\LazyPromise 13 public function __construct(callable $factory) argument 15 $this->factory = $factory; 56 $this->promise = resolve(\call_user_func($this->factory));
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/ |
H A D | CurlHandler.php | 17 private $factory; variable in GuzzleHttp\\Handler\\CurlHandler 28 $this->factory = isset($options['handle_factory']) 39 $easy = $this->factory->create($request, $options); 43 return CurlFactory::finish($this, $easy, $this->factory);
|
/plugin/sequencediagram/bower_components/lodash/dist/ |
H A D | mapping.fp.js | 1 (function webpackUniversalModuleDefinition(root, factory) { 3 module.exports = factory(); 5 define([], factory); 7 exports["mapping"] = factory(); 9 root["mapping"] = factory();
|
/plugin/autotabber/ |
H A D | taboverride.escape.js | 14 (function (factory) { 19 factory(require('taboverride')); 23 define(['taboverride'], factory); 26 factory(tabOverride);
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/ |
H A D | CacheBustingWorker.php | 32 public function process(AssetInterface $asset, AssetFactory $factory) argument 44 $replace = $this->separator.$this->getHash($asset, $factory).'.'.$search; 55 protected function getHash(AssetInterface $asset, AssetFactory $factory) argument 59 hash_update($hash, $factory->getLastModified($asset));
|