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 DCharSpool.java56 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 DWriterOutputStream.java122 * @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 DJvmOptionsHelper.java109 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 Dinfutil.h24 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 Dzip_util.c163 * 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 DResultSetWrapper.java130 * 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 Djdbc30.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/ConnectionEventListener.class ConnectionEventListener. ...
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/
H A Djdbc40.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ...

Completed in 3217 milliseconds