Searched refs:input (Results 76 - 100 of 417) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DDatatypeConverterImpl.java318 throw new IllegalArgumentException("input is empty");
562 public static String _printBase64Binary(byte[] input) { argument
563 return _printBase64Binary(input, 0, input.length);
566 public static String _printBase64Binary(byte[] input, int offset, int len) { argument
568 int ptr = _printBase64Binary(input, offset, len, buf, 0);
582 public static int _printBase64Binary(byte[] input, int offset, int len, char[] buf, int ptr) { argument
587 buf[ptr++] = encode(input[i] >> 2);
589 ((input[i] & 0x3) << 4)
590 | ((input[
614 _printBase64Binary(byte[] input, int offset, int len, XMLStreamWriter output) argument
659 _printBase64Binary(byte[] input, int offset, int len, byte[] out, int ptr) argument
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DJISAutoDetectTest.java37 byte[] input; field in class:JISAutoDetectTest.TestData
61 ncr = autoDetect.decode(ByteBuffer.wrap(data[i].input),
64 mcr = dec.decode(ByteBuffer.wrap(data[i].input),
96 data[i].input = new byte[] { (byte)'C', (byte)'o', (byte)'p', (byte)'y',
105 data[i].input = new byte[] { (byte)0xbb, (byte)0xdd, (byte)0xcf, (byte)0xb2,
114 data[i].input = new byte[] { (byte)0xbb, (byte)0xdd, (byte)0xcf, (byte)0xb2,
122 data[i].input = new byte[] { (byte)0xbb, (byte)0xdd, (byte)0xcf, (byte)0xb2,
130 data[i].input = new byte[] { (byte)0x8f, (byte)0xa1, (byte)0xaa };
136 data[i].input = new byte[] { (byte)0xa4, (byte)0xd2, (byte)0xa4, (byte)0xe9,
143 data[i].input
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DStAXSchemaParser.java106 public void parse(XMLEventReader input) throws XMLStreamException, XNIException { argument
107 XMLEvent currentEvent = input.peek();
116 loop: while (input.hasNext()) {
117 currentEvent = input.nextEvent();
184 public void parse(XMLStreamReader input) throws XMLStreamException, XNIException { argument
185 if (input.hasNext()) {
186 int eventType = input.getEventType();
191 fLocationWrapper.setLocation(input.getLocation());
194 loop: while (input.hasNext()) {
196 eventType = input
330 fillXMLAttributes(XMLStreamReader input) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftAudioProcessor.java39 public void setInput(int pin, SoftAudioBuffer input); argument
H A DSoftReverb.java95 float input = inout[i];
96 inout[i] = delayout - input;
97 delaybuffer[rovepos] = input + delayout * feedback;
110 float input = in[i];
111 out[i] = delayout - input;
112 delaybuffer[rovepos] = input + delayout * feedback;
195 private float[] input; field in class:SoftReverb
263 public void setInput(int pin, SoftAudioBuffer input) { argument
265 inputA = input;
299 if (input
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformC14N.java56 (XMLSignatureInput input, Transform _transformObject)
58 return enginePerformTransform(input, null, _transformObject);
61 protected XMLSignatureInput enginePerformTransform(XMLSignatureInput input,OutputStream os, Transform _transformObject) argument
68 result=c14n.engineCanonicalize(input);
55 enginePerformTransform(XMLSignatureInput input, Transform _transformObject) argument
H A DTransformC14N11.java45 (XMLSignatureInput input, Transform transform)
47 return enginePerformTransform(input, null, transform);
51 (XMLSignatureInput input, OutputStream os, Transform transform)
58 result = c14n.engineCanonicalize(input);
44 enginePerformTransform(XMLSignatureInput input, Transform transform) argument
50 enginePerformTransform(XMLSignatureInput input, OutputStream os, Transform transform) argument
H A DTransformC14N11_WithComments.java45 (XMLSignatureInput input, Transform transform)
47 return enginePerformTransform(input, null, transform);
51 (XMLSignatureInput input, OutputStream os, Transform transform)
60 result = c14n.engineCanonicalize(input);
44 enginePerformTransform(XMLSignatureInput input, Transform transform) argument
50 enginePerformTransform(XMLSignatureInput input, OutputStream os, Transform transform) argument
H A DTransformC14NWithComments.java51 (XMLSignatureInput input, Transform _transformObject)
53 return enginePerformTransform(input, null, _transformObject);
57 protected XMLSignatureInput enginePerformTransform(XMLSignatureInput input,OutputStream os, Transform _transformObject) argument
66 result=c14n.engineCanonicalize(input);
50 enginePerformTransform(XMLSignatureInput input, Transform _transformObject) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DInheritableTaglet.java44 * @param input the input for documentation search.
47 void inherit(DocFinder.Input input, DocFinder.Output output); argument
H A DReturnTaglet.java51 public void inherit(DocFinder.Input input, DocFinder.Output output) { argument
52 Tag[] tags = input.method.tags("return");
54 output.holder = input.method;
56 output.inlineTags = input.isFirstSentence ?
H A DSeeTaglet.java50 public void inherit(DocFinder.Input input, DocFinder.Output output) { argument
51 Tag[] tags = input.method.seeTags();
53 output.holder = input.method;
55 output.inlineTags = input.isFirstSentence ?
/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteEUC_TW.java56 public int convert(char[] input, int inOff, int inEnd, argument
71 if ( input[charOff] < 0x80) { // ASCII
73 outputByte[0] = (byte)(input[charOff] & 0x7f);
75 outputSize = enc.toEUC(input[charOff], outputByte);
H A DCharToByteConverter.java50 * Bytes to substitute for unmappable input.
65 * Length of bad input that caused conversion to stop.
105 * @param input array containing Unicode characters to be converted.
106 * @param inStart begin conversion at this offset in input array.
107 * @param inEnd stop conversion at this offset in input array (exclusive).
111 * @exception MalformedInputException if the input buffer contains any
115 * first invalid input character. The MalformedInputException can
116 * be queried for the length of the invalid input.
121 * to converting all the input.
123 public abstract int convert(char[] input, in argument
147 convertAny(char[] input, int inStart, int inEnd, byte[] output, int outStart, int outEnd) argument
[all...]
H A DCharToByteDoubleByte.java71 * @param input char array containing text in Unicode
72 * @param inStart offset in input array
80 public int convert(char[] input, int inOff, int inEnd, argument
87 int inputSize = 0; // Size of input
98 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
109 // Loop until we hit the end of the input
113 inputChar = input[charOff]; // Get the input character
117 // Is this the last character of the input
[all...]
H A DCharToByteEUC_JP_LINUX.java76 * @param input char array containing text in Unicode
77 * @param inStart offset in input array
85 public int convert(char[] input, int inOff, int inEnd, argument
92 int inputSize = 0; // Size of input
103 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
114 // Loop until we hit the end of the input
118 inputChar = input[charOff]; // Get the input character
122 // Is this the last character of the input
[all...]
H A DCharToByteISO8859_1.java52 public int convert(char[] input, int inOff, int inEnd, argument
63 int inputSize; // Size of input
73 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
96 // Loop until we hit the end of the input
100 // Get the input character
101 inputChar = input[charOff];
111 // Is this the last character in the input?
118 inputChar = input[charOff + 1];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLOperationImpl.java49 private WSDLInputImpl input; field in class:WSDLOperationImpl
77 return input;
80 public void setInput(WSDLInputImpl input) { argument
81 this.input = input;
130 assert input != null;
131 input.freeze(root);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DTrie.java107 * @param inputStream ICU data file input stream which contains the
111 * @throws IOException thrown when input stream does not have the
117 DataInputStream input = new DataInputStream(inputStream);
119 int signature = input.readInt();
120 m_options_ = input.readInt();
133 m_dataOffset_ = input.readInt();
134 m_dataLength_ = input.readInt();
168 * Shift size for shifting right the input index. 1..9
185 * Mask for getting the lower bits from the input index.
330 * @param inputStream input strea
[all...]
/openjdk7/jdk/test/sun/net/idn/
H A DPunycodeTest.java51 "input or output is too large, recompile with larger limits\n";
52 static final String invalid_input = "invalid input\n";
59 static void fail(String msg, String input) { argument
60 System.out.println(msg+" input: "+input);
61 throw new RuntimeException(msg+" input: "+input);
72 char input[] = new char[unicode_max_length];
78 /* Read the input code points: */
104 input[input_lengt
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherInputStream.java71 // the underlying input stream
72 private InputStream input; field in class:CipherInputStream
79 // having reached the end of the underlying input stream
103 int readin = input.read(ibuffer);
132 * <br>Note: if the specified input stream or cipher is
135 * @param is the to-be-processed input stream
140 input = is;
148 * <br>Note: if the specified input stream is null, a
150 * @param is the to-be-processed input stream
154 input
[all...]
H A DMac.java443 * @param input the input byte to be processed.
448 public final void update(byte input) throws IllegalStateException { argument
453 spi.engineUpdate(input);
459 * @param input the array of bytes to be processed.
464 public final void update(byte[] input) throws IllegalStateException { argument
469 if (input != null) {
470 spi.engineUpdate(input, 0, input.length);
475 * Processes the first <code>len</code> bytes in <code>input</cod
485 update(byte[] input, int offset, int len) argument
511 update(ByteBuffer input) argument
614 doFinal(byte[] input) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsLinkSupport.java69 private static String getFinalPath(WindowsPath input) throws IOException { argument
72 h = input.openForReadAttributeAccess(true);
74 x.rethrowAsIOException(input);
82 x.rethrowAsIOException(input);
93 static String getFinalPath(WindowsPath input, boolean followLinks) argument
96 WindowsFileSystem fs = input.getFileSystem();
100 return input.getPathForWin32Calls();
103 if (!WindowsFileAttributes.get(input, false).isSymbolicLink()) {
104 return input.getPathForWin32Calls();
107 x.rethrowAsIOException(input);
156 getRealPath(WindowsPath input, boolean resolveLinks) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DInclude.java70 InputSource input = null;
77 input = loader.loadSource(docToLoad, currLoadedDoc, xsltc);
78 if (input != null) {
79 docToLoad = input.getSystemId();
87 if (input == null) {
100 input = new InputSource(docToLoad);
104 if (input == null) {
113 root = parser.parse(reader,input);
116 root = parser.parse(input);
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedInputStream.java31 * functionality to another input stream-namely,
32 * the ability to buffer the input and to
38 * as necessary from the contained input stream,
40 * operation remembers a point in the input
45 * the contained input stream.
79 * </code>contain buffered input data obtained
80 * from the underlying input stream.
91 * is the next byte to be supplied as input;
95 * read from the contained input stream.
107 * If there is no marked position in the input
[all...]

Completed in 76 milliseconds

1234567891011>>