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

  /external/icu/android_icu4j/src/main/java/android/icu/util/
CaseInsensitiveString.java 68 CaseInsensitiveString cis = (CaseInsensitiveString) o; local
69 cis.getFolded();
70 return folded.equals(cis.folded);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CaseInsensitiveString.java 70 CaseInsensitiveString cis = (CaseInsensitiveString) o; local
71 cis.getFolded();
72 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 350 CountingInputStream cis = local
353 DiskBasedCache.streamToBytes(cis, -1);
359 CountingInputStream cis = local
362 DiskBasedCache.streamToBytes(cis, 2);
368 CountingInputStream cis = local
371 DiskBasedCache.streamToBytes(cis, 0x100000000L); // int value is 0
380 CountingInputStream cis = local
385 DiskBasedCache.readHeaderList(cis);
394 CountingInputStream cis = local
398 DiskBasedCache.readHeaderList(cis);
482 CountingInputStream cis = local
549 CountingInputStream cis = local
576 CountingInputStream cis = local
    [all...]
  /external/volley/src/main/java/com/android/volley/toolbox/
DiskBasedCache.java 120 CountingInputStream cis = local
124 CacheHeader entryOnDisk = CacheHeader.readHeader(cis);
133 byte[] data = streamToBytes(cis, cis.bytesRemaining());
138 cis.close();
166 CountingInputStream cis = local
170 CacheHeader entry = CacheHeader.readHeader(cis);
176 cis.close();
335 * @param cis input stream
340 static byte[] streamToBytes(CountingInputStream cis, long length) throws IOException
    [all...]
  /cts/tests/tests/telephony/current/LocationAccessingApp/src/android/telephony/cts/locationaccessingapp/
CtsLocationAccessService.java 93 public void onCellInfoChanged(List<CellInfo> cis) {
94 if (cis == null) cis = Collections.emptyList();
95 queue.offer(cis);
  /external/grpc-grpc-java/protobuf-lite/src/main/java/io/grpc/protobuf/lite/
ProtoLiteUtils.java 172 CodedInputStream cis = null; local
199 cis = CodedInputStream.newInstance(buf, 0, size);
207 if (cis == null) {
208 cis = CodedInputStream.newInstance(stream);
212 cis.setSizeLimit(Integer.MAX_VALUE);
215 return parseFrom(cis);
  /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;
  /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()));
  /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());
  /cts/tests/tests/location/src/android/location/cts/suplClient/
SuplRrlpController.java 254 gpsEphemerisProto.cis = ephemeris.getEphemCis().getInteger().shortValue() * NAVIGATION_CIS_SCALE_FACTOR;
  /cts/tests/tests/telephony/current/src/android/telephony/cts/
TelephonyManagerTest.java 347 List cis = (List) performLocationAccessCommand(
349 assertTrue(cis == null || cis.isEmpty());
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 581 using (var cis = new CodedInputStream(memoryStream))
592 using (var cis = new CodedInputStream(memoryStream, true))
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 392 milliseconds