Searched defs:getLong (Results 51 - 74 of 74) sorted by relevance

123

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDecimalDV.java337 public long getLong() throws NumberFormatException { method in class:DecimalDV.XDecimal
/openjdk7/corba/src/share/classes/sun/corba/
H A DBridge.java304 public final long getLong(Object o, long offset) method in class:Bridge
306 return unsafe.getLong( o, offset ) ;
/openjdk7/jdk/src/share/classes/java/lang/
H A DLong.java822 * {@code getLong(nm, null)}
830 public static Long getLong(String nm) { method in class:Long
831 return getLong(nm, null);
856 * {@code getLong(nm, new Long(val))}
862 * Long result = getLong(nm, null);
875 public static Long getLong(String nm, long val) { method in class:Long
876 Long result = Long.getLong(nm, null);
923 public static Long getLong(String nm, Long val) { method in class:Long
/openjdk7/jdk/src/share/classes/java/text/
H A DBreakIterator.java663 static long getLong(byte[] buf, int offset) { method in class:BreakIterator
H A DDigitList.java175 public final long getLong() { method in class:DigitList
641 * false, otherwise. This is required so that getLong() works.
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DPreferences.java611 * conjunction with {@link #getLong}.
620 * @see #getLong(String,long)
654 public abstract long getLong(String key, long def); method in class:Preferences
H A DAbstractPreferences.java417 * Implements the <tt>getLong</tt> method as per the specification in
418 * {@link Preferences#getLong(String,long)}.
438 public long getLong(String key, long def) { method in class:AbstractPreferences
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPropMap.java216 long getLong(String s) { method in class:PropMap
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapPoolManager.java127 idleTimeout = getLong(POOL_TIMEOUT, DEFAULT_TIMEOUT);
415 private static final long getLong(final String propName, method in class:LdapPoolManager
421 return Long.getLong(propName, defVal);
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DNativeBuffer.java59 public long getLong() { return buffer.getLong(); } method in class:NativeBuffer
91 builder.append(buffer.getLong(i));
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbands.cpp207 jlong band::getLong(band& lo_band, bool have_hi) { function in class:band
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DNative.java292 static long getLong(long ptr) { method in class:Native
296 return unsafe.getLong(ptr);
319 static long getLong(long ptr, int index) { method in class:Native
320 return getLong(ptr + index*getLongSize());
363 res[i] = getLong(data);
388 return unsafe.getLong(ptr);
405 return getLong(ptr);
408 return getLong(ptr + getWindowSize()*index);
435 return getLong(ptr);
441 return getLong(pt
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DField.java583 public long getLong(Object obj) method in class:Field
591 return getFieldAccessor(obj).getLong(obj);
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java289 private final long getLong(int index) { method in class:MutableBigInteger
/openjdk7/jdk/src/share/classes/java/sql/
H A DCallableStatement.java249 long getLong(int parameterIndex) throws SQLException; method in interface:CallableStatement
876 * @see #getLong
1436 long getLong(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java66 * <i>getter</i> methods (<code>getBoolean</code>, <code>getLong</code>, and so on)
315 long getLong(int columnIndex) throws SQLException; method in interface:ResultSet
600 long getLong(String columnLabel) throws SQLException; method in interface:ResultSet
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c106 local uLong getLong OF((gz_stream *s));
497 if (getLong(s) != s->crc) {
500 (void)getLong(s);
959 local uLong getLong (s) function
/openjdk7/jdk/src/share/classes/java/nio/
H A DBits.java356 static long getLong(ByteBuffer bb, int bi, boolean bigEndian) { method in class:Bits
360 static long getLong(long a, boolean bigEndian) { method in class:Bits
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java1096 public long getLong(int columnIndex) throws SQLException { method in class:JoinRowSetImpl
1097 return crsInternal.getLong(columnIndex);
1387 public long getLong(String columnName) throws SQLException { method in class:JoinRowSetImpl
1388 return crsInternal.getLong(columnName);
H A DJdbcRowSetImpl.java979 public long getLong(int columnIndex) throws SQLException { method in class:JdbcRowSetImpl
982 return rs.getLong(columnIndex);
1305 public long getLong(String columnName) throws SQLException { method in class:JdbcRowSetImpl
1306 return getLong(findColumn(columnName));
6977 * @see #getLong
H A DCachedRowSetImpl.java1911 * @see #getLong(String)
1913 public long getLong(int columnIndex) throws SQLException { method in class:CachedRowSetImpl
2580 * @see #getLong(int)
2582 public long getLong(String columnName) throws SQLException { method in class:CachedRowSetImpl
2583 return getLong(getColIdxByName(columnName));
10061 * @see #getLong
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java213 public native long getLong(Object o, long offset); method in class:Unsafe
342 public long getLong(Object o, int offset) { method in class:Unsafe
343 return getLong(o, (long)offset);
424 public native long getLong(long address); method in class:Unsafe
945 /** Volatile version of {@link #getLong(Object, long)} */
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java1213 * @see #getLong(String)
1215 public long getLong(int columnIndex) throws SQLException { method in class:SyncResolverImpl
1583 * @see #getLong(int)
1585 public long getLong(String columnName) throws SQLException { method in class:SyncResolverImpl
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java377 long getLong(int bp) { method in class:ClassReader
509 poolObj[i] = new Long(getLong(index + 1));

Completed in 227 milliseconds

123