Searched refs:input (Results 1 - 25 of 147) sorted by relevance

123456

/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DConstFieldRef.java72 static ConstFieldRef read (DataInputStream input) throws IOException { argument
73 int cname = input.readUnsignedShort();
74 int NT = input.readUnsignedShort();
H A DConstInterfaceMethodRef.java79 static ConstInterfaceMethodRef read (DataInputStream input) argument
81 int cname = input.readUnsignedShort();
82 int NT = input.readUnsignedShort();
H A DConstMethodRef.java79 static ConstMethodRef read (DataInputStream input) throws IOException { argument
80 int cname = input.readUnsignedShort();
81 int NT = input.readUnsignedShort();
H A DConstUnicode.java92 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 DConstDouble.java100 static ConstDouble read (DataInputStream input) throws IOException { argument
101 return new ConstDouble (input.readDouble());
H A DConstFloat.java95 static ConstFloat read (DataInputStream input) throws IOException { argument
96 return new ConstFloat (input.readFloat());
H A DConstInteger.java95 static ConstInteger read (DataInputStream input) throws IOException { argument
96 return new ConstInteger (input.readInt());
H A DConstLong.java95 static ConstLong read (DataInputStream input) throws IOException { argument
96 return new ConstLong (input.readLong());
H A DConstUtf8.java86 static ConstUtf8 read (DataInputStream input) throws IOException { argument
87 return new ConstUtf8 (input.readUTF());
H A DConstClass.java114 static ConstClass read (DataInputStream input) throws IOException { argument
115 return new ConstClass (input.readUnsignedShort());
H A DConstString.java110 static ConstString read (DataInputStream input) throws IOException { argument
111 return new ConstString (input.readUnsignedShort());
H A DConstNameAndType.java120 static ConstNameAndType read (DataInputStream input) throws IOException { argument
121 int cname = input.readUnsignedShort();
122 int sig = input.readUnsignedShort();
H A DConstantPool.java273 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 DInteraction.java51 * <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 DJarHandler.java168 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 DRegexUtil.java97 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 DHelloJSPTestNG.java93 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 DHelloJSPTestNG.java93 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 DObrXmlReaderWriter.java61 * 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 DMiscUtil.java75 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 DUtilHandlers.java113 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 DGame.java156 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 DExpandWar.java104 * @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 DJdbcUserTxTestNG.java89 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 DJRubyTestNG.java88 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) {

Completed in 52 milliseconds

123456