Home
last modified time | relevance | path

Searched refs:y (Results 76 – 100 of 1365) sorted by path

12345678910>>...55

/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DCollectionFeaturedProduct.php33 public $y; variable in Google\\Service\\ShoppingContent\\CollectionFeaturedProduct
66 public function setY($y) argument
68 $this->y = $y;
75 return $this->y;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/
H A DNormalizedCoordinate.php23 public $y; variable in Google\\Service\\Transcoder\\NormalizedCoordinate
33 public function setY($y) argument
35 $this->y = $y;
39 return $this->y;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
H A DGoogleCloudVisionV1p1beta1NormalizedVertex.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p1beta1NormalizedVertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DGoogleCloudVisionV1p1beta1Position.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p1beta1Position
52 public function setY($y) argument
54 $this->y = $y;
61 return $this->y;
H A DGoogleCloudVisionV1p1beta1Vertex.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p1beta1Vertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DGoogleCloudVisionV1p2beta1NormalizedVertex.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p2beta1NormalizedVertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DGoogleCloudVisionV1p2beta1Position.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p2beta1Position
52 public function setY($y) argument
54 $this->y = $y;
61 return $this->y;
H A DGoogleCloudVisionV1p2beta1Vertex.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p2beta1Vertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DGoogleCloudVisionV1p3beta1NormalizedVertex.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p3beta1NormalizedVertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DGoogleCloudVisionV1p3beta1Position.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p3beta1Position
52 public function setY($y) argument
54 $this->y = $y;
61 return $this->y;
H A DGoogleCloudVisionV1p3beta1Vertex.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p3beta1Vertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DGoogleCloudVisionV1p4beta1NormalizedVertex.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p4beta1NormalizedVertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DGoogleCloudVisionV1p4beta1Position.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p4beta1Position
52 public function setY($y) argument
54 $this->y = $y;
61 return $this->y;
H A DGoogleCloudVisionV1p4beta1Vertex.php29 public $y; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p4beta1Vertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DNormalizedVertex.php29 public $y; variable in Google\\Service\\Vision\\NormalizedVertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
H A DPosition.php29 public $y; variable in Google\\Service\\Vision\\Position
52 public function setY($y) argument
54 $this->y = $y;
61 return $this->y;
H A DVertex.php29 public $y; variable in Google\\Service\\Vision\\Vertex
48 public function setY($y) argument
50 $this->y = $y;
57 return $this->y;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md722 echo UriResolver::relativize($base, new Uri('http://example.com/a/x/y')); // prints '../x/y'.
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php3318 $y = ["\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"];
3331 $t = $y[$n] ^ $xn;
3333 $y[++$n] = $temp->multiply($h)->toBytes();
3334 $y[$n] = substr($y[$n], 1);
3336 $y[$n] = Strings::switchEndianness($y[$n]);
3337 return $y[$n];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDSA.php90 protected $y; variable in phpseclib3\\Crypt\\DSA
216 $private->y = $private->g->powMod($private->x, $private->p);
253 $new->y = $components['y'];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DOpenSSH.php58 list($p, $q, $g, $y, $x, $comment) = Strings::unpackSSH2('i5s', $parsed['paddedKey']);
63 list($p, $q, $g, $y) = Strings::unpackSSH2('iiii', $parsed['publicKey']);
81 …public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, a… argument
93 $DSAPublicKey = Strings::packSSH2('siiii', 'ssh-dss', $p, $q, $g, $y);
118 …ion savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $pas… argument
120 $publicKey = self::savePublicKey($p, $q, $g, $y, ['binary' => true]);
121 $privateKey = Strings::packSSH2('si5', 'ssh-dss', $p, $q, $g, $y, $x);
H A DPKCS1.php119 …ion savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $pas… argument
126 'y' => $y,
145 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument
147 $key = ASN1::encodeDER($y, Maps\DSAPublicKey::MAP);
H A DPKCS8.php134 …ion savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $pas… argument
158 …public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, a… argument
167 $key = ASN1::encodeDER($y, Maps\DSAPublicKey::MAP);
H A DPuTTY.php69 list($p, $q, $g, $y) = Strings::unpackSSH2('iiii', $public);
88 …ion savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $pas… argument
94 $public = Strings::packSSH2('iiii', $p, $q, $g, $y);
110 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument
116 return self::wrapPublicKey(Strings::packSSH2('iiii', $p, $q, $g, $y), 'ssh-dsa');
H A DRaw.php73 …ion savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $pas… argument
88 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument

12345678910>>...55