Searched defs:last (Results 1 - 8 of 8) sorted by relevance
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/logviewer/ |
H A D | CharSpool.java | 56 private char[] last = new char[1024]; field in class:CharSpool 62 int sz = Math.min(last.length-pos,len); 63 System.arraycopy(cbuf,off,last,pos,sz); 72 if(pos<last.length) 77 buf.add(last); 78 last = new char[1024]; 85 last[pos++] = (char)c; 104 w.write(last,0,pos);
|
H A D | WriterOutputStream.java | 122 * @param last 125 private void decode(boolean last) throws IOException { argument 128 CoderResult r = decoder.decode(buf, out, last);
|
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/ |
H A D | JvmOptionsHelper.java | 109 JvmOptionsElement last = last(); 115 last.setNext(x); 116 last = x; 127 * Returns the last JvmOptionsElement in the chain of responsibility. 129 public JvmOptionsElement last() method in class:JvmOptionsHelper 246 * Used to indicate the last element in the chain.
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
H A D | infutil.h | 24 DONE, /* finished last block, done */ 49 uInt last; /* true if this block is the last block */ member in struct:inflate_blocks_state
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/ |
H A D | zip_util.c | 163 * Also, the END header must be located within the last 64k bytes of 734 jzentry *last; local 735 last = jz->cache; 737 if (last != NULL) 740 if (last->extra) 741 free(last->extra); 742 if (last->name) 743 free(last->name); 744 free(last);
|
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/ |
H A D | ResultSetWrapper.java | 130 * the last column read had a value of SQL <code>NULL</code>. 136 * @return <code>true</code> if the last column value read was SQL 914 * Retrieves whether the cursor is after the last row in 917 * @return <code>true</code> if the cursor is after the last row; 941 * Retrieves whether the cursor is on the last row of 946 * whether the current row is the last row in the result set. 948 * @return <code>true</code> if the cursor is on the last row; 973 * last row. This method has no effect if the result set contains no rows. 998 * Moves the cursor to the last row in 1007 public boolean last() throw method in class:ResultSetWrapper [all...] |
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc30/ |
H A D | jdbc30.jar | META-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/ConnectionEventListener.class ConnectionEventListener. ... |
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/ |
H A D | jdbc40.jar | META-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ... |
Completed in 3217 milliseconds