Home
last modified time | relevance | path

Searched refs:doubleType (Results 1 – 21 of 21) sorted by relevance

/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/
DSubtypeOfBoundTest.java27 …private ResolvedType doubleType = new ReferenceTypeImpl(new ReflectionTypeSolver().solveType(Doubl… field in SubtypeOfBoundTest
49 Bound bound = new SubtypeOfBound(doubleType, inferenceVariable); in recognizeProperLowerBound2()
51 …assertEquals(Optional.of(new ProperLowerBound(inferenceVariable, doubleType)), bound.isProperLower… in recognizeProperLowerBound2()
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
DVerificationTypeVisitor.java39 …z clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType); in visitDoubleType() argument
49 …thod method, CodeAttribute codeAttribute, int offset, int index, DoubleType doubleType); in visitStackDoubleType() argument
59 …thod method, CodeAttribute codeAttribute, int offset, int index, DoubleType doubleType); in visitVariablesDoubleType() argument
/external/javassist/src/main/javassist/bytecode/
DBytecode.java266 CtClass doubleType = CtClass.doubleType; in setMaxLocals() local
271 if (type == doubleType || type == longType) in setMaxLocals()
533 else if (type == CtClass.doubleType) in addConstZero()
752 else if(type == CtClass.doubleType) { in addLoad()
785 else if (type == CtClass.doubleType) { in addStore()
DDescriptor.java600 type = CtClass.doubleType; in toPrimitiveClass()
/external/javassist/src/main/javassist/
DCtField.java908 if (type == CtClass.doubleType) in getConstantValue2()
921 else if (type == CtClass.doubleType) in getConstantValue2()
1006 CtClass doubleType = CtClass.doubleType; in nthParamToLocal() local
1015 if (type == longType || type == doubleType) in nthParamToLocal()
1359 if (type == CtClass.doubleType) in getConstantValue()
DCtClass.java135 public static CtClass doubleType; field in CtClass
184 doubleType = new CtPrimitiveType("double", 'D', "java.lang.Double",
187 primitiveTypes[7] = doubleType;
/external/javassist/src/main/javassist/bytecode/analysis/
DType.java47 public static final Type DOUBLE = new Type(CtClass.doubleType);
104 prims.put(CtClass.doubleType, DOUBLE); in prims.put() argument
158 return clazz == CtClass.doubleType || clazz == CtClass.longType || this == TOP ? 2 : 1; in getSize()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/
DPrettyPrinterTest.java206 fieldDeclaration.getVariable(0).setType(PrimitiveType.doubleType()); in printingInconsistentVariables()
210 fieldDeclaration.getVariable(1).setType(PrimitiveType.doubleType()); in printingInconsistentVariables()
/external/proguard/src/proguard/classfile/util/
DSimplifiedVisitor.java700 …bleType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType) in visitDoubleType() argument
702 visitAnyVerificationType(clazz, method, codeAttribute, offset, doubleType); in visitDoubleType()
754 …zz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, DoubleType doubleType) in visitStackDoubleType() argument
756 visitDoubleType(clazz, method, codeAttribute, offset, doubleType); in visitStackDoubleType()
809 …zz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, DoubleType doubleType) in visitVariablesDoubleType() argument
811 visitDoubleType(clazz, method, codeAttribute, offset, doubleType); in visitVariablesDoubleType()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/
DConstructorDeclarationTransformationsTest.java88 cd.addParameter(PrimitiveType.doubleType(), "d"); in addingParameters()
DMethodDeclarationTransformationsTest.java286 it.addParameter(PrimitiveType.doubleType(), "d"); in addingParameters()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
DPrimitiveType.java81 public static PrimitiveType doubleType() { in doubleType() method in PrimitiveType
/external/javassist/src/main/javassist/bytecode/annotation/
DAnnotation.java143 else if (type == CtClass.doubleType) in createMemberValue()
/external/llvm-project/clang/utils/ABITest/
DABITestGen.py523 doubleType = BuiltinType('double',8)
524 sbtg = FixedTypeGenerator([charType, intType, floatType, doubleType])
555 'f64' : doubleType,
/external/clang/utils/ABITest/
DABITestGen.py522 doubleType = BuiltinType('double',8)
523 sbtg = FixedTypeGenerator([charType, intType, floatType, doubleType])
554 'f64' : doubleType,
/external/javassist/src/main/javassist/expr/
DNewArray.java125 return CtClass.doubleType; in getPrimitiveType()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
DReferenceTypeTest.java205 …ResolvedReferenceType doubleType = new ReferenceTypeImpl(new ReflectionClassDeclaration(Double.cla… in testIsAssignableByBoxedPrimitive() local
214 assertEquals(true, doubleType.isAssignableBy(ResolvedPrimitiveType.DOUBLE)); in testIsAssignableByBoxedPrimitive()
/external/javassist/src/test/javassist/
DJvstTest2.java1458 f = new CtField(CtClass.doubleType, "sff5", cc); in testStaticFinal()
1463 f = new CtField(CtClass.doubleType, "sff6", cc); in testStaticFinal()
DJvstTest3.java837 m2.addParameter(CtClass.doubleType); in testInsertParam()
DJvstTest.java433 cc.addMethod(CtNewMethod.make(CtClass.doubleType, "m6", in testSetConsBody()
/external/proguard/src/proguard/classfile/visitor/
DClassPrinter.java868 …bleType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType) in visitDoubleType() argument