Searched refs:getA (Results 1 - 25 of 46) sorted by relevance

12

/external/clang/test/Index/Inputs/Headers/
H A Da.h1 int *getA();
/external/clang/test/Modules/Inputs/Modified/
H A DA.h1 int getA();
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
H A Dp2.cpp24 A *getA();
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-eh-cleanups.cpp9 A getA();
13 TakesTwo(getA(), getA());
20 // WIN32: invoke void @"\01?getA@@YA?AUA@@XZ"(%struct.A* sret %{{.*}})
22 // WIN32: invoke void @"\01?getA@@YA?AUA@@XZ"(%struct.A* sret %{{.*}})
28 // There should be one dtor call for unwinding from the second getA.
H A Drvalue-references.cpp16 A &&getA() { return static_cast<A&&>(getB()); } function
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
H A Dp1-cxx11.cpp38 A &getA() { return static_cast<B&>(*this); } function in struct:rdar9915664::D
41 getA().a<int>();
H A Dp1.cpp58 A &getA() { return static_cast<B&>(*this); } function in struct:rdar9915664::D
61 getA().a<int>();
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DOneRegisterDecodedInstruction.java45 public int getA() { method in class:OneRegisterDecodedInstruction
H A DRegisterRangeDecodedInstruction.java50 public int getA() { method in class:RegisterRangeDecodedInstruction
H A DTwoRegisterDecodedInstruction.java49 public int getA() { method in class:TwoRegisterDecodedInstruction
H A DFiveRegisterDecodedInstruction.java61 public int getA() { method in class:FiveRegisterDecodedInstruction
H A DFourRegisterDecodedInstruction.java57 public int getA() { method in class:FourRegisterDecodedInstruction
H A DThreeRegisterDecodedInstruction.java53 public int getA() { method in class:ThreeRegisterDecodedInstruction
H A DInstructionCodec.java75 makeByte(insn.getA(), insn.getB())));
94 makeByte(insn.getA(), insn.getLiteralNibble())));
110 out.write(codeUnit(insn.getOpcode(), insn.getA()));
182 codeUnit(insn.getOpcode(), insn.getA()),
202 out.write(codeUnit(insn.getOpcode(), insn.getA()), relativeTarget);
220 codeUnit(insn.getOpcode(), insn.getA()),
251 out.write(codeUnit(opcode, insn.getA()), literal);
270 codeUnit(insn.getOpcode(), insn.getA()),
291 codeUnit(insn.getOpcode(), insn.getA()),
312 codeUnit(insn.getOpcode(), insn.getA()),
[all...]
H A DDecodedInstruction.java249 public int getA() { method in class:DecodedInstruction
289 int a = getA();
303 int a = getA();
317 int a = getA();
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DContinuedFraction.java57 protected abstract double getA(int n, double x); method in class:ContinuedFraction
130 double p1 = getA(0, x);
138 double a = getA(n, x);
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/util/
H A DConfiguratorTest.java49 public A getA() { method in class:ConfiguratorTest.B
87 assertEquals(c.getB().getA(), Configurator.getObjectContaining(c, "b.a.d"));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECNamedCurveSpec.java27 return new EllipticCurve(new ECFieldFp(curve.getField().getCharacteristic()), curve.getA().toBigInteger(), curve.getB().toBigInteger(), seed);
38 return new EllipticCurve(new ECFieldF2m(curveF2m.getM(), ks), curve.getA().toBigInteger(), curve.getB().toBigInteger(), seed);
44 return new EllipticCurve(new ECFieldF2m(curveF2m.getM(), ks), curve.getA().toBigInteger(), curve.getB().toBigInteger(), seed);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DWTauNafMultiplier.java33 byte a = curve.getA().toBigInteger().byteValue();
77 byte a = curve.getA().toBigInteger().byteValue();
H A DECPoint.java38 return new ECFieldElement[]{ one, curve.getA() };
547 ECFieldElement X = this.x, Y = this.y, A = curve.getA(), B = curve.getB();
906 ECFieldElement gamma = three(X1Squared).add(this.getCurve().getA()).divide(two(Y1));
920 ECFieldElement w = curve.getA();
952 ECFieldElement a4 = curve.getA();
1115 ECFieldElement Z = three(X1.square()).add(this.getCurve().getA());
1170 ECFieldElement W1 = curve.getA();
1287 ECFieldElement a4 = this.getCurve().getA();
1357 ECFieldElement X = this.x, A = curve.getA(), B = curve.getB();
1465 ECFieldElement.F2m.checkFieldElements(this.x, this.curve.getA());
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
H A DGaussianFunction.java129 public double getA() { method in class:GaussianFunction
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DEC5Util.java49 return new EllipticCurve(new ECFieldFp(curve.getField().getCharacteristic()), curve.getA().toBigInteger(), curve.getB().toBigInteger(), null);
60 return new EllipticCurve(new ECFieldF2m(curveF2m.getM(), ks), curve.getA().toBigInteger(), curve.getB().toBigInteger(), null);
66 return new EllipticCurve(new ECFieldF2m(curveF2m.getM(), ks), curve.getA().toBigInteger(), curve.getB().toBigInteger(), null);
75 BigInteger a = ec.getA();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9Curve.java147 v.add(new X9FieldElement(curve.getA()).toASN1Primitive());
152 v.add(new X9FieldElement(curve.getA()).toASN1Primitive());
/external/clang/test/SemaCXX/
H A Duninitialized.cpp235 A getA() { return A(); } function
236 A getA(int x) { return A(); } function
237 A getA(A* a) { return A(); } function
238 A getA(A a) { return A(); } function
250 A a7 = getA();
251 A a8 = getA(a8.TWO);
252 A a9 = getA(&a9);
259 A a15 = getA(a15.num); // expected-warning {{variable 'a15' is uninitialized when used within its own initialization}}
263 A a19 = getA(x ? a19 : a17); // expected-warning {{variable 'a19' is uninitialized when used within its own initialization}}
314 A a7 = getA();
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/special/
H A DBeta.java148 protected double getA(int n, double x) {

Completed in 892 milliseconds

12