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

1234567891011>>

/openjdk7/langtools/test/tools/javac/boxing/
H A DBoxing2.java36 Long l = 12; // no compound boxing
H A DNoBoxingLong.java33 Long l = 0L;
/openjdk7/langtools/test/tools/javac/synthesize/
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
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTestLongClassJava.java27 * @summary Tests PropertyEditor for value of type Long
33 new TestEditor(Long.class).testJava(Long.valueOf(12));
H A DTestLongTypeJava.java33 new TestEditor(Long.TYPE).testJava(Long.valueOf(12));
H A DTestLongClassNull.java27 * @summary Tests PropertyEditor for null value of type Long
33 new TestEditor(Long.class).testJava(null);
H A DTestLongClass.java27 * @summary Tests PropertyEditor for value of type Long with security manager
34 new TestEditor(Long.class);
H A DTestLongType.java34 new TestEditor(Long.TYPE);
H A DTestLongTypeNull.java33 new TestEditor(Long.TYPE).testJava(null);
/openjdk7/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...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmMemPoolEntryMBean.java45 public Long getJvmMemPoolCollectMaxSize() throws SnmpStatusException;
50 public Long getJvmMemPoolCollectCommitted() throws SnmpStatusException;
55 public Long getJvmMemPoolCollectUsed() throws SnmpStatusException;
65 public Long getJvmMemPoolCollectThreshdCount() throws SnmpStatusException;
70 public Long getJvmMemPoolCollectThreshold() throws SnmpStatusException;
75 public void setJvmMemPoolCollectThreshold(Long x) throws SnmpStatusException;
80 public void checkJvmMemPoolCollectThreshold(Long x) throws SnmpStatusException;
85 public Long getJvmMemPoolMaxSize() throws SnmpStatusException;
90 public Long getJvmMemPoolCommitted() throws SnmpStatusException;
95 public Long getJvmMemPoolUse
[all...]
H A DJvmThreadingMBean.java75 public Long getJvmThreadTotalStartedCount() throws SnmpStatusException;
80 public Long getJvmThreadPeakCount() throws SnmpStatusException;
85 public Long getJvmThreadDaemonCount() throws SnmpStatusException;
90 public Long getJvmThreadCount() throws SnmpStatusException;
95 public Long getJvmThreadPeakCountReset() throws SnmpStatusException;
100 public void setJvmThreadPeakCountReset(Long x) throws SnmpStatusException;
105 public void checkJvmThreadPeakCountReset(Long x) throws SnmpStatusException;
H A DJvmMemoryMBean.java45 public Long getJvmMemoryNonHeapMaxSize() throws SnmpStatusException;
50 public Long getJvmMemoryNonHeapCommitted() throws SnmpStatusException;
55 public Long getJvmMemoryNonHeapUsed() throws SnmpStatusException;
60 public Long getJvmMemoryNonHeapInitSize() throws SnmpStatusException;
65 public Long getJvmMemoryHeapMaxSize() throws SnmpStatusException;
70 public Long getJvmMemoryHeapCommitted() throws SnmpStatusException;
90 public Long getJvmMemoryHeapUsed() throws SnmpStatusException;
110 public Long getJvmMemoryHeapInitSize() throws SnmpStatusException;
115 public Long getJvmMemoryPendingFinalCount() throws SnmpStatusException;
H A DJvmThreadInstanceEntryMBean.java50 public Long getJvmThreadInstCpuTimeNs() throws SnmpStatusException;
55 public Long getJvmThreadInstWaitTimeMs() throws SnmpStatusException;
60 public Long getJvmThreadInstWaitCount() throws SnmpStatusException;
65 public Long getJvmThreadInstBlockTimeMs() throws SnmpStatusException;
70 public Long getJvmThreadInstBlockCount() throws SnmpStatusException;
85 public Long getJvmThreadInstId() throws SnmpStatusException;
H A DJvmMemGCEntryMBean.java45 public Long getJvmMemGCTimeMs() throws SnmpStatusException;
50 public Long getJvmMemGCCount() throws SnmpStatusException;
H A DJvmClassLoadingMBean.java60 public Long getJvmClassesUnloadedCount() throws SnmpStatusException;
65 public Long getJvmClassesTotalLoadedCount() throws SnmpStatusException;
70 public Long getJvmClassesLoadedCount() throws SnmpStatusException;
/openjdk7/jdk/src/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...]
/openjdk7/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;
/openjdk7/jdk/src/share/classes/sun/font/
H A DGlyphDisposedListener.java31 public void glyphDisposed(ArrayList<Long> glyphs);
/openjdk7/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...]
/openjdk7/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...]
/openjdk7/jdk/test/java/math/BigDecimal/
H A DCompareToTests.java56 {valueOf(Long.MAX_VALUE), valueOf(Long.MAX_VALUE), ZERO},
57 {valueOf(Long.MAX_VALUE-1), valueOf(Long.MAX_VALUE), MINUS_ONE},
58 {valueOf(Long.MIN_VALUE), valueOf(Long.MAX_VALUE), MINUS_ONE},
59 {valueOf(Long.MIN_VALUE+1), valueOf(Long.MAX_VALUE), MINUS_ONE},
60 {valueOf(Long.MIN_VALUE), valueOf(Long
[all...]
/openjdk7/jdk/test/java/math/BigInteger/
H A DCompareToTests.java56 {valueOf(Long.MAX_VALUE), valueOf(Long.MAX_VALUE), ZERO},
57 {valueOf(Long.MAX_VALUE-1), valueOf(Long.MAX_VALUE), MINUS_ONE},
58 {valueOf(Long.MIN_VALUE), valueOf(Long.MAX_VALUE), MINUS_ONE},
59 {valueOf(Long.MIN_VALUE+1), valueOf(Long.MAX_VALUE), MINUS_ONE},
60 {valueOf(Long.MIN_VALUE), valueOf(Long
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DDummySymbolFinder.java29 return "0x" + Long.toHexString(address);

Completed in 70 milliseconds

1234567891011>>