Searched defs:getY (Results 1 - 12 of 12) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
H A DDSAPublicKeyParameters.java19 public BigInteger getY() method in class:DSAPublicKeyParameters
H A DDHPublicKeyParameters.java19 public BigInteger getY() method in class:DHPublicKeyParameters
39 return other.getY().equals(y) && super.equals(obj);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
H A DDHPublicKey.java43 public DERInteger getY() method in class:DHPublicKey
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
H A DDHPublicKeyTest.java72 public BigInteger getY() { method in class:DHPublicKeyTest.checkDHPublicKey
H A DPBEKeyTest.java69 public BigInteger getY() { method in class:PBEKeyTest.checkPBEKey
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
H A DDSAPublicKeyTest.java68 public BigInteger getY() { method in class:DSAPublicKeyTest.checkDSAPublicKey
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPublicKey.java35 this.y = spec.getY();
42 this.y = key.getY();
49 this.y = params.getY();
134 public BigInteger getY() method in class:JCEDHPublicKey
174 out.writeObject(this.getY());
H A DJDKDSAPublicKey.java33 this.y = spec.getY();
40 this.y = key.getY();
47 this.y = params.getY();
114 public BigInteger getY() method in class:JDKDSAPublicKey
125 buf.append(" y: ").append(this.getY().toString(16)).append(nl);
132 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
146 return this.getY().equals(other.getY())
/external/replicaisland/src/com/replica/replicaisland/
H A DInputXY.java62 public final float getY() { method in class:InputXY
91 press(other.getLastPressedTime(), other.getX(), other.getY());
H A DInputTouchScreen.java71 public final float getY(int index) { method in class:InputTouchScreen
74 magnitude = mTouchPoints[index].getY();
92 getTouchedWithinRegion(pointer.getX(), pointer.getY(), regionX, regionY, regionWidth, regionHeight)) {
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java41 public ECFieldElement getY() method in class:ECPoint
209 if (this.getY().toBigInteger().testBit(0))
229 byte[] Y = converter.integerToBytes(this.getY().toBigInteger(), qLength);
401 if (this.getY().multiply(this.getX().invert())
413 byte[] Y = converter.integerToBytes(this.getY().toBigInteger(), byteCount);
476 ECFieldElement.F2m y2 = (ECFieldElement.F2m)other.getY();
567 return new ECPoint.F2m(curve, this.getX(), this.getY().add(this.getX()), withCompression);
/external/skia/src/core/
H A DSkCanvas.cpp267 int getY() const { return fDevice->getOrigin().y(); } function in class:SkDrawIter
854 iter.fDevice->drawDevice(iter, device, x - iter.getX(), y - iter.getY(),
1360 iter.fDevice->drawSprite(iter, bitmap, x - iter.getX(), y - iter.getY(),
1668 int SkCanvas::LayerIter::y() const { return fImpl->getY(); }

Completed in 1397 milliseconds