/external/clang/test/CodeGenCXX/ |
D | microsoft-abi-eh-cleanups.cpp | 10 A getA(); 14 TakesTwo(getA(), getA()); in HasEHCleanup()
|
D | rvalue-references.cpp | 16 A &&getA() { return static_cast<A&&>(getB()); } in getA() function
|
/external/clang/test/CodeGenObjCXX/ |
D | references.mm | 9 - (const A&)getA; method 14 - (const A&)getA { method 25 (void)[b getA];
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
D | ContinuedFraction.java | 57 protected abstract double getA(int n, double x); in getA() method in ContinuedFraction 130 double p1 = getA(0, x); in evaluate() 138 double a = getA(n, x); in evaluate()
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/ |
D | p1-cxx11.cpp | 38 A &getA() { return static_cast<B&>(*this); } in getA() function 41 getA().a<int>(); in test_a()
|
D | p1.cpp | 69 A &getA() { return static_cast<B&>(*this); } in getA() function 72 getA().a<int>(); in test_a()
|
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/util/ |
D | ConfiguratorTest.java | 49 public A getA() { in getA() method in ConfiguratorTest.B 87 assertEquals(c.getB().getA(), Configurator.getObjectContaining(c, "b.a.d")); in testGetFieldAt()
|
/external/clang/test/SemaCXX/ |
D | uninitialized.cpp | 235 A getA() { return A(); } in getA() function 236 A getA(int x) { return A(); } in getA() function 237 A getA(A* a) { return A(); } in getA() function 238 A getA(A a) { return A(); } in getA() function 250 A a7 = getA(); in setupA() 251 A a8 = getA(a8.TWO); in setupA() 252 A a9 = getA(&a9); in setupA() 259 …A a15 = getA(a15.num); // expected-warning {{variable 'a15' is uninitialized when used within its… in setupA() 263 …A a19 = getA(x ? a19 : a17); // expected-warning {{variable 'a19' is uninitialized when used with… in setupA() 314 A a7 = getA(); [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | ECPoint.java | 38 return new ECFieldElement[]{ one, curve.getA() }; in getInitialZCoords() 547 ECFieldElement X = this.x, Y = this.y, A = curve.getA(), B = curve.getB(); in satisfiesCurveEquation() 906 ECFieldElement gamma = three(X1Squared).add(this.getCurve().getA()).divide(two(Y1)); in twice() 920 ECFieldElement w = curve.getA(); in twice() 952 ECFieldElement a4 = curve.getA(); in twice() 1115 ECFieldElement Z = three(X1.square()).add(this.getCurve().getA()); in threeTimes() 1170 ECFieldElement W1 = curve.getA(); in timesPow2() 1291 ECFieldElement a4 = this.getCurve().getA(); 1361 ECFieldElement X = this.x, A = curve.getA(), B = curve.getB(); 1616 ECFieldElement.F2m.checkFieldElements(this.x, this.curve.getA()); [all …]
|
D | WTauNafMultiplier.java | 33 byte a = curve.getA().toBigInteger().byteValue(); in multiplyPositive() 77 byte a = curve.getA().toBigInteger().byteValue(); in multiplyFromWTnaf()
|
D | ECCurve.java | 313 public ECFieldElement getA() in getA() method in ECCurve 483 && getA().toBigInteger().equals(other.getA().toBigInteger()) in equals() 495 ^ Integers.rotateLeft(getA().toBigInteger().hashCode(), 8) in hashCode() 774 … ECFieldElement beta = x.square().invert().multiply(this.getB()).add(this.getA()).add(x); in decompressPoint()
|
D | Tnaf.java | 415 if (curve.getA().isZero()) in getMu() 546 int a = curve.getA().toBigInteger().intValue(); in getSi() 658 int a = curve.getA().toBigInteger().intValue(); in multiplyRTnaf() 678 byte mu = getMu(curve.getA()); in multiplyTnaf()
|
/external/guice/core/test/com/google/inject/ |
D | CircularDependencyTest.java | 108 assertNotNull(a.getB().getA()); in assertCircularDependencies() 110 assertEquals(a.id(), a.getB().getA().id()); in assertCircularDependencies() 162 A getA(); in getA() method 177 public A getA() { in getA() method in CircularDependencyTest.BImpl 383 public A getA() { in getA() method in CircularDependencyTest.E
|
/external/clang/test/Modules/ |
D | modify-module.m | 12 // RUN: echo 'int getA(); int getA2();' > %t/include/A.h 26 int getValue() { return getA() + getB(); }
|
/external/stressapptest/src/ |
D | finelock_queue.cc | 82 a = getA(length) % length; in FineLockPEQueue() 88 a = getA(modlength) % modlength; in FineLockPEQueue() 102 int64 FineLockPEQueue::getA(int64 m) { in getA() function in FineLockPEQueue
|
D | finelock_queue.h | 85 int64 getA(int64 m);
|
/external/clang/test/Modules/Inputs/Modified/ |
D | A.h | 1 int getA();
|
/external/clang/test/Index/Inputs/Headers/ |
D | a.h | 1 int *getA();
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/ |
D | p2.cpp | 24 A *getA();
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
D | X9Curve.java | 147 v.add(new X9FieldElement(curve.getA()).toASN1Primitive()); in toASN1Primitive() 152 v.add(new X9FieldElement(curve.getA()).toASN1Primitive()); in toASN1Primitive()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue127/ |
D | Bean.java | 22 public String getA() { in getA() method in Bean
|
D | NullAliasTest.java | 50 fields.put("a", bean.getA()); in representData()
|
/external/snakeyaml/src/test/java/examples/ |
D | Dice.java | 28 public Integer getA() { in getA() method in Dice
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue124/ |
D | Bean124.java | 39 public String getA() { in getA() method in Bean124
|
/external/wycheproof/java/com/google/security/wycheproof/ |
D | EcUtil.java | 321 BigInteger rhs = x.multiply(x).add(ec.getA()).multiply(x).add(ec.getB()).mod(p); in checkPointOnCurve() 356 BigInteger rhs = x.multiply(x).add(ec.getA()).multiply(x).add(ec.getB()).mod(p); in getPoint() 400 BigInteger rhs = x.multiply(x).add(ec.getA()).multiply(x).add(ec.getB()).mod(p); in decompressPoint()
|