Searched defs:class (Results 1 – 5 of 5) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/runtime/ |
D | ObjectMethods.java | 110 primitiveEquals.put(byte.class, lookup.findStatic(OBJECT_METHODS_CLASS, "eq", in primitiveEquals.put() 112 primitiveEquals.put(short.class, lookup.findStatic(OBJECT_METHODS_CLASS, "eq", in primitiveEquals.put() 114 primitiveEquals.put(char.class, lookup.findStatic(OBJECT_METHODS_CLASS, "eq", in primitiveEquals.put() 116 primitiveEquals.put(int.class, lookup.findStatic(OBJECT_METHODS_CLASS, "eq", in primitiveEquals.put() 118 primitiveEquals.put(long.class, lookup.findStatic(OBJECT_METHODS_CLASS, "eq", in primitiveEquals.put() 120 primitiveEquals.put(float.class, lookup.findStatic(OBJECT_METHODS_CLASS, "eq", in primitiveEquals.put() 122 primitiveEquals.put(double.class, lookup.findStatic(OBJECT_METHODS_CLASS, "eq", in primitiveEquals.put() 124 primitiveEquals.put(boolean.class, lookup.findStatic(OBJECT_METHODS_CLASS, "eq", in primitiveEquals.put() 127 primitiveHashers.put(byte.class, lookup.findStatic(Byte.class, "hashCode", in primitiveHashers.put() 129 primitiveHashers.put(short.class, lookup.findStatic(Short.class, "hashCode", in primitiveHashers.put() [all …]
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
D | OIDMap.java | 121 SubjectKeyIdentifierExtension.class); in addInternal() 123 KeyUsageExtension.class); in addInternal() 125 PrivateKeyUsageExtension.class); in addInternal() 127 SubjectAlternativeNameExtension.class); in addInternal() 129 IssuerAlternativeNameExtension.class); in addInternal() 131 BasicConstraintsExtension.class); in addInternal() 133 CRLNumberExtension.class); in addInternal() 135 CRLReasonCodeExtension.class); in addInternal() 137 NameConstraintsExtension.class); in addInternal() 139 PolicyMappingsExtension.class); in addInternal() [all …]
|
/libcore/luni/src/main/java/libcore/reflect/ |
D | Types.java | 35 PRIMITIVE_TO_SIGNATURE.put(byte.class, "B"); in PRIMITIVE_TO_SIGNATURE.put() 36 PRIMITIVE_TO_SIGNATURE.put(char.class, "C"); in PRIMITIVE_TO_SIGNATURE.put() 37 PRIMITIVE_TO_SIGNATURE.put(short.class, "S"); in PRIMITIVE_TO_SIGNATURE.put() 38 PRIMITIVE_TO_SIGNATURE.put(int.class, "I"); in PRIMITIVE_TO_SIGNATURE.put() 39 PRIMITIVE_TO_SIGNATURE.put(long.class, "J"); in PRIMITIVE_TO_SIGNATURE.put() 40 PRIMITIVE_TO_SIGNATURE.put(float.class, "F"); in PRIMITIVE_TO_SIGNATURE.put() 41 PRIMITIVE_TO_SIGNATURE.put(double.class, "D"); in PRIMITIVE_TO_SIGNATURE.put() 42 PRIMITIVE_TO_SIGNATURE.put(void.class, "V"); in PRIMITIVE_TO_SIGNATURE.put() 43 PRIMITIVE_TO_SIGNATURE.put(boolean.class, "Z"); in PRIMITIVE_TO_SIGNATURE.put()
|
/libcore/ojluni/src/test/java/nio/Buffer/ |
D | EqualsCompareTest.java | 63 typeToWidth.put(byte.class, Byte.SIZE); in typeToWidth.put() 64 typeToWidth.put(short.class, Short.SIZE); in typeToWidth.put() 65 typeToWidth.put(char.class, Character.SIZE); in typeToWidth.put() 66 typeToWidth.put(int.class, Integer.SIZE); in typeToWidth.put() 67 typeToWidth.put(long.class, Long.SIZE); in typeToWidth.put() 68 typeToWidth.put(float.class, Float.SIZE); in typeToWidth.put() 69 typeToWidth.put(double.class, Double.SIZE); in typeToWidth.put()
|
/libcore/ojluni/src/test/java/util/Arrays/ |
D | ArraysEqCmpTest.java | 59 typeToWidth.put(boolean.class, Byte.SIZE); in typeToWidth.put() 60 typeToWidth.put(byte.class, Byte.SIZE); in typeToWidth.put() 61 typeToWidth.put(short.class, Short.SIZE); in typeToWidth.put() 62 typeToWidth.put(char.class, Character.SIZE); in typeToWidth.put() 63 typeToWidth.put(int.class, Integer.SIZE); in typeToWidth.put() 64 typeToWidth.put(long.class, Long.SIZE); in typeToWidth.put() 65 typeToWidth.put(float.class, Float.SIZE); in typeToWidth.put() 66 typeToWidth.put(double.class, Double.SIZE); in typeToWidth.put() 67 typeToWidth.put(Object.class, Integer.SIZE); // @@@ 32 or 64? in typeToWidth.put()
|