HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 426 - 450 of 3217) sorted by null

<<11121314151617181920>>

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ExplicitTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
176 DerInputStream in = new DerInputStream((byte[]) taggedType[i][1]); local
178 ((ASN1Type) taggedType[i][2]).decode(in));
GeneralizedTimeTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
107 DerInputStream in = new DerInputStream( local
111 gtime.decode(in)); //decoded
116 DerInputStream in = new DerInputStream(new ByteArrayInputStream( local
120 gtime.decode(in)); //decoded
ImplicitTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
167 DerInputStream in = new DerInputStream((byte[]) taggedType[i][1]); local
169 ((ASN1Type) taggedType[i][2]).decode(in));
IntegerTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
93 DerInputStream in = new DerInputStream((byte[]) validTestcase[i][2]); local
96 (byte[]) asn1.decode(in))); // returned
101 DerInputStream in = new DerInputStream(new ByteArrayInputStream( local
105 (byte[]) asn1.decode(in))); //returned
126 // wrong content: is not encoded in minimum number of octets
128 // wrong content: is not encoded in minimum number of octets
133 DerInputStream in = new DerInputStream(invalid[i]); local
134 ASN1Integer.getInstance().decode(in);
    [all...]