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

1234

/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/filter/
H A DUntrustedInput.java5 * Wrapper class to mark untrusted input.
10 protected Object input; field in class:UntrustedInput
14 * @param input the untrusted input Object
16 public UntrustedInput(Object input) argument
18 this.input = input;
22 * Returns the untrusted input as Object.
23 * @return the <code>input</code> as Object
27 return input;
[all...]
H A DFilter.java8 * Runs the filter on the input String and returns the filtered String
9 * @param input input String
12 public String doFilter(String input); argument
H A DHTMLFilter.java10 public String doFilter(String input) argument
12 StringBuffer buf = new StringBuffer(input);
/dalvik/libcore/luni/src/main/java/java/net/
H A DURISyntaxException.java30 private String input; field in class:URISyntaxException
39 * @param input
46 * if one of the arguments {@code input} or {@code reason} is
51 public URISyntaxException(String input, String reason, int index) { argument
54 if (input == null || reason == null) {
62 this.input = input;
70 *@param input
75 * if one of the arguments {@code input} or {@code reason} is
78 public URISyntaxException(String input, Strin argument
[all...]
/dalvik/tools/dmtracedump/
H A Ddmtracedump.pl8 $input = $_;
9 $input =~ s/\.data$//;
11 $output = "$input.html";
13 print("dmtracedump -h -p $input > $output\n");
14 system("dmtracedump -h -p '$input' > '$output'");
/dalvik/libcore/crypto/src/main/java/javax/crypto/
H A DMacSpi.java68 * @param input
71 protected abstract void engineUpdate(byte input); argument
75 * buffer {@code input} from the specified {@code offset} and length {@code
78 * @param input
85 protected abstract void engineUpdate(byte[] input, int offset, int len); argument
92 * @param input
95 protected void engineUpdate(ByteBuffer input) { argument
96 if (!input.hasRemaining()) {
100 if (input.hasArray()) {
101 bInput = input
[all...]
H A DCipherSpi.java131 * the length of the input (in bytes).
180 * the input key for the operation.
212 * the input key for the operation.
250 * the input key for the operation.
270 * @param input
271 * the input bytes to transform.
273 * the offset in the input to start.
275 * the length of the input to transform.
277 * input has zero length.
282 * if the input i
285 engineUpdate(byte[] input, int inputOffset, int inputLen) argument
311 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
333 engineUpdate(ByteBuffer input, ByteBuffer output) argument
389 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
418 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
450 engineDoFinal(ByteBuffer input, ByteBuffer output) argument
[all...]
H A DMac.java238 * @param input
243 public final void update(byte input) throws IllegalStateException { argument
247 spiImpl.engineUpdate(input);
252 * {@code input} from the specified {@code offset} and length {@code len}.
254 * @param input
264 * chunk in {@code input} buffer.
266 public final void update(byte[] input, int offset, int len) argument
271 if (input == null) {
274 if ((offset < 0) || (len < 0) || ((offset + len) > input.length)) {
277 spiImpl.engineUpdate(input, offse
288 update(byte[] input) argument
307 update(ByteBuffer input) argument
396 doFinal(byte[] input) argument
[all...]
/dalvik/libcore/security/src/main/java/java/security/
H A DMessageDigestSpi.java47 * @param input
51 protected abstract void engineUpdate(byte input); argument
56 * @param input
59 * the index of the first byte in {@code input} to update from.
61 * the number of bytes in {@code input} to update from.
64 * {@code input}.
66 protected abstract void engineUpdate(byte[] input, int offset, int len); argument
69 * Updates this {@code MessageDigestSpi} using the given {@code input}.
71 * @param input
74 protected void engineUpdate(ByteBuffer input) { argument
[all...]
H A DSignatureSpi.java114 * @param input
122 protected void engineUpdate(ByteBuffer input) { argument
123 if (!input.hasRemaining()) {
127 if (input.hasArray()) {
128 tmp = input.array();
129 int offset = input.arrayOffset();
130 int position = input.position();
131 int limit = input.limit();
137 input.position(limit);
139 tmp = new byte[input
[all...]
H A DMessageDigest.java27 * way hash values for arbitrary input, utilizing the algorithm it was
182 * @param input
185 * the index of the first byte in {@code input} to update from
187 * the number of bytes in {@code input} to update from
190 * {@code input}
192 public void update(byte[] input, int offset, int len) { argument
193 if (input == null ||
197 (long) offset + (long) len > input.length) {
201 engineUpdate(input, offset, len);
207 * @param input
212 update(byte[] input) argument
271 digest(byte[] input) argument
364 update(ByteBuffer input) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/io/
H A DExternalizable.java26 * Reads the next object from the ObjectInput <code>input</code>.
28 * @param input
31 * if an error occurs attempting to read from {@code input}.
35 public void readExternal(ObjectInput input) throws IOException, argument
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_ASimpleInputStream.java34 public Support_ASimpleInputStream(String input) { argument
35 buf = input.getBytes();
40 public Support_ASimpleInputStream(byte[] input) { argument
42 len = input.length;
44 System.arraycopy(input, 0, buf, 0, len);
/dalvik/libcore/crypto/src/main/java/org/apache/harmony/crypto/internal/
H A DNullCipherSpi.java99 public byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) { argument
100 if (input == null) {
104 System.arraycopy(input, inputOffset, result, 0, inputLen);
109 public int engineUpdate(byte[] input, int inputOffset, int inputLen, argument
111 if (input == null) {
114 System.arraycopy(input, inputOffset, output, outputOffset, inputLen);
119 public int engineUpdate(ByteBuffer input, ByteBuffer output) argument
121 if (input == null || output == null) {
124 int result = input.limit() - input
134 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
143 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
152 engineDoFinal(ByteBuffer input, ByteBuffer output) argument
[all...]
/dalvik/libcore/regex/src/main/java/java/util/regex/
H A DMatcher.java22 * Provides a means of matching regular expressions against a given input,
23 * finding occurrences of regular expressions in a given input, or replacing
24 * parts of a given input. A {@code Matcher} instance has an associated {@link
25 * Pattern} instance and an input text. A typical use case is to
27 * the input is reached, as the following example illustrates:
61 * Holds the input text.
63 private String input = ""; field in class:Matcher
72 * Holds the end of the region, or input.length() if the matching should
73 * go until the end of the input.
115 * Creates a matcher for a given combination of pattern and input
123 Matcher(Pattern pattern, CharSequence input) argument
204 reset(CharSequence input, int start, int end) argument
252 reset(CharSequence input) argument
[all...]
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DASCCharsetTest.java53 String input = "ab\u5D14\u654F";
57 internalTestEncode(input, output);
72 byte[] input = new byte[] { 97, 98, 63, 63 };
74 internalTestDecode(input, output);
H A DISOCharsetTest.java53 String input = "ab\u5D14\u654F";
57 internalTestEncode(input, output);
74 byte[] input = new byte[] { 97, 98, 63, 63 };
76 internalTestDecode(input, output);
H A DUTF16BECharsetTest.java51 String input = "ab\u5D14\u654F";
53 internalTestEncode(input, output);
68 byte[] input = new byte[] { 0, 97, 0, 98, 93, 20, 101, 79 };
70 internalTestDecode(input, output);
H A DUTF16LECharsetTest.java51 String input = "ab\u5D14\u654F";
53 internalTestEncode(input, output);
68 byte[] input = new byte[] { 97, 0, 98, 0, 20, 93, 79, 101 };
70 internalTestDecode(input, output);
H A DUTF8CharsetTest.java51 byte[] input = new byte[] { 97, 98, -27, -76, -108, -26, -107, -113 };
53 internalTestDecode(input, output);
68 String input = "ab\u5D14\u654F";
70 internalTestEncode(input, output);
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
H A DCipherSymmetricKeyThread.java37 byte[] input = getData().getBytes();
57 cip.doFinal(input, 0, input.length, output);
58 outputSize = cip.getOutputSize(input.length);
65 cip.doFinal(input, 0, input.length, output);
66 outputSize = cip.getOutputSize(input.length);
H A DCipherRSAThread.java35 byte[] input = getData().substring(0, dataBlock).getBytes();
43 cip.doFinal(input, 0, input.length, output);
44 int outputSize = cip.getOutputSize(input.length);
48 checkEncodedData(input, decrypted);
/dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DMacSpiTest.java74 protected void engineUpdate(byte input) { argument
75 super.engineUpdate(input);
79 protected void engineUpdate(byte[] input, int offset, int len) { argument
80 super.engineUpdate(input, offset, len);
108 protected void engineUpdate(byte input) { argument
109 super.engineUpdate(input);
113 protected void engineUpdate(byte[] input, int offset, int len) { argument
114 super.engineUpdate(input, offset, len);
117 protected void engineUpdate(ByteBuffer input) { argument
118 super.engineUpdate(input);
147 engineUpdate(byte input) argument
152 engineUpdate(byte[] input, int offset, int len) argument
156 engineUpdate(ByteBuffer input) argument
269 engineUpdate(byte input) argument
272 engineUpdate(byte[] input, int offset, int len) argument
[all...]
/dalvik/libcore/xml/src/main/java/javax/xml/parsers/
H A DSAXParser.java49 * a variety of input sources. These input sources are InputStreams,
132 InputSource input = new InputSource(is);
133 this.parse(input, hb);
163 InputSource input = new InputSource(is);
164 input.setSystemId(systemId);
165 this.parse(input, hb);
188 InputSource input = new InputSource(is);
189 this.parse(input, dh);
216 InputSource input
[all...]
/dalvik/libcore/regex/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
H A DSplitTest.java58 // A separator that doesn't occur in the input gets you the input.
60 // ...including when the input is the empty string.
68 // If l > 0, the result contains the first l matches, plus one string containing the remaining input.
100 String input = "poodle zoo";
103 tokens = p.split(input, 1);
105 assertTrue(tokens[0].equals(input));
106 tokens = p.split(input, 2);
110 tokens = p.split(input, 5);
114 tokens = p.split(input,
[all...]

Completed in 452 milliseconds

1234