/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
H A D | ConstFieldRef.java | 72 static ConstFieldRef read (DataInputStream input) throws IOException { argument 73 int cname = input.readUnsignedShort(); 74 int NT = input.readUnsignedShort();
|
H A D | ConstInterfaceMethodRef.java | 79 static ConstInterfaceMethodRef read (DataInputStream input) argument 81 int cname = input.readUnsignedShort(); 82 int NT = input.readUnsignedShort();
|
H A D | ConstMethodRef.java | 79 static ConstMethodRef read (DataInputStream input) throws IOException { argument 80 int cname = input.readUnsignedShort(); 81 int NT = input.readUnsignedShort();
|
H A D | ConstUnicode.java | 92 static ConstUnicode read (DataInputStream input) throws IOException { argument 93 int count = input.readShort(); // Is this chars or bytes? 96 b.append(input.readChar());
|
H A D | ConstDouble.java | 100 static ConstDouble read (DataInputStream input) throws IOException { argument 101 return new ConstDouble (input.readDouble());
|
H A D | ConstFloat.java | 95 static ConstFloat read (DataInputStream input) throws IOException { argument 96 return new ConstFloat (input.readFloat());
|
H A D | ConstInteger.java | 95 static ConstInteger read (DataInputStream input) throws IOException { argument 96 return new ConstInteger (input.readInt());
|
H A D | ConstLong.java | 95 static ConstLong read (DataInputStream input) throws IOException { argument 96 return new ConstLong (input.readLong());
|
H A D | ConstUtf8.java | 86 static ConstUtf8 read (DataInputStream input) throws IOException { argument 87 return new ConstUtf8 (input.readUTF());
|
H A D | ConstClass.java | 114 static ConstClass read (DataInputStream input) throws IOException { argument 115 return new ConstClass (input.readUnsignedShort());
|
H A D | ConstString.java | 110 static ConstString read (DataInputStream input) throws IOException { argument 111 return new ConstString (input.readUnsignedShort());
|
H A D | ConstNameAndType.java | 120 static ConstNameAndType read (DataInputStream input) throws IOException { argument 121 int cname = input.readUnsignedShort(); 122 int sig = input.readUnsignedShort();
|
H A D | ConstantPool.java | 273 ConstantPool(DataInputStream input) throws IOException { argument 275 int nconstants = input.readUnsignedShort()-1; 277 nconstants -= readConstant(input); 348 private int readConstant(DataInputStream input) throws IOException { argument 350 byte b = input.readByte(); 354 basic = ConstUtf8.read(input); 357 basic = ConstUnicode.read(input); 360 basic = ConstInteger.read(input); 363 basic = ConstFloat.read(input); 366 basic = ConstLong.read(input); [all...] |
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/ |
H A D | Interaction.java | 51 * <LI><code>execute</code> method that takes an input Record, output 55 * <LI><code>execute</code> method that takes an input Record and an 97 * This form of invocation takes an input Record and updates 102 * @param input Input Record 116 * input or output record structure 117 * <LI> Errors in use of input or output Record 126 Record input, 130 * This form of invocation takes an input Record and returns an 136 * @param input Input Record 148 * or input recor 125 execute(InteractionSpec ispec, Record input, Record output) argument 157 execute(InteractionSpec ispec, Record input) argument [all...] |
/glassfish-3.1.2/deployment/common/src/main/java/com/sun/enterprise/deploy/jar/ |
H A D | JarHandler.java | 168 InputStream input = null; 171 input = new FileInputStream(f); 173 read(input); 182 if (input != null) { 184 input.close(); 195 InputStream input = null; 202 input = archive.getEntry( "META-INF/glassfish-application-client.xml" ); 203 if (input == null) { 205 input = archive.getEntry( "META-INF/glassfish-ejb-jar.xml" ); 208 if (input ! 241 read(InputStream input) argument 320 read(InputStream input) argument [all...] |
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/ |
H A D | RegexUtil.java | 97 public static String wildcardToJavaRegex(String input) argument 99 String converted = input; 101 if (input != null) 103 final int length = input.length(); 108 final char theChar = input.charAt(i);
|
/glassfish-3.1.2/tests/community/web/helloworld/src/test/ |
H A D | HelloJSPTestNG.java | 93 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 99 while ((line = input.readLine()) != null) { 131 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 136 while ((line = input.readLine()) != null) { 166 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 171 while ((line = input.readLine()) != null) { 205 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 210 while ((line = input.readLine()) != null) {
|
/glassfish-3.1.2/tests/quicklook/web/helloworld/src/test/ |
H A D | HelloJSPTestNG.java | 93 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 99 while ((line = input.readLine()) != null) { 131 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 136 while ((line = input.readLine()) != null) { 165 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 170 while ((line = input.readLine()) != null) { 204 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 209 while ((line = input.readLine()) != null) {
|
/glassfish-3.1.2/build/glassfish-obr-builder/src/main/java/org/glassfish/obrbuilder/xmlentities/ |
H A D | ObrXmlReaderWriter.java | 61 * Reads the XML document from the input stream and maps it to a Java object graph. 83 public Repository read(URI input) throws IOException { argument 84 InputStream is = new BufferedInputStream(input.toURL().openStream()); 99 public Repository read(File input) throws IOException { argument 100 return read(input.toURI());
|
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/ |
H A D | MiscUtil.java | 75 public static Document getDocument(String input) { argument 79 Document doc = db.parse(new ByteArrayInputStream(input.getBytes())); 82 GuiUtil.prepareAlert("error", ex.getMessage() + ": " + input, null);
|
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/handlers/ |
H A D | UtilHandlers.java | 113 input={ 136 input={ 149 input={ 219 input={ 229 * <p> Returns the value to which the input map maps the input key. </p> 237 input={ 249 input={ 289 input={ 314 input [all...] |
/glassfish-3.1.2/tests/quicklook/weld/numberguess/src/java/numberguess/ |
H A D | Game.java | 156 int input = (Integer) value; 158 if (input < smallest || input > biggest)
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/ |
H A D | ExpandWar.java | 104 * @exception IOException if an input/output error was encountered 139 * @exception IOException if an input/output error was encountered 173 InputStream input = null; 198 input = jarFile.getInputStream(jarEntry); 199 expand(input, expandedFile); 204 input.close(); 205 input = null; 216 if (input != null) { 218 input.close(); 222 input 461 expand(InputStream input, File docBase, String name) argument 476 expand(InputStream input, File file) argument [all...] |
/glassfish-3.1.2/tests/community/jdbc/jdbcusertx/src/test/ |
H A D | JdbcUserTxTestNG.java | 89 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 96 while ((line = input.readLine()) != null) { 130 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 136 while ((line = input.readLine()) != null) {
|
/glassfish-3.1.2/tests/community/web/jruby/helloapp/test/ |
H A D | JRubyTestNG.java | 88 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 94 while ((line = input.readLine()) != null) { 132 BufferedReader input = new BufferedReader(new InputStreamReader(is)); 138 while ((line = input.readLine()) != null) {
|