HomeSort by relevance Sort by last modified time
    Searched refs:cis (Results 1 - 25 of 30) sorted by null

1 2

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStream1Test.java 67 CipherInputStream cis = new CipherInputStream(tis){}; local
70 if ((byte) cis.read() != data[i]) {
75 if (cis.read() != -1) {
87 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
90 if ((res = (byte) cis.read()) != data[i]) {
95 if (cis.read() != -1) {
108 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
114 int got = cis.read(result); // the number of got bytes
128 got += cis.read(result);
131 if (cis.read(result) != -1)
146 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
184 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
222 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
234 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
246 CipherInputStream cis = new CipherInputStream(tis, new NullCipher()); local
262 CipherInputStream cis = new CipherInputStream(bais, c); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CaseInsensitiveString.java 67 CaseInsensitiveString cis = (CaseInsensitiveString) o; local
68 cis.getFolded();
69 return folded.equals(cis.folded);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CaseInsensitiveString.java 69 CaseInsensitiveString cis = (CaseInsensitiveString) o; local
70 cis.getFolded();
71 return folded.equals(cis.folded);
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
CipherInputStreamTest.java 110 CipherInputStream cis = new CipherInputStream(is, cipher); local
115 length = cis.read(result, totalLength, result.length - totalLength);
120 assertEquals(-1, cis.read());
122 cis.close();
134 CipherInputStream cis = new CipherInputStream(is, cipher); local
139 length = cis.read(result, totalLength, result.length - totalLength);
144 assertEquals(-1, cis.read());
145 cis.close();
167 CipherInputStream cis = new CipherInputStream(is, cipher); local
173 length = cis.read(result, totalLength, result.length - totalLength)
201 CipherInputStream cis = new CipherInputStream(is, cipher); local
    [all...]
  /external/volley/src/test/java/com/android/volley/toolbox/
DiskBasedCacheTest.java 258 CountingInputStream cis = local
261 DiskBasedCache.streamToBytes(cis, -1);
267 CountingInputStream cis = local
270 DiskBasedCache.streamToBytes(cis, 2);
276 CountingInputStream cis = local
279 DiskBasedCache.streamToBytes(cis, 0x100000000L); // int value is 0
364 CountingInputStream cis = local
367 assertThat(cis.bytesRemaining(), is(bytesWritten));
368 assertThat(cis.bytesRead(), is(0L));
369 assertThat(DiskBasedCache.readInt(cis), is(1))
427 CountingInputStream cis = local
453 CountingInputStream cis = local
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
Resource.java 72 private InputStream cis; field in class:Resource
76 if (cis == null) {
77 cis = getInputStream();
79 return cis;
  /external/volley/src/main/java/com/android/volley/toolbox/
DiskBasedCache.java 122 CountingInputStream cis = new CountingInputStream( local
125 CacheHeader entryOnDisk = CacheHeader.readHeader(cis);
134 byte[] data = streamToBytes(cis, cis.bytesRemaining());
139 cis.close();
167 CountingInputStream cis = new CountingInputStream( local
170 CacheHeader entry = CacheHeader.readHeader(cis);
178 cis.close();
332 * @param cis input stream
337 static byte[] streamToBytes(CountingInputStream cis, long length) throws IOException
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
ir-a2xx.h 158 ir2_instr_create_vtx_fetch(struct ir2_cf *cf, int ci, int cis,
164 instr->fetch.const_idx_sel = cis;
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherInputStreamTest.java 225 CipherInputStream cis = new CipherInputStream(mockIs, cipher); local
226 cis.close();
227 cis.close();
327 CipherInputStream cis = new CipherInputStream( local
330 cis.read(unencrypted);
331 cis.close();
  /cts/tests/tests/location/src/android/location/cts/psedorange/
SatellitePositionCalculator.java 133 * Math.cos(2.0 * argumentOfLatitudeRadians) + ephemerisProto.cis
194 double inclinationDotRadPerSec = ephemerisProto.iDot + (ephemerisProto.cis
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleExtensions.java 99 for (CaseInsensitiveString cis : uattributes) {
100 uaset.add(AsciiUtil.toLowerString(cis.value()));
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 95 for (CaseInsensitiveString cis : uattributes) {
96 uaset.add(AsciiUtil.toLowerString(cis.value()));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 95 for (CaseInsensitiveString cis : uattributes) {
96 uaset.add(AsciiUtil.toLowerString(cis.value()));
  /libcore/ojluni/src/main/java/sun/util/locale/
LocaleExtensions.java 108 for (CaseInsensitiveString cis : uattributes) {
109 uaset.add(LocaleUtils.toLowerString(cis.value()));
  /frameworks/base/core/java/android/os/
FileUtils.java 609 CheckedInputStream cis = null; local
612 cis = new CheckedInputStream( new FileInputStream(file), checkSummer);
614 while(cis.read(buf) >= 0) {
619 if (cis != null) {
621 cis.close();
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
LiteralByteStringTest.java 515 CodedInputStream cis = stringUnderTest.newCodedInput(); local
516 byte[] roundTripBytes = cis.readRawBytes(referenceBytes.length);
519 assertTrue(classUnderTest + " CodedInputStream must now be exhausted", cis.isAtEnd());
NioByteStringTest.java 586 CodedInputStream cis = testString.newCodedInput(); local
587 byte[] roundTripBytes = cis.readRawBytes(BYTES.length);
590 assertTrue(CLASSNAME + " CodedInputStream must now be exhausted", cis.isAtEnd());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneSwitcher.java 103 CommandsInterface[] cis, Phone[] phones) {
124 mCommandsInterfaces = cis;
  /toolchain/binutils/binutils-2.27/opcodes/
z80-dis.c 257 cis (struct buffer *buf, disassemble_info * info, char *txt ATTRIBUTE_UNUSED)
312 { 0xA0, 0xE4, cis, "" },
255 cis (struct buffer *buf, disassemble_info * info, char *txt ATTRIBUTE_UNUSED) function
  /cts/tests/tests/location/src/android/location/cts/suplClient/
SuplRrlpController.java 254 gpsEphemerisProto.cis = ephemeris.getEphemCis().getInteger().shortValue() * NAVIGATION_CIS_SCALE_FACTOR;
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 581 using (var cis = new CodedInputStream(memoryStream))
592 using (var cis = new CodedInputStream(memoryStream, true))
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.10/
library-1.0.10.jar 
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.18/
library-1.0.18.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 

Completed in 435 milliseconds

1 2