HomeSort by relevance Sort by last modified time
    Searched refs:Description (Results 1 - 25 of 429) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/org/junit/runner/manipulation/
Sorter.java 5 import org.junit.runner.Description;
13 public class Sorter implements Comparator<Description> {
17 public static Sorter NULL= new Sorter(new Comparator<Description>() {
18 public int compare(Description o1, Description o2) {
21 private final Comparator<Description> fComparator;
28 public Sorter(Comparator<Description> comparator) {
43 public int compare(Description o1, Description o2) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.j2se12_1.0.0.200901281111/
fragmentj2se12.properties 11 fragmentName = Environment Description for J2SE-1.2
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.j2se13_1.0.0.200901281111/
fragmentj2se13.properties 11 fragmentName = Environment Description for J2SE-1.3
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.j2se14_1.0.0.200901281111/
fragmentj2se14.properties 11 fragmentName = Environment Description for J2SE-1.4
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.j2se15_1.0.0.200901281111/
fragmentj2se15.properties 11 fragmentName = Environment Description for J2SE-1.5
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.javase16_1.0.0.200901281111/
fragmentjavase16.properties 11 fragmentName = Environment Description for JavaSE-1.6
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.jre11_1.0.0.200901281111/
fragmentjre11.properties 11 fragmentName = Environment Description for JRE-1.1
  /external/hamcrest/src/org/hamcrest/
SelfDescribing.java 8 * Generates a description of the object. The description may be part of a
9 * a description of a larger object of which this is just a component, so it
12 * @param description
13 * The description to be built or appended to.
15 void describeTo(Description description);
Description.java 4 * A description of a Matcher. A Matcher will describe itself to a description
7 * @see Matcher#describeTo(Description)
9 public interface Description {
12 * Appends some plain text to the description.
14 Description appendText(String text);
17 * Appends the description of a {@link SelfDescribing} value to this description.
19 Description appendDescriptionOf(SelfDescribing value);
22 * Appends an arbitary value to the description.
    [all...]
  /external/junit/src/org/junit/runner/
Describable.java 9 * @return a {@link Description} showing the tests to be run by the receiver
11 public abstract Description getDescription();
Description.java 12 * <p>A <code>Description</code> describes a test which is to be run or has been run. <code>Descriptions</code>
22 * a superclass below {@link Object}. We needed a way to pass a class and name together. Description
28 public class Description implements Serializable {
32 * Create a <code>Description</code> named <code>name</code>.
33 * Generally, you will add children to this <code>Description</code>.
34 * @param name the name of the <code>Description</code>
36 * @return a <code>Description</code> named <code>name</code>
38 public static Description createSuiteDescription(String name, Annotation... annotations) {
41 return new Description(name, annotations);
45 * Create a <code>Description</code> of a single test named <code>name</code> in the class <code>clazz</code>
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.cdcfoundation10_1.0.0.200901281111/
fragmentcdcfoundation10.properties 11 fragmentName = Environment Description for CDC-1.0/Foundation-1.0
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.cdcfoundation11_1.0.0.200901281111/
fragmentcdcfoundation11.properties 11 fragmentName = Environment Description for CDC-1.1/Foundation-1.1
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.osgiminimum10_1.0.0.200901281111/
fragmentosgiminimum10.properties 11 fragmentName = Environment Description for OSGi/Minimum-1.0
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.osgiminimum11_1.0.0.200901281111/
fragmentosgiminimum11.properties 11 fragmentName = Environment Description for OSGi/Minimum-1.1
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.osgiminimum12_1.0.1.200904031014/
fragmentosgiminimum12.properties 11 fragmentName = Environment Description for OSGi/Minimum-1.2
  /external/junit/src/org/junit/rules/
TestRule.java 3 import org.junit.runner.Description;
49 * @param description A {@link Description} of the test implemented in {@code base}
53 Statement apply(Statement base, Description description);
TestWatcher.java 4 import org.junit.runner.Description;
19 * protected void failed(Description d) {
24 * protected void succeeded(Description d) {
41 public Statement apply(final Statement base, final Description description) {
45 starting(description);
48 succeeded(description);
52 failed(t, description);
55 finished(description);
64 * @param description
    [all...]
  /external/junit/src/junit/framework/
JUnit4TestCaseFacade.java 7 import org.junit.runner.Description;
10 private final Description fDescription;
12 JUnit4TestCaseFacade(Description description) {
13 fDescription = description;
30 public Description getDescription() {
  /frameworks/base/core/java/android/util/
EventLogTags.java 28 public static class Description {
32 Description(int tag, String name) {
42 public Description get(String name) { return null; }
44 public Description get(int tag) { return null; }
  /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/clang/lib/Basic/
LangOptions.cpp 20 #define LANGOPT(Name, Bits, Default, Description) Name = Default;
21 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default);
28 #define LANGOPT(Name, Bits, Default, Description)
29 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default;
30 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
  /external/junit/src/org/junit/runner/notification/
RunListener.java 4 import org.junit.runner.Description;
38 * @param description describes the tests to be run
40 public void testRunStarted(Description description) throws Exception {
52 * @param description the description of the test that is about to be run
55 public void testStarted(Description description) throws Exception {
60 * @param description the description of the test that just ra
    [all...]
  /external/chromium_org/testing/android/junit/javatests/src/org/chromium/testing/local/
GtestFilterTest.java 9 import org.junit.runner.Description;
30 Description.createTestDescription("TestClass", "testMethod")));
32 Description.createTestDescription("TestClass", "otherTestMethod")));
34 Description.createTestDescription("OtherTestClass", "testMethod")));
41 Description.createTestDescription("TestClass", "testMethod")));
43 Description.createTestDescription("TestClass", "otherTestMethod")));
45 Description.createTestDescription("OtherTestClass", "testMethod")));
52 Description.createTestDescription("TestClass", "testMethod")));
54 Description.createTestDescription("TestClass", "otherTestMethod")));
56 Description.createTestDescription("OtherTestClass", "testMethod")))
    [all...]
  /external/junit/src/org/junit/internal/builders/
IgnoredClassRunner.java 6 import org.junit.runner.Description;
23 public Description getDescription() {
24 return Description.createSuiteDescription(fTestClass);

Completed in 415 milliseconds

1 2 3 4 5 6 7 8 91011>>