OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputStream
(Results
751 - 775
of
2666
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderFactory.java
11
import java.io.
InputStream
;
120
InputStream
in;
/libcore/luni/src/test/java/libcore/java/io/
OldObjectOutputStreamPutFieldTest.java
21
import java.io.
InputStream
;
124
InputStream
refStream = null;
/libcore/luni/src/test/java/libcore/java/util/zip/
ZipFileTest.java
27
import java.io.
InputStream
;
62
InputStream
is1 = zipFile.getInputStream(entry1);
/libcore/ojluni/src/main/java/sun/security/x509/
CertificateAlgorithmId.java
29
import java.io.
InputStream
;
85
* @param in the
InputStream
to read the serial number from.
88
public CertificateAlgorithmId(
InputStream
in) throws IOException {
CertificateIssuerName.java
29
import java.io.
InputStream
;
88
* @param in the
InputStream
to read the X500Name from.
91
public CertificateIssuerName(
InputStream
in) throws IOException {
CertificateSerialNumber.java
28
import java.io.
InputStream
;
88
* @param in the
InputStream
to read the serial number from.
91
public CertificateSerialNumber(
InputStream
in) throws IOException {
CertificateSubjectName.java
29
import java.io.
InputStream
;
88
* @param in the
InputStream
to read the X500Name from.
91
public CertificateSubjectName(
InputStream
in) throws IOException {
CertificateX509Key.java
29
import java.io.
InputStream
;
81
* @param in the
InputStream
to read the X509Key from.
84
public CertificateX509Key(
InputStream
in) throws IOException {
/libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java
6
import java.io.
InputStream
;
484
* @param
inputStream
contains a raw byte input stream of possibly
487
* @param inputEncoding if not null it MUST be used as encoding for
inputStream
489
void setInput(
InputStream
inputStream
, String inputEncoding)
494
* If setInput(
InputStream
, inputEncoding) was called with an inputEncoding
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
RequestGetMessage.java
29
import java.io.
InputStream
;
64
protected void readResponse(
InputStream
stream) {
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapRequestPullPhoneBook.java
26
import java.io.
InputStream
;
97
protected void readResponse(
InputStream
stream) throws IOException {
/packages/apps/Camera2/src/com/android/camera/exif/
ExifReader.java
22
import java.io.
InputStream
;
38
* Parses the
inputStream
and and returns the EXIF data in an
44
protected ExifData read(
InputStream
inputStream
) throws ExifInvalidFormatException,
46
ExifParser parser = ExifParser.parse(
inputStream
, mInterface);
/packages/apps/Contacts/src/com/android/contacts/
NfcHandler.java
33
import java.io.
InputStream
;
86
InputStream
vcardInputStream = resolver.openInputStream(shareUri);
/packages/apps/Contacts/src/com/android/contacts/extensions/
ExtensionsFactory.java
24
import java.io.
InputStream
;
51
final
InputStream
fileStream = context.getAssets().open(EXTENSIONS_PROPERTIES);
/packages/apps/Dialer/java/com/android/dialer/callcomposer/
CopyAndResizeImageWorker.java
35
import java.io.
InputStream
;
58
try (
InputStream
inputStream
= context.getContentResolver().openInputStream(input)) {
59
Bitmap bitmap = BitmapFactory.decodeStream(
inputStream
);
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapTempFileLiteral.java
28
import java.io.
InputStream
;
69
public
InputStream
getAsStream() {
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapTempFileLiteral.java
33
import java.io.
InputStream
;
73
public
InputStream
getAsStream() {
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifReader.java
22
import java.io.
InputStream
;
38
* Parses the
inputStream
and and returns the EXIF data in an
44
protected ExifData read(
InputStream
inputStream
) throws ExifInvalidFormatException,
46
ExifParser parser = ExifParser.parse(
inputStream
, mInterface);
/packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifReader.java
23
import java.io.
InputStream
;
39
* Parses the
inputStream
and and returns the EXIF data in an
45
protected ExifData read(
InputStream
inputStream
) throws ExifInvalidFormatException,
47
ExifParser parser = ExifParser.parse(
inputStream
, mInterface);
/packages/apps/TV/src/com/android/tv/tuner/
ChannelScanFileParser.java
25
import java.io.
InputStream
;
71
* @param is {@link
InputStream
} of a scan file. Each line matches one channel.
76
public static List<ScanChannel> parseScanFile(
InputStream
is) {
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
NullInputStream.java
21
import java.io.
InputStream
;
24
* A functional, light weight {@link
InputStream
} that emulates
28
* object for testing with an {@link
InputStream
}
32
* large {@link
InputStream
} as it can emulate that
63
public class NullInputStream extends
InputStream
{
74
* Create an {@link
InputStream
} that emulates a specified size
84
* Create an {@link
InputStream
} that emulates a specified
110
* Return the size this {@link
InputStream
} emulates.
SwappedDataInputStream.java
22
import java.io.
InputStream
;
43
* @param input
InputStream
to read from
45
public SwappedDataInputStream(
InputStream
input )
87
* Delegates to {@link EndianUtils#readSwappedDouble(
InputStream
)}.
99
* Delegates to {@link EndianUtils#readSwappedFloat(
InputStream
)}.
153
* Delegates to {@link EndianUtils#readSwappedInteger(
InputStream
)}.
178
* Delegates to {@link EndianUtils#readSwappedLong(
InputStream
)}.
190
* Delegates to {@link EndianUtils#readSwappedShort(
InputStream
)}.
214
* Delegates to {@link EndianUtils#readSwappedUnsignedShort(
InputStream
)}.
/packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportPreviewActivity.java
12
import java.io.
InputStream
;
45
InputStream
in = null;
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/
MiscService.java
29
import java.io.
InputStream
;
74
InputStream
is = socket.getInputStream();
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Package.java
25
import java.io.
InputStream
;
91
final
InputStream
input = decodedSpec.getStream(new File(mArgs[0]));
Completed in 1206 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>