Searched refs:input (Results 226 - 250 of 417) sorted by relevance

1234567891011>>

/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DGenerator.java135 //validate the input variables
259 private String substituteVariables(String input) { argument
260 if (input == null) return null;
262 input = input.replace("${" + variable.getKey() + "}", variable.getValue());
264 return input;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEG.java262 * in a JFIF file. If <code>input</code> is true, then the
266 boolean input) {
283 if (input) {
301 * with an Adobe marker segment. If <code>input</code> is true, then
304 static int transformForType(ImageTypeSpecifier imageType, boolean input) { argument
312 retval = input ? ADOBE_YCC : ADOBE_UNKNOWN;
318 retval = input ? ADOBE_YCCK : ADOBE_IMPOSSIBLE;
265 isJFIFcompliant(ImageTypeSpecifier imageType, boolean input) argument
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DPaddingTest.java147 byte[] input = new byte[bufferLen];
161 while ((len = pin.read(input, 0, bufferLen)) > 0) {
163 byte[] output = cipher.update(input, 0, len);
180 while ((len = cin.read(input, 0, bufferLen)) > 0) {
181 output = cipher.update(input, 0, len);
H A DDesAPITest.java125 byte[] input = new byte[bufferLen];
136 input = null;
137 output = cipher.update(input, 0, -1);
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharISO2022.java99 private byte[] savetyGetSrc(byte[] input, int inOff, int inEnd, int nbytes) argument
110 tmp[i] = input[inOff+i];
150 public final int convert(byte[] input, int inOff, int inEnd, argument
160 // Loop until we hit the end of the input
166 remainByte[0] = input[byteOff];
184 byte tmp[] = savetyGetSrc(input, byteOff, inEnd,
H A DByteToCharISO2022CN.java95 private byte[] savetyGetSrc(byte[] input, int inOff, int inEnd, int nbytes) argument
106 tmp[i] = input[inOff+i];
144 public final int convert(byte[] input, int inOff, int inEnd, argument
154 // Loop until we hit the end of the input
160 remainByte[0] = input[byteOff];
178 byte tmp[] = savetyGetSrc(input, byteOff, inEnd,
H A DCharToByteDBCS_EBCDIC.java83 public int convert(char[] input, int inOff, int inEnd, argument
101 inputChar = input[charOff];
111 // Is this the last character of the input?
119 inputChar = input[charOff + inputSize];
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DStreamMonitor.java35 private BufferedReader input; field in class:StreamMonitor
94 input = new BufferedReader(new InputStreamReader(istr));
185 String str = input.readLine();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftLimiter.java50 public void setInput(int pin, SoftAudioBuffer input) { argument
52 bufferL = input;
54 bufferR = input;
/openjdk7/jdk/test/java/net/URL/
H A DPerConnectionProxy.java168 * by continuously copying bytes from the input socket onto the output
174 InputStream input; field in class:PerConnectionProxy.ProxyServer.ProxyTunnel
181 input = sockIn.getInputStream();
192 while ((bytesRead = input.read(buf)) >= 0) {
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DProxyTunnelServer.java135 * by continuously copying bytes from the input socket onto the output
141 InputStream input; field in class:ProxyTunnelServer.ProxyTunnel
149 input = sockIn.getInputStream();
163 while ((bytesRead = input.read(buf)) >= 0) {
204 * The input, connectStr is of the form:
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DProxyTunnelServer.java198 * by continuously copying bytes from the input socket onto the output
204 InputStream input; field in class:ProxyTunnelServer.ProxyTunnel
211 input = sockIn.getInputStream();
222 while ((bytesRead = input.read(buf)) >= 0) {
256 * The input, connectStr is of the form:
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DProxyTunnelServer.java200 * by continuously copying bytes from the input socket onto the output
206 InputStream input; field in class:ProxyTunnelServer.ProxyTunnel
213 input = sockIn.getInputStream();
224 while ((bytesRead = input.read(buf)) >= 0) {
258 * The input, connectStr is of the form:
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DExtern.java271 * @param input InputStream from the "package-list" file.
275 private void readPackageList(InputStream input, String path, argument
278 BufferedReader in = new BufferedReader(new InputStreamReader(input));
297 input.close();
/openjdk7/jdk/test/sun/net/idn/
H A DTestStringPrep.java165 String src = testCase.input;
240 UCharacterIterator iter = UCharacterIterator.getInstance(testCase.input);
248 fail("get the unexpected exception for source: " +testCase.input +" Got: "+ ex.toString());
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DProxyTunnelServer.java200 * by continuously copying bytes from the input socket onto the output
206 InputStream input; field in class:ProxyTunnelServer.ProxyTunnel
213 input = sockIn.getInputStream();
224 while ((bytesRead = input.read(buf)) >= 0) {
258 * The input, connectStr is of the form:
/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java31 * The <code>StreamTokenizer</code> class takes an input stream and
38 * Each byte read from the input stream is regarded as a character
69 private InputStream input = null; field in class:StreamTokenizer
114 * <li><code>TT_EOF</code> indicates that the end of the input stream
200 * Creates a stream tokenizer that parses the specified input
219 * input stream is to convert it into a character stream, for example:
225 * @param is an input stream.
236 input = is;
242 * @param r a Reader object providing the input stream.
287 * separate tokens in the input strea
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPImageWriter.java155 RenderedImage input = null;
165 input = image.getRenderedImage();
166 sampleModel = input.getSampleModel();
168 inputRaster = input.getData();
246 if(!writeRaster && input.getColorModel() instanceof IndexColorModel) {
247 IndexColorModel icm = (IndexColorModel)input.getColorModel();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTrAXFilter.java104 public void parse (InputSource input) throws SAXException, IOException argument
120 getParent().parse(input);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/parser/
H A DWSDLParserExtension.java211 public boolean portTypeOperationInputElements(WSDLInput input, XMLStreamReader reader) { argument
215 public void portTypeOperationInputAttributes(WSDLInput input, XMLStreamReader reader) { argument
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6401598.java56 short input = dis.readShort();
64 dos.writeShort(input);
/openjdk7/jdk/test/java/beans/XMLDecoder/
H A DTest4864117.java56 InputStream input = new ByteArrayInputStream(DATA.getBytes());
59 SAXParserFactory.newInstance().newSAXParser().parse(input, test);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DAbstractTest.java147 ByteArrayInputStream input = new ByteArrayInputStream(array);
148 XMLDecoder decoder = new XMLDecoder(input);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharTrie.java58 * <p>Unserialize the 32-bit-aligned input stream and use the data for the
60 * @param inputStream file input stream to a ICU data file, containing
267 * <p>Parses the input stream and stores its trie content into a index and
269 * @param inputStream data input stream containing trie data
275 DataInputStream input = new DataInputStream(inputStream);
279 m_index_[i] = input.readChar();
/openjdk7/jdk/test/javax/security/auth/x500/X500Principal/
H A DEquals.java125 static void printName(String heading, String input, X500Principal p) { argument
127 System.out.println(" input:\t\t" + input);

Completed in 62 milliseconds

1234567891011>>