Searched refs:input (Results 101 - 125 of 417) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DXMLCipherInput.java37 * <code>XMLCipherInput</code> is used to wrap input passed into the
81 * @param input The <code>EncryptedType</code> object to read
86 public XMLCipherInput(EncryptedType input) throws XMLEncryptionException { argument
88 _cipherData = ((input == null) ? null : input.getCipherData());
97 * Dereferences the input and returns it as a single byte array.
129 XMLSignatureInput input = null;
134 input = resolver.resolve(uriAttr, null);
139 if (input != null) {
152 input
[all...]
/openjdk7/jdk/test/java/lang/Double/
H A DParseDouble.java453 * proper value; just whether the input is accepted appropriately
456 private static void testParsing(String [] input, argument
458 for(int i = 0; i < input.length; i++) {
462 d = Double.parseDouble(input[i]);
467 "good string `" + input[i] +
474 "bad string `" + input[i] +
485 * to match an input string.
487 private static void testRegex(String [] input, boolean exceptionalInput) { argument
508 // Since this method allows integer-only strings as input
519 // Since this method allows integer-only strings as input
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DChildSession.java30 * input validation and proper error handling, might not be present in
55 private InputListener input; field in class:ChildSession
61 InputListener input,
66 input, output, error, diagnostics);
72 InputListener input,
77 input, output, error, diagnostics);
82 InputListener input,
87 this.input = input;
122 new InputWriter("input write
59 ChildSession(ExecutionManager runtime, String userVMArgs, String cmdLine, InputListener input, OutputListener output, OutputListener error, OutputListener diagnostics) argument
69 ChildSession(ExecutionManager runtime, LaunchingConnector connector, Map<String, Connector.Argument> arguments, InputListener input, OutputListener output, OutputListener error, OutputListener diagnostics) argument
80 ChildSession(ExecutionManager runtime, VirtualMachine vm, InputListener input, OutputListener output, OutputListener error, OutputListener diagnostics) argument
286 private InputListener input; field in class:ChildSession.InputWriter
289 InputWriter(String threadName, PrintWriter stream, InputListener input) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLDecoder.java69 private final InputSource input; field in class:XMLDecoder
75 * Creates a new input stream for reading archives
87 * Creates a new input stream for reading archives
99 * Creates a new input stream for reading archives
112 * Creates a new input stream for reading archives
135 * If the input source {@code is} is {@code null},
140 * @param is the input source to parse
152 * @param is the input source to parse
162 this.input = is;
170 * This method closes the input strea
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacPKCS12PBESHA1.java151 * @param input the input byte to be processed.
153 protected void engineUpdate(byte input) { argument
154 hmac.update(input);
158 * Processes the first <code>len</code> bytes in <code>input</code>,
161 * @param input the input buffer.
162 * @param offset the offset in <code>input</code> where the input starts.
165 protected void engineUpdate(byte input[], in argument
169 engineUpdate(ByteBuffer input) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharEUC_JP.java99 * @param input byte array containing text in Double/single Byte
100 * @param inStart offset in input array
108 public int convert(byte[] input, int inOff, int inEnd, argument
114 int inputSize = 0; // Size of input
120 // Loop until we hit the end of the input
125 byte1 = input[byteOff];
143 savedSecond = input[byteOff];
152 byte1 = input[byteOff + inputSize] & 0xff;
155 byte2 = input[byteOff + inputSize] & 0xff;
167 byte2 = input[byteOf
[all...]
H A DByteToCharEUC_JP_Solaris.java116 * @param input byte array containing text in Double/single Byte
117 * @param inStart offset in input array
125 public int convert(byte[] input, int inOff, int inEnd, argument
131 int inputSize = 0; // Size of input
137 // Loop until we hit the end of the input
142 byte1 = input[byteOff];
160 savedSecond = input[byteOff];
169 byte1 = input[byteOff + inputSize] & 0xff;
172 byte2 = input[byteOff + inputSize] & 0xff;
184 byte2 = input[byteOf
[all...]
H A DCharToByteUTF8.java62 public int convert(char[] input, int inOff, int inEnd, argument
77 if (input[inOff] >= 0xdc00 && input[inOff] <= 0xdfff) {
80 + (input[inOff] - 0xdc00) + 0x10000;
95 inputChar = input[charOff];
112 char lowChar = input[charOff + 1];
H A DByteToCharSingleByte.java57 * Call reset before converting input that is not a continuation of
60 * @param input byte array containing text in character set
61 * @param inStart offset in input array
67 * illegal for the input character set, including any partial multi-byte
68 * sequence which occurs at the end of an input buffer.
72 * before the input is exhausted.
75 public int convert(byte[] input, int inOff, int inEnd, argument
87 // Loop until we hit the end of the input
90 byteIndex = input[byteOff];
93 *outputChar = byteToCharTable[input[byteOf
[all...]
H A DByteToCharEUC_JP_LINUX.java97 * @param input byte array containing text in Double/single Byte
98 * @param inStart offset in input array
106 public int convert(byte[] input, int inOff, int inEnd, argument
112 int inputSize = 0; // Size of input
118 // Loop until we hit the end of the input
123 byte1 = input[byteOff];
143 byte2 = input[byteOff + inputSize] & 0xff;
156 savedSecond = input[byteOff];
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DUtil.java84 InputSource input = null;
89 // Try to get InputSource from SAXSource input
92 input = sax.getInputSource();
168 input = SAXSource.sourceToInputSource(source);
169 if (input == null){
170 input = new InputSource(domsrc.getSystemId());
190 input = SAXSource.sourceToInputSource(source);
191 if (input == null){
192 input = new InputSource(staxSource.getSystemId());
205 input
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Mac/
H A DMacKAT.java107 private final byte[] input; field in class:MacKAT.MacTest
110 MacTest(String alg, byte[] input, byte[] macvalue, byte[] key) { argument
112 this.input = input;
120 mac.update(input);
124 if (input.length < 256) {
125 System.out.println("input: " + toString(input));
147 private static Test t(String alg, String input, String macvalue, String key) { argument
148 return new MacTest(alg, b(input),
151 t(String alg, byte[] input, String macvalue, String key) argument
155 t(String alg, byte[] input, String macvalue, byte[] key) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DDes.java146 public static long octet2long(byte[] input) { argument
147 return octet2long(input, 0);
150 public static long octet2long(byte[] input, int offset) { //convert a 8-byte to a long argument
153 if (i + offset < input.length) {
154 result |= (((long)input[i + offset]) & 0xffL) << ((7 - i) * 8);
160 public static byte[] long2octet(long input) { argument
163 output[i] = (byte)((input >>> ((7 - i) * 8)) & 0xffL);
168 public static void long2octet(long input, byte[] output) { argument
169 long2octet(input, output, 0);
172 public static void long2octet(long input, byt argument
190 cbc_encrypt( byte[] input, byte[] output, byte[] key, byte[] ivec, boolean encrypt) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DStateEngine.java33 * be used as an input if it supports the Input interface.
34 * For example, a protocol message may be an input. The FSM
39 * in that the same input may cause transitions to different new
56 public StateEngine add( State oldState, Input input, Guard guard, argument
61 public StateEngine add( State oldState, Input input, argument
66 * defined for the actual input. Repeated calls to this method
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DValueBaseHolder.java79 * Reads from <code>input</code> and initalizes the value in the Holder
82 * @param input the InputStream containing CDR formatted data from the wire
84 public void _read(InputStream input) { argument
85 value = ((org.omg.CORBA_2_3.portable.InputStream)input).read_value();
/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DLSParser.java51 * from various input sources.
104 * <p> While parsing an input source, errors are reported to the application
121 * <dt><code>"no-input-specified" [fatal]</code></dt>
123 * Raised when loading a document and no input is specified in the
172 * The <code>DOMConfiguration</code> object used when parsing an input
192 * indication of the character encoding of the input stream being
328 * @param input The <code>LSInput</code> from which the source of the
344 public Document parse(LSInput input) argument
411 * <code>action</code> arguments. When parsing the input stream, the
426 * what they would be set to if the input sourc
483 parseWithContext(LSInput input, Node contextArg, short action) argument
[all...]
/openjdk7/jdk/test/com/sun/jndi/cosnaming/
H A DCNNameParser.java36 String input, String[] comps) throws Exception {
37 checkName(parser.parse(input), comps);
35 checkCompound(NameParser parser, String input, String[] comps) argument
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DAbstractTest.java51 ByteArrayInputStream input = new ByteArrayInputStream(array);
52 XMLDecoder decoder = new XMLDecoder(input);
/openjdk7/jdk/test/java/beans/XMLEncoder/4741757/
H A DAbstractTest.java50 ByteArrayInputStream input = new ByteArrayInputStream(output.toByteArray());
51 XMLDecoder decoder = new XMLDecoder(input);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DECDHClientKeyExchange.java62 ECDHClientKeyExchange(HandshakeInStream input) throws IOException { argument
63 encodedPoint = input.getBytes8();
/openjdk7/jdk/test/java/util/Locale/data/
H A Ddeflocale.sh51 done < deflocale.input
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffersNull.java164 public byte[] engineUpdate(byte[] input, int offset, int len) { argument
168 public int engineUpdate(byte[] input, int inputOffset, int inputLen, argument
174 public byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
179 public int engineDoFinal(byte[] input, int inputOffset, int inputLen, argument
201 public int engineDoFinal(ByteBuffer input, ByteBuffer output) argument
204 return super.engineDoFinal(input, output);
207 public int engineUpdate(ByteBuffer input, ByteBuffer output) argument
209 return super.engineUpdate(input, output);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocumentVisitor.java49 public void preVisit(Input input) throws Exception; argument
50 public void postVisit(Input input) throws Exception; argument
59 public void preVisit(BindingInput input) throws Exception; argument
60 public void postVisit(BindingInput input) throws Exception; argument
H A DWSDLDocumentVisitorBase.java63 public void preVisit(Input input) throws Exception { argument
65 public void postVisit(Input input) throws Exception { argument
83 public void preVisit(BindingInput input) throws Exception { argument
85 public void postVisit(BindingInput input) throws Exception { argument
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DAction.java37 * <code>input</code>, <code>output</code>, and
42 * <code>wsam:Action</code> attribute on the WSDL <code>input</code>,
49 * for <code>input</code> and <code>output</code> messages.
55 * input="http://example.com/inputAction",
69 * &lt;input message="tns:AddNumbersInput" name="foo"
81 * for only the <code>input</code> message. The <code>wsam:Action</code> values for the
87 * <b>&#64;Action(input="http://example.com/inputAction")</b>
100 * &lt;input message="tns:AddNumbersInput" name="foo"
112 * WSDL <code>input</code> message is computed using the algorithm in the JAX-WS specification.
129 * Explicit value of the WS-Addressing <code>Action</code> message addressing property for the <code>input</cod
[all...]

Completed in 94 milliseconds

1234567891011>>