Searched defs:pos (Results 1 - 14 of 14) sorted by relevance

/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/util/
H A DLogOutputStream.java57 private int pos = 0; field in class:LogOutputStream
85 buf[pos++] = (byte)b;
103 System.arraycopy(b, start, buf, pos, i - start);
104 pos += i - start;
110 System.arraycopy(b, start, buf, pos, i - start);
111 pos += i - start;
120 System.arraycopy(b, start, buf, pos, len - start);
121 pos += len - start;
137 String msg = new String(buf, 0, pos);
138 pos
[all...]
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/logviewer/
H A DCharSpool.java57 private int pos; field in class:CharSpool
62 int sz = Math.min(last.length-pos,len);
63 System.arraycopy(cbuf,off,last,pos,sz);
66 pos += sz;
72 if(pos<last.length)
79 pos = 0;
85 last[pos++] = (char)c;
104 w.write(last,0,pos);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DApplicationFilterChain.java122 private int pos = 0; field in class:ApplicationFilterChain
232 if (pos < n) {
233 ApplicationFilterConfig filterConfig = filters[pos++];
373 pos = 0;
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dexample.c95 z_off_t pos; local
132 pos = gzseek(file, -8L, SEEK_CUR);
133 if (pos != 6 || gztell(file) != pos) {
134 fprintf(stderr, "gzseek error, pos=%ld, gztell=%ld\n",
135 (long)pos, (long)gztell(file));
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/
H A DParameterParser.java88 private int pos = 0; field in class:ParameterParser
124 return this.pos < this.len;
192 i1 = pos;
193 i2 = pos;
195 ch = chars[pos];
200 pos++;
217 i1 = pos;
218 i2 = pos;
222 ch = chars[pos];
231 pos
[all...]
H A DMultipartStream.java669 * @param pos The starting position for searching.
675 int pos) {
676 for (int i = pos; i < tail; i++) {
780 private int pos; field in class:MultipartStream.ItemInputStream
796 pos = MultipartStream.this.findSeparator();
797 if (pos == -1) {
822 if (pos == -1) {
825 return pos - head;
941 if (pos != -1) {
970 if (av > 0 || pos !
674 findByte(byte value, int pos) argument
[all...]
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/common/
H A DMsgAjp.java91 private int pos; field in class:MsgAjp
132 pos = 4;
141 len=pos;
166 buf[pos++] = (byte) ((val >>> 8) & 0xFF);
167 buf[pos++] = (byte) (val & 0xFF);
171 buf[pos++] = (byte)val;
175 buf[pos++] = (byte) ((val >>> 24) & 0xFF);
176 buf[pos++] = (byte) ((val >>> 16) & 0xFF);
177 buf[pos++] = (byte) ((val >>> 8) & 0xFF);
178 buf[pos
[all...]
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/custom/
H A DLogViewerResource.java265 protected int pos; field in class:LogViewerResource.Mark
292 pos = 0;
295 this.pos = that.pos;
300 os.write(buf.buf, 0, pos);
301 return pos;
316 while (pos == buf.size) {
323 pos = 0;
326 byte b = buf.buf[pos++];
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Dzip_util.h140 * - If pos is negative then is position of entry LOC header. It is set
152 jint pos; /* position of LOC header (if negative) or data */ member in struct:jzentry
163 jint pos; /* Offset of LOC within ZIP file */ member in struct:jzcell
228 jint zipRead(jzfile *zip, jzentry *entry, jint pos, void *buf, jint len);
H A Dzip_util.c151 jint len, pos; local
155 len = pos = lseek(fd, 0, SEEK_END);
167 while (len - pos < 0xFFFF)
171 int count = 0xFFFF - (len - pos);
177 pos -= count;
178 if (lseek(fd, pos, SEEK_SET) == -1)
188 jint endpos = pos + (bp - buf);
446 zc->pos = CENOFF(cp) + locpos;
634 if (lseek(zip->fd, zc->pos, SEEK_SET) == -1)
719 ze->pos
818 zipRead(jzfile *zip, jzentry *entry, jint pos, void *buf, jint len) argument
861 jint pos = 0, count = entry->csize; local
952 jint pos = 0, count = entry->size; local
[all...]
H A Djava_md.winnt.c1344 IsMultiByteChar(const char *s, int pos) argument
1353 t[pos + 1] = '\0';
1356 t[pos] = '\0';
H A Djava_md.unix.c1740 IsMultiByteChar(const char *s, int pos) argument
1745 if (!pos)
1752 while (curpos + 1 < pos)
1759 if (curpos + 1 == pos)
/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. ...
/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Dprototype.js1357 var pos = Position.cumulativeOffset(element);
1358 window.scrollTo(pos[0], pos[1]);
1441 var pos = Element.getStyle(element, 'position'); variable
1442 if (pos == 'static' || !pos) {

Completed in 252 milliseconds