Home
last modified time | relevance | path

Searched refs:implementation (Results 1 – 8 of 8) sorted by relevance

/libcore/expectations/
Dicebox.txt9 substring: "This implementation does not parse entity declarations"
15 substring: "This implementation doesn't resolve entity references in getWholeText"
21 substring: "This implementation doesn't include children in entity references"
27 substring: "This implementation doesn't expand entity references"
33 substring: "This implementation does not recognize element content whitespace"
39 substring: "This implementation does not parse notations"
53 substring: "This implementation doesn't parse the encoding from the XML declaration"
59 substring: "This implementation doesn't parse standalone from the XML declaration"
65 substring: "This implementation doesn't parse the version from the XML declaration"
71 …substring: "This implementation's setParameter() supports an unexpected value: schema-type=http://…
[all …]
Dknownfailures.txt644 description: "Bug in implementation of cancel: Does not fulfill spec.",
734 description: "Android's XSLT implementation fails 524 of 3173 OASIS tests",
/libcore/benchmarks/src/benchmarks/regression/
DSignatureBenchmark.java53 @Param private Implementation implementation; field in SignatureBenchmark
94 switch (implementation) { in timeSign()
102 throw new RuntimeException(implementation.toString()); in timeSign()
113 switch (implementation) { in timeVerify()
121 throw new RuntimeException(implementation.toString()); in timeVerify()
DDigestBenchmark.java37 @Param private Implementation implementation; field in DigestBenchmark
45 switch (implementation) { in setUp()
53 throw new RuntimeException(implementation.toString()); in setUp()
DKeyPairGeneratorBenchmark.java37 @Param private Implementation implementation; field in KeyPairGeneratorBenchmark
49 if (implementation == Implementation.BouncyCastle) { in setUp()
DCipherBenchmark.java82 @Param private Implementation implementation; field in CipherBenchmark
115 switch (implementation) { in setUp()
123 throw new RuntimeException(implementation.toString()); in setUp()
/libcore/luni/src/main/java/java/security/
Dsecurity.properties44 # For SSLServerSockets, there's only the new, OpenSSL-based implementation:
59 # system.scope is used to specify implementation class of IdentityScope
DProvider.java899 private Class<?> implementation; field in Provider.Service
1066 if (implementation == null || !className.equals(lastClassName)) { in newInstance()
1072 implementation = Class.forName(className, true, cl); in newInstance()
1114 return implementation.getConstructor(parameterTypes).newInstance(initargs); in newInstanceWithParameter()
1123 return implementation.newInstance(); in newInstanceNoParameter()