Searched refs:Long (Results 1 - 25 of 1483) sorted by relevance

1234567891011>>

/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot.amd64/src/jdk/vm/ci/hotspot/amd64/
H A DAMD64HotSpotVMConfig.java44 final long vmVersionFeatures = getFieldValue("Abstract_VM_Version::_features", Long.class, "uint64_t");
47 final long amd64CX8 = getConstant("VM_Version::CPU_CX8", Long.class);
48 final long amd64CMOV = getConstant("VM_Version::CPU_CMOV", Long.class);
49 final long amd64FXSR = getConstant("VM_Version::CPU_FXSR", Long.class);
50 final long amd64HT = getConstant("VM_Version::CPU_HT", Long.class);
51 final long amd64MMX = getConstant("VM_Version::CPU_MMX", Long.class);
52 final long amd643DNOWPREFETCH = getConstant("VM_Version::CPU_3DNOW_PREFETCH", Long.class);
53 final long amd64SSE = getConstant("VM_Version::CPU_SSE", Long.class);
54 final long amd64SSE2 = getConstant("VM_Version::CPU_SSE2", Long.class);
55 final long amd64SSE3 = getConstant("VM_Version::CPU_SSE3", Long
[all...]
/openjdk9/langtools/test/tools/javac/boxing/
H A DBoxing2.java12 Long l = 12; // no compound boxing
/openjdk9/langtools/test/tools/javac/synthesize/src/
H A DLong.java26 public class Long extends Number class in inherits:Number
28 public static Long valueOf(long v) {
29 return new Long(v);
32 public Long(long v) { method in class:Long
/openjdk9/jdk/test/java/lang/Long/
H A DGetLong.java27 * @summary test Long.getLong method with empty key
32 Long.getLong("", 1);
33 Long.getLong(null, 1);
H A DDecode.java27 * @summary Test Long.decode method
36 * into a long or Long value:
38 * public Long(String s)
39 * public static Long decode(String nm)
42 * public static Long valueOf(String s, int radix)
43 * public static Long valueOf(String s)
50 long n = (Long.decode(val)).longValue();
52 throw new RuntimeException("Long.decode failed. String:" +
58 long n = (Long.decode(val)).longValue();
64 check(new String(""+Long
[all...]
/openjdk9/jdk/test/java/beans/PropertyEditor/
H A DTestLongTypeJava.java36 new TestEditor(Long.TYPE).testJava(Long.valueOf(12));
H A DTestLongClassJava.java27 * @summary Tests PropertyEditor for value of type Long
36 new TestEditor(Long.class).testJava(Long.valueOf(12));
H A DTestLongClassNull.java27 * @summary Tests PropertyEditor for null value of type Long
36 new TestEditor(Long.class).testJava(null);
H A DTestLongType.java37 new TestEditor(Long.TYPE);
H A DTestLongClass.java27 * @summary Tests PropertyEditor for value of type Long with security manager
37 new TestEditor(Long.class);
H A DTestLongTypeNull.java36 new TestEditor(Long.TYPE).testJava(null);
/openjdk9/langtools/test/tools/javac/MethodParameters/
H A DMemberClassTest.java37 Long m();
38 Long m(Long x, Long yx);
48 public Member(Long a, Long ba) { }
49 public Long m() { return 0L; }
50 public Long m(Long s, Long t
[all...]
H A DAnonymousClass.java48 public static class Sinner implements I<Long> {
50 public Sinner(Long arg, Long barg) { }
51 public Long m() { return 0L; }
52 public Long m(Long s, Long ts) { return s + ts; }
56 public AnonymousClass(final Long a, Long ba) {
57 new I<Long>() {
[all...]
/openjdk9/jdk/test/java/lang/String/CompactString/
H A DNumbers.java34 * Integer/Long's methods related to String.
75 { Long.toBinaryString(Long.MAX_VALUE),
77 { Long.toBinaryString(Long.MIN_VALUE),
79 { Long.toOctalString(Long.MAX_VALUE), "777777777777777777777" },
80 { Long.toOctalString(Long.MIN_VALUE), "1000000000000000000000" },
81 { Long
[all...]
/openjdk9/jdk/test/java/math/BigDecimal/
H A DCompareToTests.java56 {valueOf(Long.MAX_VALUE), valueOf(Long.MAX_VALUE), ZERO},
57 {valueOf(Long.MAX_VALUE).negate(), valueOf(Long.MAX_VALUE), MINUS_ONE},
59 {valueOf(Long.MAX_VALUE-1), valueOf(Long.MAX_VALUE), MINUS_ONE},
60 {valueOf(Long.MAX_VALUE-1).negate(), valueOf(Long.MAX_VALUE), MINUS_ONE},
62 {valueOf(Long.MIN_VALUE), valueOf(Long
[all...]
/openjdk9/hotspot/test/compiler/eliminateAutobox/
H A DTestLongBoxing.java47 static final Long ibc = new Long(1);
53 static Long foob(long i) { return Long.valueOf(i); }
57 Long ib = new Long(i);
62 Long ib = Long.valueOf(i);
67 Long ib = ibc;
72 Long i
[all...]
/openjdk9/jdk/test/java/util/concurrent/tck/
H A DConcurrentHashMap8Test.java587 static ConcurrentHashMap<Long, Long> longMap;
589 static ConcurrentHashMap<Long, Long> longMap() {
591 longMap = new ConcurrentHashMap<Long, Long>(SIZE);
593 longMap.put(Long.valueOf(i), Long.valueOf(2 *i));
599 static class AddKeys implements BiFunction<Map.Entry<Long,Long>, Ma
[all...]
/openjdk9/jdk/test/java/math/BigInteger/
H A DCompareToTests.java67 // Long boundary and near boundary values
68 {valueOf(Long.MAX_VALUE), valueOf(Long.MAX_VALUE), ZERO},
69 {valueOf(Long.MAX_VALUE).negate(), valueOf(Long.MAX_VALUE), MINUS_ONE},
71 {valueOf(Long.MAX_VALUE-1), valueOf(Long.MAX_VALUE), MINUS_ONE},
72 {valueOf(Long.MAX_VALUE-1).negate(), valueOf(Long.MAX_VALUE), MINUS_ONE},
74 {valueOf(Long
[all...]
/openjdk9/langtools/test/tools/javac/T8029569/
H A DVarargsAmbiguityCrashTest.java14 void m2(Long l) {}
18 void m2(Long l, Exception... exception) {}
/openjdk9/langtools/test/tools/javac/diags/examples/
H A DInconvertibleTypes.java32 void m(Outer<Integer>.Inner<Long> p) {
33 Object o = (Outer<? super Number>.Inner<Long>)p;
/openjdk9/jdk/src/java.base/share/classes/sun/security/action/
H A DGetLongAction.java29 * A convenience class for retrieving the <code>Long</code> value of a system
35 * <p>The following code retrieves the <code>Long</code> value of the system
42 * Long tmp = java.security.AccessController.doPrivileged
50 * <p>The following code retrieves the <code>Long</code> value of the system
66 public class GetLongAction implements java.security.PrivilegedAction<Long> {
73 * <code>Long</code> value needs to be determined.
95 * Determines the <code>Long</code> value of the system property whose
99 * does not have the correct numeric format, then a <code>Long</code>
104 * @return the <code>Long</code> value of the property.
106 public Long ru
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DGlyphDisposedListener.java31 public void glyphDisposed(ArrayList<Long> glyphs);
/openjdk9/langtools/test/tools/javac/cast/6665356/
H A DT6665356.java14 void cast1(Outer<Integer>.Inner<Long> p) {
15 Object o = (Outer<Integer>.Inner<Long>)p;
18 void cast2(Outer<Integer>.Inner<Long> p) {
19 Object o = (Outer<? extends Number>.Inner<Long>)p;
22 void cast3(Outer<Integer>.Inner<Long> p) {
26 void cast4(Outer<Integer>.Inner<Long> p) {
30 void cast5(Outer<Integer>.Inner<Long> p) {
31 Object o = (Outer<? super Number>.Inner<Long>)p;
34 void cast6(Outer<Integer>.Inner<Long> p) {
38 void cast7(Outer<Integer>.Inner<Long>
[all...]
/openjdk9/langtools/test/tools/javac/cast/6795580/
H A DT6795580.java14 void cast1(Outer<Integer>.Inner<Long>[] p) {
15 Object o = (Outer<Integer>.Inner<Long>[])p;
18 void cast2(Outer<Integer>.Inner<Long>[] p) {
19 Object o = (Outer<? extends Number>.Inner<Long>[])p;
22 void cast3(Outer<Integer>.Inner<Long>[] p) {
26 void cast4(Outer<Integer>.Inner<Long>[] p) {
30 void cast5(Outer<Integer>.Inner<Long>[] p) {
31 Object o = (Outer<? super Number>.Inner<Long>[])p;
34 void cast6(Outer<Integer>.Inner<Long>[] p) {
38 void cast7(Outer<Integer>.Inner<Long>[]
[all...]
/openjdk9/hotspot/test/testlibrary_tests/whitebox/vm_flags/
H A DUint64Test.java40 private static final Long[] TESTS = {0L, 100L, (long) Integer.MAX_VALUE,
41 -1L, Long.MAX_VALUE, Long.MIN_VALUE};

Completed in 163 milliseconds

1234567891011>>