Searched refs:is (Results 1 - 25 of 248) sorted by relevance

12345678910

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpv_mp3_huffman.h11 * distributed under the License is distributed on an "AS IS" BASIS,
84 int32 pvmp3_huffman_parsing(int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS],
92 int32 *is,
96 int32 *is,
101 int32 *is,
H A Dpvmp3_huffman_decoding.cpp11 * distributed under the License is distributed on an "AS IS" BASIS,
123 int32 *is,
180 *is = v;
181 *(is + 1) = w;
182 *(is + 2) = x;
183 *(is + 3) = y;
190 int32 *is,
228 *is = x;
229 *(is + 1) = y;
233 *is
122 pvmp3_huffman_quad_decoding(struct huffcodetab *h, int32 *is, tmp3Bits *pMainData) argument
189 pvmp3_huffman_pair_decoding(struct huffcodetab *h, int32 *is, tmp3Bits *pMainData) argument
244 pvmp3_huffman_pair_decoding_linbits(struct huffcodetab *h, int32 *is, tmp3Bits *pMainData) argument
[all...]
H A Dpvmp3_dequantize_sample.cpp11 * distributed under the License is distributed on an "AS IS" BASIS,
58 int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS],
65 int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS], dequantize output as (.)^(4/3)
187 void pvmp3_dequantize_sample(int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS], argument
294 /* 0 < abs(is[ss]) < 8192 */
296 int32 tmp = fxp_mul32_Q30((is[ss] << 16), power_1_third(pv_abs(is[ ss])));
305 is[ss] = (tmp >> temp);
309 is[ss] = 0;
314 is[s
[all...]
H A Dpvmp3_huffman_parsing.cpp11 * distributed under the License is distributed on an "AS IS" BASIS,
44 int32 is[],
51 int32 is[], uncompressed data
125 int32 pvmp3_huffman_parsing(int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS], argument
197 (*pt_huff)(h, &is[i], pMainData);
212 (*pt_huff)(h, &is[i], pMainData);
227 (*pt_huff)(h, &is[i], pMainData);
243 (*pt_huff)(h, &is[i], pMainData);
257 (*pt_huff)(h, &is[i], pMainData);
274 (*pt_huff)(h, &is[
[all...]
H A Dpvmp3_dequantize_sample.h11 * distributed under the License is distributed on an "AS IS" BASIS,
91 void pvmp3_dequantize_sample(int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS],
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParser.java11 * distributed under the License is distributed on an "AS IS" BASIS,
40 * @param is The source to parse.
43 public abstract void parse(InputStream is) throws IOException, VCardException; argument
55 * <p>This happens when the first entry contains nested vCards, which is allowed in vCard 2.1.
71 * @param is The source to parse.
74 public abstract void parseOne(InputStream is) throws IOException, VCardException; argument
81 public void parse(InputStream is, VCardInterpreter interpreter) argument
84 parse(is);
92 * Actual cancel is done after parsing the current vcard.
H A DVCardParser_V21.java11 * distributed under the License is distributed on an "AS IS" BASIS,
32 * The spec is written in 1996, and currently various types of "vCard 2.1" exist.
35 * In stead, not only vCard spec but also real world vCard is considered.
38 * the PNG format to determine the type of image, while it is not allowed in
107 public void parse(InputStream is) throws IOException, VCardException { argument
108 mVCardParserImpl.parse(is);
112 public void parseOne(InputStream is) throws IOException, VCardException { argument
113 mVCardParserImpl.parseOne(is);
H A DVCardParser_V30.java11 * distributed under the License is distributed on an "AS IS" BASIS,
32 * This parser allows vCard format which is not allowed in the RFC, since
37 * have it and they uses non UTF-8 charsets. UTF-8 is recommended in RFC 2426,
38 * but it is not a must. We silently allow "CHARSET".
59 * "QUOTED-PRINTABLE" is not allowed in vCard 3.0 and not in this parser either,
86 public void parse(InputStream is) throws IOException, VCardException { argument
87 mVCardParserImpl.parse(is);
91 public void parseOne(InputStream is) throws IOException, VCardException { argument
92 mVCardParserImpl.parseOne(is);
H A DVCardParser_V40.java11 * distributed under the License is distributed on an "AS IS" BASIS,
32 * Currently this parser is based on vCard 4.0 specification rev 15 (partly).
74 public void parse(InputStream is) throws IOException, VCardException { argument
75 mVCardParserImpl.parse(is);
79 public void parseOne(InputStream is) throws IOException, VCardException { argument
80 mVCardParserImpl.parseOne(is);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DIntentSenderTest.java11 * distributed under the License is distributed on an "AS IS" BASIS,
33 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0,
35 is.send();
37 is.cancel();
54 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, intent, 0);
55 is.send(Activity.RESULT_CANCELED, finish, null);
57 is.cancel();
62 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0,
64 is.send();
66 is
[all...]
/frameworks/base/core/tests/coretests/src/android/content/
H A DAssetTest.java11 * distributed under the License is distributed on an "AS IS" BASIS,
35 public static void verifyTextAsset(InputStream is) throws IOException { argument
41 while ((readCount = is.read(buffer, 0, buffer.length)) > 0) {
51 readCount = is.read(buffer, 0, buffer.length);
55 readCount = is.read(buffer, buffer.length, 0);
59 is.close();
64 InputStream is = mAssets.open("text.txt");
65 verifyTextAsset(is);
/frameworks/base/graphics/java/android/graphics/
H A DMovie.java11 * distributed under the License is distributed on an "AS IS" BASIS,
45 public static native Movie decodeStream(InputStream is); argument
52 InputStream is;
54 is = new FileInputStream(pathName);
59 return decodeTempStream(is);
71 private static Movie decodeTempStream(InputStream is) { argument
74 moov = decodeStream(is);
75 is.close();
80 If it happened on close, moov is still valid.
H A DBitmapRegionDecoder.java10 * distributed under the License is distributed on an "AS IS" BASIS,
28 * BitmapRegionDecoder is particularly useful when an original image is large and
51 * @param isShareable If this is true, then the BitmapRegionDecoder may keep a
52 * shallow reference to the input. If this is false,
54 * input data, and keep that. Even if sharing is allowed,
56 * copy of the input data. If an image is progressively encoded,
59 * @throws IOException if the image format is not supported or can not be decoded.
72 * this returns, so the descriptor can be used again as is.
76 * @param isShareable If this is tru
109 newInstance(InputStream is, boolean isShareable) argument
270 nativeNewInstance( InputStream is, byte[] storage, boolean isShareable) argument
[all...]
H A DBitmapFactory.java11 * distributed under the License is distributed on an "AS IS" BASIS,
65 * set in the Options structure is a way to see if the bitmap was reused,
88 * image, returning a smaller image to save memory. The sample size is
91 * an image that is 1/4 the width/height of the original, and 1/16 the
92 * number of pixels. Any value <= 1 is treated the same as 1. Note: the
99 * If this is non-null, the decoder will try to decode into this
100 * internal configuration. If it is null, or the request cannot be met,
111 * If dither is true, the decoder will attempt to dither the decoded
120 * if {@link #inScaled} is set (which it is b
336 decodeResourceStream(Resources res, TypedValue value, InputStream is, Rect pad, Options opts) argument
468 decodeStream(InputStream is, Rect outPadding, Options opts) argument
602 decodeStream(InputStream is) argument
651 nativeDecodeStream(InputStream is, byte[] storage, Rect padding, Options opts) argument
653 nativeDecodeStream(InputStream is, byte[] storage, Rect padding, Options opts, boolean applyScale, float scale) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DMacAuthenticatedInputStreamTest.java11 * distributed under the License is distributed on an "AS IS" BASIS,
73 MacAuthenticatedInputStream is = new MacAuthenticatedInputStream(mTestStream1, mac);
75 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
77 assertTrue(is.isTagEqual(TEST_STRING_1_MAC));
84 MacAuthenticatedInputStream is = new MacAuthenticatedInputStream(mTestStream1, mac);
86 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
88 assertFalse(is.isTagEqual(TEST_STRING_1_MAC_BROKEN));
95 MacAuthenticatedInputStream is = new MacAuthenticatedInputStream(mTestStream1, mac);
97 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
99 assertFalse(is
[all...]
H A DManifestDigestTest.java11 * distributed under the License is distributed on an "AS IS" BASIS,
38 InputStream is = new InputStream() {
46 ManifestDigest.fromInputStream(is));
50 InputStream is = new ByteArrayInputStream(MESSAGE_1);
55 ManifestDigest actual = ManifestDigest.fromInputStream(is);
63 InputStream is = new ByteArrayInputStream(MESSAGE_1);
65 ManifestDigest digest = ManifestDigest.fromInputStream(is);
H A DLimitedLengthInputStreamTest.java11 * distributed under the License is distributed on an "AS IS" BASIS,
28 private final byte[] TEST_STRING1 = "This is a test".getBytes();
42 InputStream is = new LimitedLengthInputStream(mTestStream1, -1, TEST_STRING1.length);
52 InputStream is = new LimitedLengthInputStream(mTestStream1, 0, -1);
62 InputStream is = new LimitedLengthInputStream(null, 0, 1);
72 InputStream is = new LimitedLengthInputStream(mTestStream1, Long.MAX_VALUE - 1,
74 fail("Should fail when offset + length is > Long.MAX_VALUE");
88 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length);
89 assertEquals(length, is.read(temp, 0, temp.length));
94 assertEquals(-1, is
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNodesVerifier.java11 * distributed under the License is distributed on an "AS IS" BASIS,
56 public void verify(InputStream is, int vcardType) throws IOException, VCardException { argument
58 verify(is, vcardType, parser);
61 public void verify(InputStream is, int vcardType, final VCardParser parser) argument
65 parser.parse(is);
67 if (is != null) {
69 is.close();
/frameworks/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java11 * distributed under the License is distributed on an "AS IS" BASIS,
40 * directory. The default disk usage size is 5MB, but is configurable.
333 /** The size of the data identified by this CacheHeader. (This is not
374 * @param is The InputStream to read from.
377 public static CacheHeader readHeader(InputStream is) throws IOException { argument
379 int magic = readInt(is);
384 entry.key = readString(is);
385 entry.etag = readString(is);
389 entry.serverDate = readLong(is);
470 read(InputStream is) argument
485 readInt(InputStream is) argument
505 readLong(InputStream is) argument
524 readString(InputStream is) argument
542 readStringStringMap(InputStream is) argument
[all...]
/frameworks/compile/slang/
H A Dslang_pragma_recorder.cpp11 * distributed under the License is distributed on an "AS IS" BASIS,
32 else if (Token.is(clang::tok::identifier))
43 if (Token.is(clang::tok::r_paren))
67 if (NextToken->is(clang::tok::l_paren))
84 if (!NextToken->is(clang::tok::r_paren)) {
86 if (NextToken->is(clang::tok::r_paren)) {
/frameworks/base/core/tests/coretests/src/android/os/
H A DMemoryFileTest.java11 * distributed under the License is distributed on an "AS IS" BASIS,
88 InputStream is = file.getInputStream();
89 is.mark(testString.length);
90 is.read(buffer);
95 is.reset();
96 is.read(buffer);
128 InputStream is = file.getInputStream();
131 is.read(buffer, offset, count);
134 // this is what should happen
136 is
[all...]
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java11 * distributed under the License is distributed on an "AS IS" BASIS,
33 * log records, etc.). The queue is size bounded and will drop old data if the
51 /** Flag value: Content is human-readable UTF-8 text (can be combined with IS_GZIPPED). */
57 /** Flag value for serialization only: Value is a byte array, not a file descriptor */
61 * Broadcast Action: This is broadcast when a new entry is added in the dropbox.
65 * <p class="note">This is a protected intent that can only be sent
185 * @return the uncompressed text contents of the entry, null if the entry is not text.
191 InputStream is = null;
193 is
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java11 * distributed under the License is distributed on an "AS IS" BASIS,
27 * TestWebServer is a simulated controllable test server that
62 /* Indicator for whether this server is configured as a HTTP/1.1
122 * @param timeout Indicates the period of time to wait until a socket is
192 * When this value is set, the server will respond to a request with
216 * The AcceptThread is responsible for initiating worker threads
230 // Socket timeout functionality is not available yet
322 * connection. If pipelining is turned on, this will allow this
324 * connection is closed.
432 * @param is Inputstrea
435 readOneLine(InputStream is) argument
473 readData(InputStream is, int length) argument
497 parseStatusLine(InputStream is) argument
567 parseHeader(InputStream is) argument
605 readHeaders(InputStream is) argument
626 readContent(InputStream is) argument
[all...]
/frameworks/base/packages/SystemUI/tests/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
26 # sign this with platform cert, so this test is allowed to inject key events into
27 # UI it doesn't own. This is necessary to allow screenshots to be taken
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapFactory_Delegate.java11 * distributed under the License is distributed on an "AS IS" BASIS,
68 // TODO: This is very inefficient and should be done in native by Skia
88 /*package*/ static Bitmap nativeDecodeStream(InputStream is, byte[] storage, argument
90 return nativeDecodeStream(is, storage, padding, opts, false, 1.f);
94 /*package*/ static Bitmap nativeDecodeStream(InputStream is, byte[] storage, argument
106 if (is instanceof NinePatchInputStream) {
107 NinePatchInputStream npis = (NinePatchInputStream) is;
130 bm = Bitmap_Delegate.createBitmap(is, true, density);

Completed in 1035 milliseconds

12345678910