HomeSort by relevance Sort by last modified time
    Searched full:description (Results 51 - 75 of 22476) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tokenization/
test2.test 3 {"description":"DOCTYPE without name",
7 {"description":"DOCTYPE without space before name",
11 {"description":"Incorrect DOCTYPE without a space before name",
15 {"description":"DOCTYPE with publicId",
19 {"description":"DOCTYPE with EOF after PUBLIC",
23 {"description":"DOCTYPE with EOF after PUBLIC '",
27 {"description":"DOCTYPE with EOF after PUBLIC 'x",
31 {"description":"DOCTYPE with systemId",
35 {"description":"DOCTYPE with publicId and systemId",
39 {"description":"DOCTYPE with > in double-quoted publicId"
    [all...]
domjs.test 4 "description":"CR in bogus comment state",
9 "description":"CRLF in bogus comment state",
14 "description":"NUL in RCDATA and RAWTEXT",
21 "description":"skip first BOM but not later ones",
26 "description":"Non BMP-charref in in RCDATA",
32 "description":"Bad charref in in RCDATA",
38 "description":"lowercase endtags in RCDATA and RAWTEXT",
45 "description":"bad endtag in RCDATA and RAWTEXT",
52 "description":"bad endtag in RCDATA and RAWTEXT",
59 "description":"bad endtag in RCDATA and RAWTEXT"
    [all...]
entities.test 3 {"description": "Undefined named entity in attribute value ending in semicolon and whose name starts with a known entity name.",
7 {"description": "Entity name followed by the equals sign in an attribute value.",
11 {"description": "CR as numeric entity",
15 {"description": "CR as hexadecimal numeric entity",
19 {"description": "Windows-1252 EURO SIGN numeric entity.",
23 {"description": "Windows-1252 REPLACEMENT CHAR numeric entity.",
27 {"description": "Windows-1252 SINGLE LOW-9 QUOTATION MARK numeric entity.",
31 {"description": "Windows-1252 LATIN SMALL LETTER F WITH HOOK numeric entity.",
35 {"description": "Windows-1252 DOUBLE LOW-9 QUOTATION MARK numeric entity.",
39 {"description": "Windows-1252 HORIZONTAL ELLIPSIS numeric entity."
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
And.java 12 import org.hamcrest.Description;
35 public void describeTo(Description description) {
36 description.appendText("and(");
38 it.next().describeTo(description);
40 description.appendText(", ");
43 description.appendText(")");
Or.java 12 import org.hamcrest.Description;
35 public void describeTo(Description description) {
36 description.appendText("or(");
38 it.next().describeTo(description);
40 description.appendText(", ");
43 description.appendText(")");
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
HasResourceMatcher.java 4 import org.hamcrest.Description;
31 public void describeTo(Description description) {
33 description.appendText("actual view was null");
35 description.appendText("[" + actualResourceId + "]");
36 description.appendText(" to equal ");
37 description.appendText("[" + expectedResourceId + "]");
TextViewHasTextMatcher.java 4 import org.hamcrest.Description;
32 public void describeTo(Description description) {
33 description.appendText("[" + actualText + "]");
34 description.appendText(" to equal ");
35 description.appendText("[" + expected + "]");
  /frameworks/native/services/surfaceflinger/RenderEngine/
Description.cpp 25 #include "Description.h"
29 Description::Description() :
40 Description::~Description() {
43 void Description::setPlaneAlpha(GLclampf planeAlpha) {
50 void Description::setPremultipliedAlpha(bool premultipliedAlpha) {
56 void Description::setOpaque(bool opaque) {
62 void Description::setTexture(const Texture& texture) {
68 void Description::disableTexture()
    [all...]
  /external/hamcrest/src/org/hamcrest/core/
DescribedAs.java 7 import org.hamcrest.Description;
13 * Provides a custom description to another matcher.
32 public void describeTo(Description description) {
37 description.appendText(descriptionTemplate.substring(textStart, arg.start()));
39 description.appendValue(values[argIndex]);
44 description.appendText(descriptionTemplate.substring(textStart));
49 * Wraps an existing matcher and overrides the description when it fails.
52 public static <T> Matcher<T> describedAs(String description, Matcher<T> matcher, Object... values) {
53 return new DescribedAs<T>(description, matcher, values);
    [all...]
  /external/junit/src/org/junit/experimental/results/
ResultMatchers.java 4 import org.hamcrest.Description;
29 public void describeTo(Description description) {
30 description.appendText("has " + count + " failures");
49 public void describeTo(Description description) {
50 description.appendText("has single failure containing " + string);
65 public void describeTo(Description description) {
66 description.appendText("has failure containing " + string)
    [all...]
  /libcore/luni/src/test/resources/
simple.xml 7 <description>two of our famous Belgian Waffles with plenty of real maple syrup</description>
13 <description>light Belgian waffles covered with strawberries and whipped cream</description>
19 <description>light Belgian waffles covered with an assortment of fresh berries and whipped cream</description>
25 <description>thick slices made from our homemade sourdough bread</description>
31 <description>two eggs, bacon or sausage, toast, and our ever-popular hash browns</description>
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
CommandLineArgs.java 28 @Parameter(description = "The XML suite files to run")
31 @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity")
34 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
37 @Parameter(names = "-excludedgroups", description ="Comma-separated list of group names to be " +
41 @Parameter(names = "-d", description ="Output directory")
44 @Parameter(names = "-junit", description ="JUnit mode")
47 @Parameter(names = "-listener", description = "List of .class files or list of class names" +
51 @Parameter(names = "-methodselectors", description = "List of .class files or list of class " +
55 @Parameter(names = "-objectfactory", description = "List of .class files or list of class " +
59 @Parameter(names = "-parallel", description = "Parallel mode (methods, tests or classes)"
    [all...]
  /external/junit/src/org/junit/runner/notification/
RunNotifier.java 9 import org.junit.runner.Description;
16 * move {@link #fireTestRunStarted(Description)} and {@link #fireTestRunFinished(Result)}
44 fireTestFailure(new Failure(Description.TEST_MECHANISM, e));
55 public void fireTestRunStarted(final Description description) {
59 each.testRunStarted(description);
78 * @param description the description of the atomic test (generally a class and method name)
81 public void fireTestStarted(final Description description) throws StoppedByUserException
    [all...]
Failure.java 7 import org.junit.runner.Description;
10 * A <code>Failure</code> holds a description of the failed test and the
11 * exception that was thrown while running it. In most cases the {@link org.junit.runner.Description}
18 private final Description fDescription;
22 * Constructs a <code>Failure</code> with the given description and exception.
23 * @param description a {@link org.junit.runner.Description} of the test that failed
26 public Failure(Description description, Throwable thrownException) {
28 fDescription= description;
    [all...]
  /external/hamcrest/src/org/hamcrest/
StringDescription.java 6 * A {@link Description} that is stored as a string.
20 * Return the description of a {@link SelfDescribing} object as a String.
25 * The description of the object.
42 throw new RuntimeException("Could not write description", e);
50 throw new RuntimeException("Could not write description", e);
55 * Returns the description as a string.
  /external/icu/icu4j/eclipse-build/features.template/com.ibm.icu/
feature.xml 7 <description url="http://www.example.com/description">
8 [Enter Feature Description here.]
9 </description>
12 [Enter Copyright Description here.]
16 [Enter License Description here.]
  /external/icu/icu4j/eclipse-build/features.template/com.ibm.icu.base/
feature.xml 7 <description url="http://www.example.com/description">
8 [Enter Feature Description here.]
9 </description>
12 [Enter Copyright Description here.]
16 [Enter License Description here.]
  /external/autotest/frontend/migrations/
078_add_tko_iteration_perf_value.py 5 description VARCHAR(256) DEFAULT NULL,
11 KEY description (description),
  /external/junit/src/org/junit/internal/builders/
IgnoredClassRunner.java 6 import org.junit.runner.Description;
23 public Description getDescription() {
24 return Description.createSuiteDescription(fTestClass);
  /cts/apps/CtsVerifier/res/xml/
payment_aid_list_1.xml 2 android:description="@string/paymentService1"
4 <aid-group android:description="@string/paymentService1" android:category="payment">
6 android:description="@string/ppse"/>
8 android:description="@string/mastercard"/>
payment_aid_list_2.xml 2 android:description="@string/paymentService2" android:apduServiceBanner="@drawable/nfc_hce_banner">
3 <aid-group android:description="@string/paymentService2" android:category="payment">
5 android:description="@string/ppse"/>
7 android:description="@string/mastercard"/>
payment_empty_aid_list.xml 2 android:description="@string/paymentService1" android:apduServiceBanner="@drawable/nfc_hce_banner">
3 <aid-group android:description="@string/paymentService1" android:category="payment">
5 android:description="@string/ppse"/>
7 android:description="@string/mastercard"/>
payment_prefix_aid_list_2.xml 2 android:description="@string/paymentService1" android:apduServiceBanner="@drawable/nfc_hce_banner">
3 <aid-group android:description="@string/paymentService1" android:category="payment">
5 android:description="@string/ppse"/>
7 android:description="@string/mastercard"/>
9 android:description="@string/mastercard"/>
11 android:description="@string/visa"/>
13 <aid-group android:description="@string/transportService1" android:category="other">
15 android:description="@string/transportService1"/>
17 android:description="@string/transportService1"/>
  /development/samples/SupportLeanbackShowcase/app/src/main/res/raw/
launcher_cards.json 10 "description": "Showcase of various card design and layouts"
17 "description": "Showcase usage of page/rows fragment"
24 "description": "Showcase of various card design and layouts"
31 "description": "Showcase of various card design and layouts"
38 "description": "Showcase of various card design and layouts"
45 "description": "Showcase of various card design and layouts"
52 "description": "Showcase of various card design and layouts"
59 "description": "Showcase of various card design and layouts"
66 "description": "Showcase of various card design and layouts"
music_consumption_example.json 7 "description": "Jimmy Fontanez/Media Right Production",
15 "description": "Silent Partner",
23 "description": "Jingle Punks",
31 "description": "Silent Partner",
39 "description": "Silent Partner",
47 "description": "Jingle Punks",
55 "description": "Everet Almond",
63 "description": "Gunnar Olsen",
71 "description": "The 126ers",

Completed in 501 milliseconds

1 23 4 5 6 7 8 91011>>