/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/typeinference/bounds/ |
D | SubtypeOfBoundTest.java | 27 …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/ |
D | VerificationTypeVisitor.java | 39 …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/ |
D | Bytecode.java | 266 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()
|
D | Descriptor.java | 600 type = CtClass.doubleType; in toPrimitiveClass()
|
/external/javassist/src/main/javassist/ |
D | CtField.java | 908 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()
|
D | CtClass.java | 135 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/ |
D | Type.java | 47 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/ |
D | PrettyPrinterTest.java | 206 fieldDeclaration.getVariable(0).setType(PrimitiveType.doubleType()); in printingInconsistentVariables() 210 fieldDeclaration.getVariable(1).setType(PrimitiveType.doubleType()); in printingInconsistentVariables()
|
/external/proguard/src/proguard/classfile/util/ |
D | SimplifiedVisitor.java | 700 …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/ |
D | ConstructorDeclarationTransformationsTest.java | 88 cd.addParameter(PrimitiveType.doubleType(), "d"); in addingParameters()
|
D | MethodDeclarationTransformationsTest.java | 286 it.addParameter(PrimitiveType.doubleType(), "d"); in addingParameters()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/ |
D | PrimitiveType.java | 81 public static PrimitiveType doubleType() { in doubleType() method in PrimitiveType
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
D | Annotation.java | 143 else if (type == CtClass.doubleType) in createMemberValue()
|
/external/llvm-project/clang/utils/ABITest/ |
D | ABITestGen.py | 523 doubleType = BuiltinType('double',8) 524 sbtg = FixedTypeGenerator([charType, intType, floatType, doubleType]) 555 'f64' : doubleType,
|
/external/clang/utils/ABITest/ |
D | ABITestGen.py | 522 doubleType = BuiltinType('double',8) 523 sbtg = FixedTypeGenerator([charType, intType, floatType, doubleType]) 554 'f64' : doubleType,
|
/external/javassist/src/main/javassist/expr/ |
D | NewArray.java | 125 return CtClass.doubleType; in getPrimitiveType()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/ |
D | ReferenceTypeTest.java | 205 …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/ |
D | JvstTest2.java | 1458 f = new CtField(CtClass.doubleType, "sff5", cc); in testStaticFinal() 1463 f = new CtField(CtClass.doubleType, "sff6", cc); in testStaticFinal()
|
D | JvstTest3.java | 837 m2.addParameter(CtClass.doubleType); in testInsertParam()
|
D | JvstTest.java | 433 cc.addMethod(CtNewMethod.make(CtClass.doubleType, "m6", in testSetConsBody()
|
/external/proguard/src/proguard/classfile/visitor/ |
D | ClassPrinter.java | 868 …bleType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType) in visitDoubleType() argument
|