/frameworks/base/core/tests/coretests/src/android/content/pm/ |
D | LimitedLengthInputStreamTest.java | 42 InputStream is = new LimitedLengthInputStream(mTestStream1, -1, TEST_STRING1.length); in testConstructor_NegativeOffset_Failure() local 52 InputStream is = new LimitedLengthInputStream(mTestStream1, 0, -1); in testConstructor_NegativeLength_Failure() local 62 InputStream is = new LimitedLengthInputStream(null, 0, 1); in testConstructor_NullInputStream_Failure() local 72 InputStream is = new LimitedLengthInputStream(mTestStream1, Long.MAX_VALUE - 1, in testConstructor_OffsetLengthOverflow_Fail() local 88 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length); in checkReadBytesWithOffsetAndLength_WithString1() local 123 InputStream is = new LimitedLengthInputStream(mTestStream1, 0, TEST_STRING1.length + 10); in testReadBytesWithOffsetAndLength_ZeroOffset_PastEnd_Success() local 138 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length); in checkReadBytes_WithString1() local 168 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length); in checkSingleByteRead_WithString1() local
|
D | MacAuthenticatedInputStreamTest.java | 73 MacAuthenticatedInputStream is = new MacAuthenticatedInputStream(mTestStream1, mac); in testString1Authenticate_Success() local 84 MacAuthenticatedInputStream is = new MacAuthenticatedInputStream(mTestStream1, mac); in testString1Authenticate_WrongTag_Failure() local 95 MacAuthenticatedInputStream is = new MacAuthenticatedInputStream(mTestStream1, mac); in testString1Authenticate_NullTag_Failure() local 106 MacAuthenticatedInputStream is = new MacAuthenticatedInputStream(mTestStream1, mac); in testString1Authenticate_ReadSingleByte_Success() local
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | IntentSenderTest.java | 33 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, in testRegisteredReceivePermissionGranted() local 54 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, intent, 0); in testRegisteredReceivePermissionDenied() local 62 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, in testLocalReceivePermissionGranted() local 81 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, intent, 0); in testLocalReceivePermissionDenied() local
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardParser.java | 43 public abstract void parse(InputStream is) throws IOException, VCardException; in parse() 74 public abstract void parseOne(InputStream is) throws IOException, VCardException; in parseOne() 81 public void parse(InputStream is, VCardInterpreter interpreter) in parse()
|
D | VCardParser_V40.java | 74 public void parse(InputStream is) throws IOException, VCardException { in parse() 79 public void parseOne(InputStream is) throws IOException, VCardException { in parseOne()
|
D | VCardParser_V30.java | 86 public void parse(InputStream is) throws IOException, VCardException { in parse() 91 public void parseOne(InputStream is) throws IOException, VCardException { in parseOne()
|
D | VCardParser_V21.java | 107 public void parse(InputStream is) throws IOException, VCardException { in parse() 112 public void parseOne(InputStream is) throws IOException, VCardException { in parseOne()
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
D | pvmp3_huffman_decoding.cpp | 123 int32 *is, in pvmp3_huffman_quad_decoding() 190 int32 *is, in pvmp3_huffman_pair_decoding() 245 int32 *is, in pvmp3_huffman_pair_decoding_linbits()
|
/frameworks/base/graphics/java/android/graphics/ |
D | Movie.java | 51 public static Movie decodeStream(InputStream is) { in decodeStream() 64 private static native Movie nativeDecodeStream(InputStream is); in nativeDecodeStream() 71 InputStream is; in decodeFile() local 91 private static Movie decodeTempStream(InputStream is) { in decodeTempStream()
|
D | BitmapFactory.java | 436 InputStream is, Rect pad, Options opts) { in decodeResourceStream() 472 InputStream is = null; in decodeResource() local 607 public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts) { in decodeStream() 641 private static Bitmap decodeStreamInternal(InputStream is, Rect outPadding, Options opts) { in decodeStreamInternal() 659 public static Bitmap decodeStream(InputStream is) { in decodeStream() 718 private static native Bitmap nativeDecodeStream(InputStream is, byte[] storage, in nativeDecodeStream()
|
D | BitmapRegionDecoder.java | 113 public static BitmapRegionDecoder newInstance(InputStream is, in newInstance() 269 InputStream is, byte[] storage, boolean isShareable); in nativeNewInstance()
|
/frameworks/base/core/tests/coretests/src/android/content/ |
D | AssetTest.java | 35 public static void verifyTextAsset(InputStream is) throws IOException { in verifyTextAsset() 64 InputStream is = mAssets.open("text.txt"); in testReadToEnd() local
|
/frameworks/base/tests/CoreTests/android/core/ |
D | TestWebServer.java | 435 private int readOneLine(InputStream is) { in readOneLine() 473 private int readData(InputStream is, int length) { in readData() 497 private int parseStatusLine(InputStream is) { in parseStatusLine() 567 private int parseHeader(InputStream is) { in parseHeader() 605 private int readHeaders(InputStream is) { in readHeaders() 626 private int readContent(InputStream is) { in readContent() 641 InputStream is = new BufferedInputStream(s.getInputStream()); in handleClient() local
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/ |
D | BitmapRegionTileSource.java | 71 InputStream is, boolean isShareable) { in newInstance() 108 public static DumbBitmapRegionDecoder newInstance(InputStream is) { in newInstance() 267 InputStream is = mContext.getContentResolver().openInputStream(mUri); in regenerateInputStream() local 273 InputStream is = regenerateInputStream(); in loadBitmapRegionDecoder() local 291 InputStream is = regenerateInputStream(); in loadPreviewBitmap() local 302 InputStream is = null; in readExif() local 332 InputStream is = mRes.openRawResource(mResId); in regenerateInputStream() local 337 InputStream is = regenerateInputStream(); in loadBitmapRegionDecoder() local 355 InputStream is = regenerateInputStream(); in readExif() local
|
/frameworks/base/obex/javax/obex/ |
D | ObexPacket.java | 39 public static ObexPacket read(InputStream is) throws IOException { in read() 51 public static ObexPacket read(int headerId, InputStream is) throws IOException { in read()
|
/frameworks/base/core/tests/coretests/src/android/os/ |
D | MemoryFileTest.java | 88 InputStream is = file.getInputStream(); in testRun() local 128 InputStream is = file.getInputStream(); in readIndexOutOfBoundsException() local 173 InputStream is = file.getInputStream(); in testReadEOF() local
|
/frameworks/volley/src/main/java/com/android/volley/toolbox/ |
D | DiskBasedCache.java | 388 public static CacheHeader readHeader(InputStream is) throws IOException { in readHeader() 485 private static int read(InputStream is) throws IOException { in read() 500 static int readInt(InputStream is) throws IOException { in readInt() 520 static long readLong(InputStream is) throws IOException { in readLong() 539 static String readString(InputStream is) throws IOException { in readString() 557 static Map<String, String> readStringStringMap(InputStream is) throws IOException { in readStringStringMap()
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
D | PropertyNodesVerifier.java | 56 public void verify(InputStream is, int vcardType) throws IOException, VCardException { in verify() 61 public void verify(InputStream is, int vcardType, final VCardParser parser) in verify()
|
/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/ |
D | XmpDepthDecode.java | 55 public XmpDepthDecode(InputStream is) throws IOException { in XmpDepthDecode() 133 static XMPMeta read(InputStream is, boolean skipExtendedContent) { in read() 196 private static List<Section> parse(InputStream is, boolean readMetaOnly, in parse() 284 private static Section readSection(InputStream is, int length, in readSection()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
D | ExifModifier.java | 52 InputStream is = null; in ExifModifier() local 70 InputStream is = null; in commit() local
|
/frameworks/support/tests/java/android/support/v4/provider/ |
D | DocumentFileTest.java | 357 final DataInputStream is = new DataInputStream( in readInt() local 367 final DataInputStream is = new DataInputStream(new FileInputStream(file)); in readInt() local
|
/frameworks/rs/api/ |
D | rs_debug.spec | 36 This function is intended for debugging only and should not be used in shipping function
|
/frameworks/base/core/java/android/util/jar/ |
D | StrictJarManifest.java | 85 public StrictJarManifest(InputStream is) throws IOException { in StrictJarManifest() 185 public void read(InputStream is) throws IOException { in read()
|
D | StrictJarFile.java | 179 final InputStream is = getZipInputStream(ze); in getInputStream() local 271 JarFileInputStream(InputStream is, long size, StrictJarVerifier.VerifierEntry e) { in JarFileInputStream() 351 public ZipInflaterInputStream(InputStream is, Inflater inf, int bsize, ZipEntry entry) { in ZipInflaterInputStream()
|
/frameworks/base/tests/LargeAssetTest/src/com/android/largeassettest/ |
D | LargeAssetTest.java | 70 InputStream is = am.open("million-ints", AssetManager.ACCESS_STREAMING); in doInBackground() local
|