Searched refs:description (Results 1 - 25 of 31) sorted by relevance

12

/libcore/expectations/
H A Dvirtualdeviceknownfailures.txt6 description: "IPv6 connectivity not yet supported in virtual device testing infra",
12 description: "Virtual devices do not implement the SELinux policy (forbid hard link) asserted by this test",
17 description: "multicast not supported in virtual device testing infra",
H A Dknownfailures.txt7 description: "large tests",
47 description: "can't compile a pattern with negative look-behind and quantifiers with upper bounds",
53 description: "Package.getPackages(), ClassLoader.getPackages() both omit results",
58 description: "KeyAgreementFunctionalTest times out even with an absurdly long timeout",
63 description: "ICU seems to treat unknown and invalid locales differently",
68 description: "DecimalFormat is limited to 127 digits",
73 description: "HTTPS connections should not be pooled.",
78 description: "We fake support for these by substituting similar (but not identical) charsets",
92 description: "It's not allowed to pass null as parent class loader to a new ClassLoader anymore. Maybe we need
98 description
[all...]
/libcore/ojluni/src/main/java/java/sql/
H A DDriverPropertyInfo.java40 * name and value. The <code>description</code> and <code>choices</code>
58 * A brief description of the property, which may be null.
60 public String description = null; field in class:DriverPropertyInfo
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
H A DStreamTestDataProvider.java169 static <T> Object[] arrayDataDescr(String description, T[] data) { argument
170 return new Object[] { description, TestData.Factory.ofArray(description, data)};
173 static <T> Object[] streamDataDescr(String description, Supplier<Stream<T>> supplier) { argument
174 return new Object[] { description, TestData.Factory.ofSupplier(description, supplier)};
177 static <T> Object[] collectionDataDescr(String description, Collection<T> data) { argument
178 return new Object[] { description, TestData.Factory.ofCollection(description, data)};
181 static <T> Object[] sbDataDescr(String description, SpinedBuffe argument
185 splitDescr(String description, Supplier<Spliterator<T>> ss) argument
[all...]
H A DIntStreamTestDataProvider.java139 static <T> Object[] streamDataDescr(String description, Supplier<IntStream> s) { argument
140 return new Object[] { description, TestData.Factory.ofIntSupplier(description, s) };
143 static <T> Object[] splitDescr(String description, Supplier<Spliterator.OfInt> s) { argument
144 return new Object[] { description, s };
H A DLongStreamTestDataProvider.java139 static <T> Object[] streamDataDescr(String description, Supplier<LongStream> s) { argument
140 return new Object[] { description, TestData.Factory.ofLongSupplier(description, s) };
143 static <T> Object[] splitDescr(String description, Supplier<Spliterator.OfLong> s) { argument
144 return new Object[] { description, s };
H A DDoubleStreamTestDataProvider.java129 static <T> Object[] splitDescr(String description, Supplier<Spliterator.OfDouble> s) { argument
130 return new Object[] { description, s };
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
H A DStreamTestDataProvider.java175 static <T> Object[] arrayDataDescr(String description, T[] data) { argument
176 return new Object[] { description, TestData.Factory.ofArray(description, data)};
179 static <T> Object[] streamDataDescr(String description, Supplier<Stream<T>> supplier) { argument
180 return new Object[] { description, TestData.Factory.ofSupplier(description, supplier)};
183 static <T> Object[] collectionDataDescr(String description, Collection<T> data) { argument
184 return new Object[] { description, TestData.Factory.ofCollection(description, data)};
187 static <T> Object[] sbDataDescr(String description, SpinedBuffe argument
191 splitDescr(String description, Supplier<Spliterator<T>> ss) argument
[all...]
H A DIntStreamTestDataProvider.java143 static <T> Object[] streamDataDescr(String description, Supplier<IntStream> s) { argument
144 return new Object[] { description, TestData.Factory.ofIntSupplier(description, s) };
147 static <T> Object[] splitDescr(String description, Supplier<Spliterator.OfInt> s) { argument
148 return new Object[] { description, s };
H A DLongStreamTestDataProvider.java143 static <T> Object[] streamDataDescr(String description, Supplier<LongStream> s) { argument
144 return new Object[] { description, TestData.Factory.ofLongSupplier(description, s) };
147 static <T> Object[] splitDescr(String description, Supplier<Spliterator.OfLong> s) { argument
148 return new Object[] { description, s };
H A DDoubleStreamTestDataProvider.java134 static <T> Object[] splitDescr(String description, Supplier<Spliterator.OfDouble> s) { argument
135 return new Object[] { description, s };
/libcore/benchmarks/src/benchmarks/
H A DImtConflictBenchmarkGen.py43 description = """
61 print(description)
/libcore/luni/src/main/java/android/system/
H A DErrnoException.java63 String description = Libcore.os.strerror(errno);
64 return functionName + " failed: " + errnoName + " (" + description + ")";
H A DGaiException.java64 String description = Libcore.os.gai_strerror(error);
65 return functionName + " failed: " + gaiName + " (" + description + ")";
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldDriverPropertyInfoTest.java63 String description = info[0].description;
64 assertNull(description);
/libcore/luni/src/test/java/libcore/java/util/
H A DGregorianCalendarTest.java340 String description;
343 description = "01:59:59 - March 9th 2014";
345 checkMillis(cal, description, 1394359199000L);
348 checkOutsideDst(cal, description);
352 description = "02:00:00 - March 9th 2014";
361 checkMillis(cal, description, 1394359200000L);
364 checkInsideDst(cal, description);
368 description = "03:00:00 - March 9th 2014";
370 checkMillis(cal, description, 1394359200000L);
373 checkInsideDst(cal, description);
394 checkMillis(Calendar cal, String description, long expectedMillis) argument
398 checkOutsideDst(Calendar cal, String description) argument
403 checkOutsideDst(Calendar cal, String description, int expectedZoneOffset) argument
407 checkInsideDst(Calendar cal, String description) argument
412 checkDstFields(Calendar cal, String description, int expectedZoneOffset, int expectedDstOffset) argument
[all...]
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DInfiniteStreamWithLimitOpTest.java180 public void testSubsizedWithRange(String description, UnaryOperator<Stream<Long>> fs) { argument
191 public void testIntSubsizedWithRange(String description, UnaryOperator<IntStream> fs) { argument
202 public void testLongSubsizedWithRange(String description, UnaryOperator<LongStream> fs) { argument
213 public void testDoubleSubsizedWithRange(String description, UnaryOperator<DoubleStream> fs) { argument
227 public void testUnorderedFinite(String description, UnaryOperator<Stream<Long>> fs) { argument
238 public void testIntUnorderedFinite(String description, UnaryOperator<IntStream> fs) { argument
249 public void testLongUnorderedFinite(String description, UnaryOperator<LongStream> fs) { argument
260 public void testDoubleUnorderedFinite(String description, UnaryOperator<DoubleStream> fs) { argument
307 public void testUnorderedSizedNotSubsizedFinite(String description, UnaryOperator<Stream<Long>> fs) { argument
319 public void testIntUnorderedSizedNotSubsizedFinite(String description, UnaryOperato argument
331 testLongUnorderedSizedNotSubsizedFinite(String description, UnaryOperator<LongStream> fs) argument
343 testDoubleUnorderedSizedNotSubsizedFinite(String description, UnaryOperator<DoubleStream> fs) argument
358 testUnorderedGenerator(String description, UnaryOperator<Stream<Long>> fs) argument
369 testIntUnorderedGenerator(String description, UnaryOperator<IntStream> fs) argument
380 testLongUnorderedGenerator(String description, UnaryOperator<LongStream> fs) argument
391 testDoubleUnorderedGenerator(String description, UnaryOperator<DoubleStream> fs) argument
405 testUnorderedIteration(String description, UnaryOperator<Stream<Long>> fs) argument
418 testIntUnorderedIteration(String description, UnaryOperator<IntStream> fs) argument
431 testLongUnorderedIteration(String description, UnaryOperator<LongStream> fs) argument
444 testDoubleUnorderedIteration(String description, UnaryOperator<DoubleStream> fs) argument
[all...]
/libcore/test-rules/src/main/java/libcore/junit/util/
H A DResourceLeakageDetector.java135 public Statement apply(Statement base, Description description) { argument
138 if (description.getAnnotation(DisableResourceLeakageDetection.class) != null) {
143 return leakageDetectorRule.apply(base, description);
/libcore/test-rules/src/main/java/libcore/junit/junit3/
H A DTestCaseWithRules.java93 Description description =
100 statement = ((TestRule) rule).apply(statement, description);
/libcore/tools/upstream/
H A Dupstream-diff76 description='Compare files between libcore/ojluni and ${OJLUNI_UPSTREAMS}.')
/libcore/luni/src/test/java/libcore/xml/
H A DDomTest.java85 + " <description xmlns=\"http://marketing\">Belgian<![CDATA[ waffles & strawberries (< 5g ]]>of fat)</description>\n"
110 private Element description; field in class:DomTest
153 description = (Element) item.getChildNodes().item(3);
154 descriptionText1 = (Text) description.getChildNodes().item(0);
155 descriptionText2 = (CDATASection) description.getChildNodes().item(1);
156 descriptionText3 = (Text) description.getChildNodes().item(2);
178 itemXmlnsA, name, standard, deluxe, waffles, description,
216 assertEquals("http://addons", description.lookupNamespaceURI("a"));
248 assertEquals("http://marketing", description
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DOCSP.java324 for (AccessDescription description : descriptions) {
325 if (description.getAccessMethod().equals((Object)
328 GeneralName generalName = description.getAccessLocation();
/libcore/dalvik/src/test/java/libcore/dalvik/system/
H A DCloseGuardTest.java37 private Statement preserveEnabledState(final Statement base, Description description) { argument
/libcore/dalvik/test-rules/src/main/java/libcore/dalvik/system/
H A DCloseGuardSupport.java99 public Statement apply(Statement base, Description description) { argument

Completed in 3157 milliseconds

12