HomeSort by relevance Sort by last modified time
    Searched full:inputstream (Results 351 - 375 of 2089) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/speech/srec/
UlawEncoderInputStream.java 25 import java.io.InputStream;
28 * InputStream which transforms 16 bit pcm data to ulaw data.
33 public final class UlawEncoderInputStream extends InputStream {
39 private InputStream mIn;
131 * Create an InputStream which takes 16 bit pcm data and produces ulaw data.
132 * @param in InputStream containing 16 bit pcm data.
135 public UlawEncoderInputStream(InputStream in, int max) {
177 InputStream in = mIn;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStreamTest.java 22 import java.io.InputStream;
59 new CipherInputStream(new BufferedInputStream((InputStream) null),
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsRfcommTransport.java 22 import java.io.InputStream;
48 public InputStream openInputStream() throws IOException {
  /packages/apps/Calculator/src/com/android/calculator2/
Persist.java 19 import java.io.InputStream;
52 InputStream is = new BufferedInputStream(mContext.openFileInput(FILE_NAME), 8192);
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapMemoryLiteral.java 26 import java.io.InputStream;
63 public InputStream getAsStream() {
  /packages/apps/Exchange/src/com/android/exchange/adapter/
MeetingResponseParser.java 22 import java.io.InputStream;
30 public MeetingResponseParser(final InputStream in) throws IOException {
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
CloseShieldInputStream.java 19 import java.io.InputStream;
39 public CloseShieldInputStream(InputStream in) {
ClosedInputStream.java 19 import java.io.InputStream;
32 public class ClosedInputStream extends InputStream {
TeeInputStream.java 20 import java.io.InputStream;
24 * InputStream proxy that transparently writes a copy of all bytes read
52 * Creates a TeeInputStream that proxies the given {@link InputStream}
59 public TeeInputStream(InputStream input, OutputStream branch) {
64 * Creates a TeeInputStream that proxies the given {@link InputStream}
75 InputStream input, OutputStream branch, boolean closeBranch) {
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java 12 import java.io.InputStream;
45 InputStream in = null;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CertFactoryImplTest.java 47 * engineGenerateCertificate(InputStream inStream) method testing.
84 * engineGenerateCertificates(InputStream inStream) method testing.
104 * engineGenerateCRL(InputStream inStream) method testing.
142 * engineGenerateCRLs(InputStream inStream) method testing.
162 * engineGenerateCertPath(InputStream inStream) method testing.
179 * engineGenerateCertPath(InputStream inStream, String encoding) method
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
font_factory.cc 41 void FontFactory::LoadFonts(InputStream* is, FontArray* output) {
69 void FontFactory::LoadFontsForBuilding(InputStream* is,
111 CALLER_ATTACH Font* FontFactory::LoadSingleOTF(InputStream* is) {
123 void FontFactory::LoadCollection(InputStream* is, FontArray* output) {
149 Font::Builder* FontFactory::LoadSingleOTFForBuilding(InputStream* is) {
166 void FontFactory::LoadCollectionForBuilding(InputStream* is,
font_factory.h 50 void LoadFonts(InputStream* is, FontArray* output);
67 void LoadFontsForBuilding(InputStream* is, FontBuilderArray* output);
115 CALLER_ATTACH Font* LoadSingleOTF(InputStream* is);
118 void LoadCollection(InputStream* is, FontArray* output);
121 CALLER_ATTACH Font::Builder* LoadSingleOTFForBuilding(InputStream* is);
126 void LoadCollectionForBuilding(InputStream* is, FontBuilderArray* builders);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/shader/plugins/
GLSLLoader.java 41 import java.io.InputStream;
80 private class GlslDependKey extends AssetKey<InputStream> {
90 private DependencyNode loadNode(InputStream in, String nodeName) throws IOException{
114 InputStream stream = (InputStream) owner.loadAsset(key);
201 // and needs data as InputStream
  /external/proguard/src/proguard/io/
DataEntryCopier.java 65 InputStream inputStream = dataEntry.getInputStream();
68 copyData(inputStream, outputStream);
86 protected void copyData(InputStream inputStream,
92 int count = inputStream.read(buffer);
  /external/sfntly/cpp/src/sfntly/
font_factory.cc 41 void FontFactory::LoadFonts(InputStream* is, FontArray* output) {
69 void FontFactory::LoadFontsForBuilding(InputStream* is,
111 CALLER_ATTACH Font* FontFactory::LoadSingleOTF(InputStream* is) {
123 void FontFactory::LoadCollection(InputStream* is, FontArray* output) {
149 Font::Builder* FontFactory::LoadSingleOTFForBuilding(InputStream* is) {
166 void FontFactory::LoadCollectionForBuilding(InputStream* is,
font_factory.h 50 void LoadFonts(InputStream* is, FontArray* output);
67 void LoadFontsForBuilding(InputStream* is, FontBuilderArray* output);
115 CALLER_ATTACH Font* LoadSingleOTF(InputStream* is);
118 void LoadCollection(InputStream* is, FontArray* output);
121 CALLER_ATTACH Font::Builder* LoadSingleOTFForBuilding(InputStream* is);
126 void LoadCollectionForBuilding(InputStream* is, FontBuilderArray* builders);
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLX509CertPath.java 20 import java.io.InputStream;
136 private static CertPath fromPkiPathEncoding(InputStream inStream) throws CertificateException {
175 private static CertPath fromPkcs7Encoding(InputStream inStream) throws CertificateException {
217 private static CertPath fromEncoding(InputStream inStream, Encoding encoding)
229 public static CertPath fromEncoding(InputStream inStream, String encoding)
243 public static CertPath fromEncoding(InputStream inStream) throws CertificateException {
  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 22 import java.io.InputStream;
37 * InputStream is = ...
76 * the {@code InputStream} to read data from.
80 public GZIPInputStream(InputStream is) throws IOException {
89 * the {@code InputStream} to read data from.
95 public GZIPInputStream(InputStream is, int size) throws IOException {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AC3TrackImpl.java 10 import java.io.InputStream;
35 private InputStream inputStream;
41 public AC3TrackImpl(InputStream fin, String lang) throws IOException {
46 public AC3TrackImpl(InputStream fin) throws IOException {
50 private void parse(InputStream fin) throws IOException {
51 inputStream = fin;
133 inputStream.mark(100);
134 if (100 != inputStream.read(data, 0, 100)) {
137 inputStream.reset(); // Rewin
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.java 24 import java.io.InputStream;
109 * <p>Parse the content of the given {@link java.io.InputStream}
114 * @param is InputStream containing the content to be parsed.
117 * @throws IllegalArgumentException If the given InputStream is null.
120 * <code>InputStream</code>.
124 public void parse(InputStream is, HandlerBase hb)
127 throw new IllegalArgumentException("InputStream cannot be null");
135 * <p>Parse the content of the given {@link java.io.InputStream}
140 * @param is InputStream containing the content to be parsed.
144 * @throws IllegalArgumentException If the given <code>InputStream</code> i
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
EndianUtils.java 21 import java.io.InputStream;
292 * Reads a "short" value from an InputStream. The value is
294 * @param input source InputStream
298 public static short readSwappedShort(InputStream input)
306 * Reads a unsigned short (16-bit) from an InputStream. The value is
308 * @param input source InputStream
312 public static int readSwappedUnsignedShort(InputStream input)
339 * Reads a "int" value from an InputStream. The value is
341 * @param input source InputStream
345 public static int readSwappedInteger(InputStream input)
    [all...]
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ImageDownloader.java 38 import java.io.InputStream;
268 InputStream inputStream = null;
271 inputStream = entity.getContent();
274 copy(inputStream, outputStream);
280 // FIXME : Should use BitmapFactory.decodeStream(inputStream) instead.
281 //final Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
286 if (inputStream != null) {
287 inputStream.close();
338 public void copy(InputStream in, OutputStream out) throws IOException
    [all...]
  /external/chromium_org/android_webview/native/
android_protocol_handler.cc 26 using android_webview::InputStream;
63 virtual scoped_ptr<InputStream> OpenInputStream(
72 InputStream* stream,
77 InputStream* stream,
134 scoped_ptr<InputStream>
152 return scoped_ptr<InputStream>();
154 return make_scoped_ptr<InputStream>(new InputStreamImpl(stream));
168 android_webview::InputStream* stream,
195 android_webview::InputStream* stream,
212 // unable to open the InputStream for that request the request is marked a
    [all...]
  /external/javassist/src/main/javassist/
ClassPoolTail.java 41 public InputStream openClassfile(String classname) {
93 public InputStream openClassfile(String classname) throws NotFoundException {
96 InputStream is = jars[i].openClassfile(classname);
137 public InputStream openClassfile(String classname)
285 InputStream fin = openClassfile(classname);
307 InputStream fin = openClassfile(classname);
324 InputStream openClassfile(String classname)
331 InputStream ins = null;
384 public static byte[] readStream(InputStream fin) throws IOException {
419 public static void copyStream(InputStream fin, OutputStream fout
    [all...]

Completed in 959 milliseconds

<<11121314151617181920>>