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

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/runner/manipulation/
Sorter.java 5 import org.junit.runner.Description;
13 public class Sorter implements Comparator<Description> {
17 public static final Sorter NULL = new Sorter(new Comparator<Description>() {
18 public int compare(Description o1, Description o2) {
23 private final Comparator<Description> comparator;
31 public Sorter(Comparator<Description> comparator) {
45 public int compare(Description o1, Description o2) {
  /frameworks/native/services/surfaceflinger/RenderEngine/
Description.cpp 25 #include "Description.h"
29 void Description::setPremultipliedAlpha(bool premultipliedAlpha) {
33 void Description::setOpaque(bool opaque) {
37 void Description::setTexture(const Texture& texture) {
42 void Description::disableTexture() {
46 void Description::setColor(const half4& color) {
50 void Description::setProjectionMatrix(const mat4& mtx) {
54 void Description::setSaturationMatrix(const mat4& mtx) {
58 void Description::setColorMatrix(const mat4& mtx) {
62 void Description::setInputTransformMatrix(const mat3& matrix)
    [all...]
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestClass.java 3 import org.junit.runner.Description;
11 public JUnit4TestClass(Description test) {
  /external/hamcrest/hamcrest-core/src/main/java/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 {
11 * A description that consumes input but does nothing.
13 static final Description NONE = new NullDescription();
16 * Appends some plain text to the description.
18 Description appendText(String text);
21 * Appends the description of a {@link SelfDescribing} value to this description
    [all...]
DiagnosingMatcher.java 12 return matches(item, Description.NONE);
16 public final void describeMismatch(Object item, Description mismatchDescription) {
20 protected abstract boolean matches(Object item, Description mismatchDescription);
  /external/junit/src/main/java/org/junit/runner/
Describable.java 11 * @return a {@link Description} showing the tests to be run by the receiver
13 public abstract Description getDescription();
FilterFactoryParams.java 4 private final Description topLevelDescription;
7 public FilterFactoryParams(Description topLevelDescription, String args) {
20 public Description getTopLevelDescription() {
  /external/vogar/src/vogar/target/junit/
DescribableStatement.java 20 import org.junit.runner.Description;
24 * A {@link Statement} that also provides a {@link Description}
31 private final Description description; field in class:DescribableStatement
33 protected DescribableStatement(Description description) {
34 this.description = description;
38 public Description getDescription() {
39 return description;
    [all...]
DescriptionComparator.java 20 import org.junit.runner.Description;
25 public class DescriptionComparator implements Comparator<Description> {
38 public int compare(Description d1, Description d2) {
  /external/junit/src/main/java/org/junit/rules/
TestRule.java 3 import org.junit.runner.Description;
51 * @param description A {@link Description} of the test implemented in {@code base}
55 Statement apply(Statement base, Description description);
Stopwatch.java 4 import org.junit.runner.Description;
19 * private static void logInfo(Description description, String status, long nanos) {
20 * String testName = description.getMethodName();
28 * protected void succeeded(long nanos, Description description) {
29 * logInfo(description, &quot;succeeded&quot;, nanos);
33 * protected void failed(long nanos, Throwable e, Description description) {
34 * logInfo(description, &quot;failed&quot;, nanos)
158 Stopwatch.this.finished(getNanos(), description); local
163 Stopwatch.this.succeeded(getNanos(), description); local
168 Stopwatch.this.failed(getNanos(), e, description); local
173 Stopwatch.this.skipped(getNanos(), e, description); local
    [all...]
TestName.java 3 import org.junit.runner.Description;
31 protected void starting(Description d) {
Verifier.java 3 import org.junit.runner.Description;
31 public Statement apply(final Statement base, Description description) {
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
debug.c 35 IN CHAR8 *Description
38 DbgPrint (D_ERROR, (CHAR8 *)"%EASSERT FAILED: %a(%d): %a%N\n", FileName, LineNo, Description);
  /external/junit/src/main/java/junit/framework/
JUnit4TestCaseFacade.java 4 import org.junit.runner.Description;
7 private final Description fDescription;
9 JUnit4TestCaseFacade(Description description) {
10 fDescription = description;
27 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; }
  /external/junit/src/main/java/org/junit/internal/builders/
IgnoredClassRunner.java 3 import org.junit.runner.Description;
20 public Description getDescription() {
21 return Description.createSuiteDescription(clazz);
  /external/vogar/src/vogar/target/junit/junit3/
TestSuiteFactory.java 23 import org.junit.runner.Description;
45 * @param description the description of the test case.
48 T createTestCase(TestCase testCase, Description description);
54 * @param description the description of the test case.
57 T createCustomTest(Test test, Description description);
  /tools/tradefederation/core/src/com/android/tradefed/util/
JUnit4TestFilter.java 18 import org.junit.runner.Description;
36 public boolean shouldRun(Description description) {
38 if (description.isSuite()) {
39 for (Description desc : description.getChildren()) {
45 return mFilterHelper.shouldRun(description);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
BeforeAfterRule.java 19 import org.junit.runner.Description;
28 public Statement apply(Statement base, Description description) {
33 onBefore(base, description);
37 onAfter(base, description);
43 protected void onBefore(Statement base, Description description) throws Throwable {
46 protected void onAfter(Statement base, Description description) throws Throwable {
  /external/mockito/src/test/java/org/mockito/internal/hamcrest/
MatcherGenericTypeExtractorTest.java 8 import org.hamcrest.Description;
26 public void describeTo(Description description) {}
34 public void describeTo(Description description) {}
42 public void describeTo(Description description) {}
51 public void describeTo(Description description) {}
59 public void describeMismatch(Object item, Description mismatchDescription) {
    [all...]
  /external/mesa3d/src/gallium/targets/d3dadapter9/
description.c 226 /* override VendorId, DeviceId and Description for unknown vendors */
242 strncpy(drvid->Description, fallback_name, sizeof(drvid->Description));
279 if (strstr(drvid->Description, cards_intel[i].mesaname)) {
280 strncpy(drvid->Description, cards_intel[i].d3d9name, sizeof(drvid->Description));
286 strncpy(drvid->Description, cards_intel[0].d3d9name, sizeof(drvid->Description));
290 if (strstr(drvid->Description, cards_vmware[i].mesaname)) {
291 strncpy(drvid->Description, cards_vmware[i].d3d9name, sizeof(drvid->Description))
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
SelfDescribingValue.java 3 import org.hamcrest.Description;
14 public void describeTo(Description description) {
15 description.appendValue(value);
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/
NullDescriptionTest.java 3 import org.hamcrest.Description.NullDescription;
10 private final NullDescription nullDescription = new Description.NullDescription();

Completed in 1823 milliseconds

1 2 3 4 5 6 7 8 91011>>