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

12

/external/chromium_org/v8/test/mjsunit/
H A Daccessors-on-global-object.js33 function getX() { return x; } function
36 assertEquals(i < 5 ? 0 : 42, getX());
/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/bcprov/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/PCH/
H A Dstruct.c10 float getX(struct Point *p1) { function
/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
96 // CHECK-MEMFUNC-DECL: CXXMethod=getX:23:5
98 // CHECK-MEMFUNC-DEF: CXXMethod=getX:26:6
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/signature/
H A DDSAPrivateKey.java53 public BigInteger getX() method in class:DSAPrivateKey
/external/jmonkeyengine/engine/src/core/com/jme3/input/event/
H A DMouseButtonEvent.java89 public int getX() { method in class:MouseButtonEvent
H A DMouseMotionEvent.java93 public int getX() { method in class:MouseMotionEvent
H A DTouchEvent.java143 public float getX() { method in class:TouchEvent
/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/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPrivateKey.java48 this.x = key.getX();
55 this.x = spec.getX();
98 this.x = params.getX();
132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL())), new DERInteger(getX()));
147 public BigInteger getX() method in class:JCEDHPrivateKey
165 out.writeObject(this.getX());
H A DJDKDSAPrivateKey.java44 this.x = key.getX();
51 this.x = spec.getX();
69 this.x = params.getX();
98 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG())), new DERInteger(getX()));
113 public BigInteger getX() method in class:JDKDSAPrivateKey
128 return this.getX().equals(other.getX())
136 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraphItem.java76 public int getX() { method in class:TimeLineGraphItem
/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/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPrivateKey.java48 this.x = key.getX();
55 this.x = spec.getX();
98 this.x = params.getX();
132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive()), new ASN1Integer(getX()));
147 public BigInteger getX() method in class:BCDHPrivateKey
162 return this.getX().equals(other.getX())
170 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java42 this.x = key.getX();
49 this.x = spec.getX();
67 this.x = params.getX();
94 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).toASN1Primitive()), new ASN1Integer(getX()));
102 public BigInteger getX() method in class:BCDSAPrivateKey
117 return this.getX().equals(other.getX())
125 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java36 public ECFieldElement getX() method in class:ECPoint
223 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), qLength);
233 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), qLength);
390 byte[] X = converter.integerToBytes(this.getX().toBigInteger(), byteCount);
404 if (!(this.getX().toBigInteger().equals(ECConstants.ZERO)))
406 if (this.getY().multiply(this.getX().invert())
480 ECFieldElement.F2m x2 = (ECFieldElement.F2m)other.getX();
572 return new ECPoint.F2m(curve, this.getX(), this.getY().add(this.getX()), withCompression);
/external/clang/test/Analysis/
H A Dinitializer.cpp21 int getX() { return x; } function in class:DirectMember
26 clang_analyzer_eval(obj.getX() == 3); // expected-warning{{TRUE}}
37 int getX() { return x; } function in class:IndirectMember
42 clang_analyzer_eval(obj.getX() == 3); // expected-warning{{TRUE}}
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMotionEvent.java49 return obtain(motionEvent.getDownTime(), motionEvent.getEventTime(), motionEvent.getAction(), motionEvent.getX(), motionEvent.getY(), motionEvent.getMetaState());
59 return getX();
68 public final float getX() { method in class:ShadowMotionEvent
69 return getX(0);
78 public final float getX(int pointerIndex) { method in class:ShadowMotionEvent
H A DShadowPath.java109 public float getX() { method in class:ShadowPath.Point
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DTouchPoint.java62 public int getX() { return (int) mX; } method in class:TouchPoint
118 event.getX(i), event.getY(i),
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacter.java72 public int getX() { method in class:BitmapCharacter

Completed in 784 milliseconds

12