/openjdk7/jdk/test/java/security/testlibrary/ |
H A D | Providers.java | 28 public static void setAt(Provider p, int pos) throws Exception { argument 32 if (Security.insertProviderAt(p, pos) == -1) {
|
/openjdk7/jdk/src/share/classes/javax/swing/text/html/ |
H A D | BRView.java | 50 public int getBreakWeight(int axis, float pos, float len) { argument 54 return super.getBreakWeight(axis, pos, len);
|
/openjdk7/langtools/src/share/classes/com/sun/javadoc/ |
H A D | DocErrorReporter.java | 46 * @param pos the position item where the error occurs 50 void printError(SourcePosition pos, String msg); argument 62 * @param pos the position item where the warning occurs 66 void printWarning(SourcePosition pos, String msg); argument 78 * @param pos the position item where the message occurs 82 void printNotice(SourcePosition pos, String msg); argument
|
/openjdk7/langtools/src/share/classes/com/sun/mirror/apt/ |
H A D | Messager.java | 57 * @param pos the position where the error occured, or null if it is 61 void printError(SourcePosition pos, String msg); argument 72 * @param pos the position where the warning occured, or null if it is 76 void printWarning(SourcePosition pos, String msg); argument 87 * @param pos the position where the noticed occured, or null if it is 91 void printNotice(SourcePosition pos, String msg); argument
|
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/ |
H A D | CharacterArrayCharacterIterator.java | 66 public char charAt(int pos) argument 68 return src[off + pos]; 72 public boolean isEnd(int pos) argument 74 return (pos >= len);
|
H A D | CharacterIterator.java | 38 char charAt(int pos); argument 41 boolean isEnd(int pos); argument
|
H A D | StringCharacterIterator.java | 52 public char charAt(int pos) argument 54 return src.charAt(pos); 58 public boolean isEnd(int pos) argument 60 return (pos >= src.length());
|
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/ |
H A D | InvalidCharacter.java | 45 public InvalidCharacter (String filename, String line, int lineNumber, int pos, char ch) argument 48 if (pos > 1) 50 byte[] bytes = new byte [pos - 1]; 51 for (int i = 0; i < pos - 1; ++i)
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/ |
H A D | DataSource.java | 41 public void seek(long pos) throws IOException; argument
|
H A D | MappedByteBufferDataSource.java | 47 public void seek(long pos) throws IOException { argument 49 buf.position((int) pos); 51 System.err.println("Error seeking to file position 0x" + Long.toHexString(pos));
|
H A D | RandomAccessFileDataSource.java | 40 public void seek(long pos) throws IOException { file.seek(pos); } argument
|
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | NavigationFilter.java | 89 * @param pos Position used in determining next position 107 public int getNextVisualPositionFrom(JTextComponent text, int pos, argument 111 return text.getUI().getNextVisualPositionFrom(text, pos, bias,
|
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/ |
H A D | RTFEditorKit.java | 70 * @param pos The location in the document to place the 73 * @exception BadLocationException if pos represents an invalid 76 public void read(InputStream in, Document doc, int pos) throws IOException, BadLocationException { argument 86 super.read(in, doc, pos); 96 * @param pos The location in the document to fetch the 100 * @exception BadLocationException if pos represents an invalid 103 public void write(OutputStream out, Document doc, int pos, int len) argument 117 * @param pos The location in the document to place the 120 * @exception BadLocationException if pos represents an invalid 123 public void read(Reader in, Document doc, int pos) argument 149 write(Writer out, Document doc, int pos, int len) argument [all...] |
/openjdk7/jdk/src/share/classes/java/awt/peer/ |
H A D | TextAreaPeer.java | 45 * @param pos the position to insert 49 void insert(String text, int pos); argument
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | StringBufferInputStream.java | 58 protected int pos; field in class:StringBufferInputStream 92 return (pos < count) ? (buffer.charAt(pos++) & 0xFF) : -1; 118 if (pos >= count) { 121 if (pos + len > count) { 122 len = count - pos; 130 b[off++] = (byte)s.charAt(pos++); 147 if (n > count - pos) { 148 n = count - pos; 150 pos [all...] |
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/ |
H A D | SnmpTableCallbackHandler.java | 58 public void addEntryCb(int pos, SnmpOid row, ObjectName name, argument 73 public void removeEntryCb(int pos, SnmpOid row, ObjectName name, argument
|
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/ |
H A D | ReadBuffer.java | 45 public void get(long pos, byte[] buf) throws IOException; argument 46 public char getChar(long pos) throws IOException; argument 47 public byte getByte(long pos) throws IOException; argument 48 public short getShort(long pos) throws IOException; argument 49 public int getInt(long pos) throws IOException; argument 50 public long getLong(long pos) throws IOException; argument
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciConstantPoolCache.cpp | 50 int pos = find(index); local 51 if (pos >= _keys->length() || 52 _keys->at(pos) != index) { 56 return _elements->at(pos); 89 int pos = find(index); local 90 for (i = _keys->length()-1; i >= pos; i--) { 94 _keys->at_put_grow(pos, index); 95 _elements->at_put_grow(pos, elem);
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | elfStringTable.cpp | 70 bool ElfStringTable::string_at(int pos, char* buf, int buflen) { argument 75 jio_snprintf(buf, buflen, "%s", (const char*)(m_table + pos)); 80 fseek(m_file, m_shdr.sh_offset + pos, SEEK_SET) ||
|
/openjdk7/jdk/src/solaris/native/sun/nio/fs/ |
H A D | UnixCopyFile.c | 60 ssize_t n, pos, len; local 71 pos = 0; 75 bufp += pos; 81 pos += n;
|
/openjdk7/jdk/test/java/io/BufferedReader/ |
H A D | ReadLine.java | 120 private int pos = 0; field in class:ReadLine.BoundedReader 129 if (pos >= limit) 131 return content[pos++]; 137 int oldPos = pos; 141 return (pos - oldPos);
|
H A D | Ready.java | 67 private int pos = 0; field in class:Ready.BoundedReader 76 if (pos >= limit) 78 return content[pos++]; 84 if (pos >= limit) 86 int oldPos = pos; 87 int readlen = (length > (limit - pos)) ? (limit - pos) : length; 92 return (pos - oldPos); 98 if (pos < limit)
|
/openjdk7/jdk/test/java/io/DataInputStream/ |
H A D | SkipBytes.java | 33 private static void dotest(DataInputStream dis, int pos, int total, argument 38 System.err.println("Currently at position = " + pos);
|
/openjdk7/langtools/src/share/classes/com/sun/source/tree/ |
H A D | LineMap.java | 63 * @param pos character offset of the position 64 * @return the line number of pos (first line is 1) 66 long getLineNumber(long pos); argument 73 * @param pos character offset of the position 74 * @return the tab-expanded column number of pos (first column is 1) 76 long getColumnNumber(long pos); argument
|
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/ |
H A D | MessagerImpl.java | 72 public void printError(SourcePosition pos, String msg) { argument 73 if (pos instanceof SourcePositionImpl) { 74 SourcePositionImpl posImpl = (SourcePositionImpl) pos; 92 public void printWarning(SourcePosition pos, String msg) { argument 93 if (pos instanceof SourcePositionImpl) { 94 SourcePositionImpl posImpl = (SourcePositionImpl) pos; 112 public void printNotice(SourcePosition pos, String msg) { argument 113 if (pos instanceof SourcePositionImpl) { 114 SourcePositionImpl posImpl = (SourcePositionImpl) pos;
|