Searched defs:getX (Results 1 - 15 of 15) sorted by relevance

/external/v8/test/mjsunit/
H A Daccessors-on-global-object.js33 function getX() { return x; } function
36 assertEquals(i < 5 ? 0 : 42, getX());
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
H A DDSAPrivateKeyParameters.java19 public BigInteger getX() method in class:DSAPrivateKeyParameters
H A DDHPrivateKeyParameters.java19 public BigInteger getX() method in class:DHPrivateKeyParameters
39 return other.getX().equals(this.x) && super.equals(obj);
/external/clang/test/Index/
H A Dget-cursor.cpp10 X getX(int value) { function
23 X getX();
26 X Y::getX() { function in class:Y
66 // CHECK-MEMFUNC-DECL: CXXMethod=getX:23:5
68 // CHECK-MEMFUNC-DEF: CXXMethod=getX:26:6
/external/clang/test/PCH/
H A Dstruct.c10 float getX(struct Point *p1) { function
/external/webkit/Source/JavaScriptGlue/
H A Dtestjsglue.cpp35 function getX() \n\
49 JSObjectRef getX = JSObjectCopyProperty(globalObject, CFSTR("getX")); local
50 JSObjectRef jsResult = JSObjectCallFunction(getX, globalObject, 0);
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
H A DDHPrivateKeyTest.java70 public BigInteger getX() { method in class:DHPrivateKeyTest.checkDHPrivateKey
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
H A DDSAPrivateKeyTest.java69 public BigInteger getX() { method in class:DSAPrivateKeyTest.checkDSAPrivateKey
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPrivateKey.java45 this.x = key.getX();
52 this.x = spec.getX();
94 this.x = params.getX();
126 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(getX()));
136 public BigInteger getX() method in class:JCEDHPrivateKey
154 out.writeObject(this.getX());
H A DJDKDSAPrivateKey.java41 this.x = key.getX();
48 this.x = spec.getX();
65 this.x = params.getX();
92 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(getX()));
102 public BigInteger getX() method in class:JDKDSAPrivateKey
117 return this.getX().equals(other.getX())
125 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
/external/replicaisland/src/com/replica/replicaisland/
H A DInputXY.java58 public final float getX() { method in class:InputXY
91 press(other.getLastPressedTime(), other.getX(), other.getY());
H A DInputTouchScreen.java63 public final float getX(int index) { method in class:InputTouchScreen
66 magnitude = mTouchPoints[index].getX();
92 getTouchedWithinRegion(pointer.getX(), pointer.getY(), regionX, regionY, regionWidth, regionHeight)) {
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java36 public ECFieldElement getX() method in class:ECPoint
218 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), qLength);
228 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), qLength);
385 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), byteCount);
399 if (!(this.getX().toBigInteger().equals(ECConstants.ZERO)))
401 if (this.getY().multiply(this.getX().invert())
475 ECFieldElement.F2m x2 = (ECFieldElement.F2m)other.getX();
567 return new ECPoint.F2m(curve, this.getX(), this.getY().add(this.getX()), withCompression);
/external/clang/test/CXX/class.access/
H A Dp4.cpp275 static int getX() { return x; } // expected-error {{'x' is a private member of 'test9::A'}} function in class:test9::C
/external/skia/src/core/
H A DSkCanvas.cpp266 int getX() const { return fDevice->getOrigin().x(); } 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(),
1667 int SkCanvas::LayerIter::x() const { return fImpl->getX(); }

Completed in 443 milliseconds