Searched defs:setInput (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/native/
H A DZipUtilities.cpp67 void NativeZipStream::setInput(JNIEnv* env, jbyteArray buf, jint off, jint len) { function in class:NativeZipStream
/libcore/ojluni/src/main/java/java/util/zip/
H A DInflater.java52 * compresser.setInput(input);
58 * decompresser.setInput(output, 0, compressedDataLength);
125 public void setInput(byte[] b, int off, int len) { method in class:Inflater
146 public void setInput(byte[] b) { method in class:Inflater
147 setInput(b, 0, b.length);
202 * be used to determine if #setInput should be called in order
H A DDeflater.java51 * compresser.setInput(input);
58 * decompresser.setInput(output, 0, compressedDataLength);
201 public void setInput(byte[] b, int off, int len) { method in class:Deflater
221 public void setInput(byte[] b) { method in class:Deflater
222 setInput(b, 0, b.length);
317 * Returns true if the input data buffer is empty and setInput()
319 * @return true if the input data buffer is empty and setInput()
/libcore/luni/src/main/java/libcore/reflect/
H A DGenericSignatureParser.java104 void setInput(GenericDeclaration genericDecl, String input) { method in class:GenericSignatureParser
124 setInput(genericDecl, signature);
155 setInput(genericDecl, signature);
186 setInput(genericDecl, signature);
216 setInput(genericDecl, signature);
/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlPullParser.java90 * xpp.<a href="#setInput">setInput</a>( new StringReader ( "&lt;foo>Hello World!&lt;/foo>" ) );
128 * @see #setInput
468 void setInput(Reader in) throws XmlPullParserException; method in interface:XmlPullParser
489 void setInput(InputStream inputStream, String inputEncoding) method in interface:XmlPullParser
494 * If setInput(InputStream, inputEncoding) was called with an inputEncoding
500 * If setInput(Reader) was called, null is returned.
533 * @see #setInput
/libcore/luni/src/test/java/libcore/xml/
H A DXmlPullParserFactoryTest.java243 public void setInput(Reader in) throws XmlPullParserException { method in class:XmlPullParserFactoryTest.XmlPullParserStub
246 public void setInput(InputStream inputStream, String inputEncoding) method in class:XmlPullParserFactoryTest.XmlPullParserStub
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java322 throw new XmlPullParserException("setInput() must be called first.", this, null);
1605 public void setInput(Reader reader) throws XmlPullParserException { method in class:KXmlParser
1630 public void setInput(InputStream is, String charset) throws XmlPullParserException { method in class:KXmlParser
1737 setInput(new InputStreamReader(is, charset));
1785 "Entity replacement text must be defined after setInput()");

Completed in 187 milliseconds