Home
last modified time | relevance | path

Searched refs:factory (Results 1 – 25 of 330) sorted by path

12345678910>>...14

/plugin/abc2/abc-libraries/abc2svg/
H A Dsnd-1.js483 (function(root,factory){if(typeof exports==="object"){root.sf2=exports;factory(exports)}else if(typeof define==="function"&&define.amd){define(["exports"],function(exports){root.sf2=exports;return(root.sf2,factory(exports))})}else{root.sf2={};factory(root.sf2)}}(this,function(exports){"use strict";var sf2=exports;sf2.Parser=function(input,options){options=options||{};this.input=input;this.parserOptions=options.parserOptions};sf2.Parser.prototype.parse=function(){var parser=new sf2.Riff.Parser(this.input,this.parserOptions),chunk;parser.parse();if(parser.chunkList.length!==1)
/plugin/advrack/
H A Djquery.qtip.js19 (function( factory ) {
22 define(['jquery'], factory);
25 factory(jQuery);
H A Draphael.js388 (function (glob, factory) {
393 return factory(glob, eve);
398 factory(glob, glob.eve);
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/
H A Dcomposer.lock276 "email": "roman@code-factory.org"
415 "email": "roman@code-factory.org"
/plugin/authfacebook/lib/
H A DFacebookResponse.php287 $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/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md146 * Feature: Middleware now uses an exception factory, including more error
450 `GuzzleHttp\Stream\Stream::factory`, and
554 * Fixed an issue related to using custom message factory options in subclasses
710 * Bug fix: Moving stream factory before send event to before building the stream. See #353
781 * Marked `Guzzle\Cache\CacheAdapterFactory::factory()` as deprecated
917 * Added the ability to create a custom stream class when using a stream factory
925 * Lots of cleanup to CurlHandle::factory and RequestFactory::createRequest
1051 * Bug: Fixed Content-Length parsing of Response factory
1060 * Service clients no longer require a base_url option in the factory
1114 * Adding the ability for the namespace Iterator factory to look in multiple directories
[all …]
H A DUPGRADING.md366 a `message_factory` to change the factory used to create HTTP requests and
453 $factory = new PhpStreamRequestFactory();
454 $stream = $factory->fromRequest($request);
484 longer uses `GuzzleHttp\EntityBody::factory` but now uses
485 `GuzzleHttp\Stream\Stream::factory` or even better:
573 it was `Guzzle\Http\Url::factory()`). If custom URL parsing is necessary,
688 - Marked `Guzzle\Cache\CacheAdapterFactory::factory()` as deprecated
859 $builder = Guzzle\Service\Builder\ServiceBuilder::factory('/path/to/config.json');
912 public static function factory($config = array())
938 public static function factory($config = array())
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlFactory.php91 * @param CurlFactoryInterface $factory Dictates how the handle is released
98 CurlFactoryInterface $factory argument
105 return self::finishError($handler, $easy, $factory);
109 $factory->release($easy);
137 CurlFactoryInterface $factory argument
146 $factory->release($easy);
H A DCurlHandler.php17 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);
H A DCurlMultiHandler.php21 private $factory; variable in GuzzleHttp\\Handler\\CurlMultiHandler
41 $this->factory = isset($options['handle_factory'])
83 $easy = $this->factory->create($request, $options);
201 $this->factory
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php55 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 DBinary.php44 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 …]
H A DKoblitzPrime.php79 $factory = new PrimeField($this->order);
80 $tempOne = $factory->newInteger($one);
81 $tempTwo = $factory->newInteger($two);
82 $tempThree = $factory->newInteger(new BigInteger(3));
164 $nscalars[$pos] = $this->factory->newInteger($k1);
168 $nscalars[$pos] = $this->factory->newInteger($k2);
H A DMontgomery.php48 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 DPrime.php46 protected $factory; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Prime
124 $this->factory = new PrimeField($modulo);
125 $this->two = $this->factory->newInteger(new BigInteger(2));
128 $this->one = $this->factory->newInteger(new BigInteger(1));
138 if (!isset($this->factory)) {
141 $this->a = $this->factory->newInteger($a);
142 $this->b = $this->factory->newInteger($b);
160 if (!isset($this->factory)) {
176 if (!isset($this->factory)) {
301 if (!isset($this->factory)) {
[all …]
H A DTwistedEdwards.php99 $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 …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DCurve25519.php27 $this->a24 = $this->factory->newInteger(new BigInteger('121666'));
28 $this->p = [$this->factory->newInteger(new BigInteger(9))];
H A DCurve448.php31 $this->a24 = $this->factory->newInteger(new BigInteger('39081'));
32 $this->p = [$this->factory->newInteger(new BigInteger(5))];
H A DEd25519.php111 $y = $this->factory->newInteger($y);
250 if (!isset($this->factory)) {
290 if (!isset($this->factory)) {
H A DEd448.php67 $y = $this->factory->newInteger($y);
190 if (!isset($this->factory)) {
228 if (!isset($this->factory)) {
H A Dsecp160k1.php46 …$this->beta = $this->factory->newInteger(new BigInteger('645B7345A143464942CC46D7CF4D5D1E1E6CBB68'…
H A Dsecp192k1.php45 …$this->beta = $this->factory->newInteger(new BigInteger('447A96E6C647963E2F7809FEAAB46947F34B0AA3C…
H A Dsecp224k1.php45 …$this->beta = $this->factory->newInteger(new BigInteger('01F178FFA4B17C89E6F73AECE2AAD57AF4C0A748B…
H A Dsecp256k1.php49 …$this->beta = $this->factory->newInteger(new BigInteger('7AE96A2B657C07106E64479EAC3434E99CF049751…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php732 $factory = self::$factory128;
736 $factory = self::$factory64;
741 $k = $factory->newInteger($k);
752 $y = $factory->newInteger(new BigInteger(1));
754 $m = $factory->newInteger(new BigInteger($m, 256));
779 $factory = self::$factory36;
781 $y = $factory->newInteger(new BigInteger());
783 $m_i = $factory->newInteger(new BigInteger(substr($m, 2 * $i, 2), 256));
784 $k_i = $factory->newInteger(new BigInteger(substr($k1, 8 * $i, 8), 256));

12345678910>>...14