Searched defs:Long (Results 1 - 9 of 9) sorted by relevance

/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/langtools/test/tools/javadoc/annotations/defaults/pkg1/
H A DA.java32 Class<? extends Number> w() default Long.class;
/openjdk7/jdk/src/share/classes/java/lang/
H A DLong.java29 * The {@code Long} class wraps a value of the primitive type {@code
30 * long} in an object. An object of type {@code Long} contains a
50 public final class Long extends Number implements Comparable<Long> { class in inherits:Number,Comparable
69 public static final Class<Long> TYPE = (Class<Long>) Class.getPrimitiveClass("long");
106 * {@code Long.toString(n, 16).toUpperCase()}
167 * {@code Long.toHexString(n).toUpperCase()}
264 if (i == Long.MIN_VALUE)
279 * Will fail if i == Long
684 public Long(long value) { method in class:Long
701 public Long(String s) throws NumberFormatException { method in class:Long
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateTable_sparc.cpp413 Label retry, resolved, Long, exit; local
428 __ cmp_and_brx_short(O2, JVM_CONSTANT_Double, Assembler::notEqual, Assembler::pt, Long);
444 __ bind(Long);
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.hpp105 Long = (ITEM_Long << 2 * BitsPerByte) | Category2, enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon180
135 static VerificationType long_type() { return VerificationType(Long); }
181 bool is_long() const { return (_u._data == Long); }
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.hpp80 Long, // Long integer range (lo-hi) enumerator in enum:Type::TYPES
227 const TypeLong *isa_long() const; // Returns NULL if not a Long
1156 assert( _base == Long, "Not a Long" );
1161 return ( _base == Long ? (TypeLong*)this : NULL);
1316 #define Type_X Type::Long
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java80 Long = 17, field in class:Token
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86_32.cpp474 Label Long, Done; local
483 __ jccb(Assembler::notEqual, Long);
489 __ bind(Long);
H A DtemplateTable_x86_64.cpp493 Label Long, Done; local
503 __ jccb(Assembler::notEqual, Long);
509 __ bind(Long);

Completed in 272 milliseconds