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

12

/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/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/clang/test/Index/
H A Dget-cursor.cpp10 X getX(int value) { function
23 X getX();
26 X Y::getX() { function in class:Y
78 // CHECK-MEMFUNC-DECL: CXXMethod=getX:23:5
80 // 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/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}}
H A Dderived-to-base.cpp37 int getX() { return x; } function in class:VirtualBaseClasses::B
52 clang_analyzer_eval(d.getX() == 42); // expected-warning{{TRUE}}
56 clang_analyzer_eval(dv.getX() == 42); // expected-warning{{TRUE}}
60 clang_analyzer_eval(dv2.getX() == 42); // expected-warning{{TRUE}}
72 int getX() { return x; } function in class:VirtualBaseClasses::BI
85 clang_analyzer_eval(d.getX() == 42); // expected-warning{{TRUE}}
/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.java45 this.x = key.getX();
52 this.x = spec.getX();
70 this.x = params.getX();
99 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG())), new DERInteger(getX()));
114 public BigInteger getX() method in class:JDKDSAPrivateKey
129 return this.getX().equals(other.getX())
137 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.java49 this.x = key.getX();
56 this.x = spec.getX();
99 this.x = params.getX();
133 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive()), new ASN1Integer(getX()));
148 public BigInteger getX() method in class:BCDHPrivateKey
163 return this.getX().equals(other.getX())
171 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java43 this.x = key.getX();
50 this.x = spec.getX();
68 this.x = params.getX();
95 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).toASN1Primitive()), new ASN1Integer(getX()));
103 public BigInteger getX() method in class:BCDSAPrivateKey
118 return this.getX().equals(other.getX())
126 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
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/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacter.java72 public int getX() { method in class:BitmapCharacter
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTextureAtlas.java244 drawImage(image, location.getX(), location.getY(), mapName);
267 drawImage(image, location.getX(), location.getY(), mapName);
604 child[0] = new Node(location.getX(), location.getY(), image.getWidth(), location.getHeight());
605 child[1] = new Node(location.getX() + image.getWidth(), location.getY(), location.getWidth() - image.getWidth(), location.getHeight());
607 child[0] = new Node(location.getX(), location.getY(), location.getWidth(), image.getHeight());
608 child[1] = new Node(location.getX(), location.getY() + image.getHeight(), location.getWidth(), location.getHeight() - image.getHeight());
636 float x = (float) getX() / (float) atlasWidth;
670 public int getX() { method in class:TextureAtlas.TextureAtlasTile
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector2f.java597 public float getX() { method in class:Vector2f

Completed in 2154 milliseconds

12