HomeSort by relevance Sort by last modified time
    Searched refs:Description (Results 126 - 150 of 302) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mockito/src/org/mockito/runners/
ConsoleSpammingMockitoJUnitRunner.java 9 import org.junit.runner.Description;
109 public void testStarted(Description description) throws Exception {
124 public Description getDescription() {
VerboseMockitoJUnitRunner.java 9 import org.junit.runner.Description;
59 public void testStarted(Description description) throws Exception {
76 public Description getDescription() {
  /external/hamcrest/integration/src/org/hamcrest/
MatcherAssert.java 13 Description description = new StringDescription(); local
14 description.appendText(reason)
21 throw new java.lang.AssertionError(description.toString());
  /external/llvm/test/MC/ARM/
directive-arch-armv2.s 23 @ CHECK-ATTR: Description: ARM v4
27 @ CHECK-ATTR: Description: Permitted
directive-arch-armv2a.s 23 @ CHECK-ATTR: Description: ARM v4
27 @ CHECK-ATTR: Description: Permitted
directive-arch-armv3.s 23 @ CHECK-ATTR: Description: ARM v4
27 @ CHECK-ATTR: Description: Permitted
directive-arch-armv3m.s 23 @ CHECK-ATTR: Description: ARM v4
27 @ CHECK-ATTR: Description: Permitted
directive-arch-armv5.s 23 @ CHECK-ATTR: Description: ARM v5T
27 @ CHECK-ATTR: Description: Permitted
directive-arch-armv6-m.s 23 @ CHECK-ATTR: Description: ARM v6-M
27 @ CHECK-ATTR: Description: Thumb-1
directive-arch-armv7.s 23 @ CHECK-ATTR: Description: ARM v7
27 @ CHECK-ATTR: Description: Thumb-2
directive-eabi_attribute-overwrite.s 14 @ CHECK-ATTR: Description: AEABI Conformant
directive-fpu-multiple.s 15 @ CHECK-ATTR: Description: VFPv4
directive-object_arch-2.s 19 @ CHECK: Description: ARM v4
directive-object_arch.s 19 @ CHECK: Description: ARM v4
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
InMatcher.java 19 import org.hamcrest.Description;
57 public void describeTo(Description description) {
58 description.appendText("in(").appendValue(mValues).appendText(")");
  /external/chromium_org/testing/android/junit/java/src/org/chromium/testing/local/
GtestComputer.java 8 import org.junit.runner.Description;
38 public Description getDescription() {
  /external/clang/include/clang/Frontend/
LangStandard.h 48 const char *Description;
55 /// getDescription - Get the description of this standard.
56 const char *getDescription() const { return Description; }
  /external/compiler-rt/make/platform/
multi_arch.mk 0 Description := Example configuration for build two libraries for separate \
  /external/hamcrest/library/src/org/hamcrest/collection/
IsIn.java 7 import org.hamcrest.Description;
26 public void describeTo(Description buffer) {
  /external/hamcrest/library/src/org/hamcrest/text/
IsEqualIgnoringWhiteSpace.java 5 import org.hamcrest.Description;
31 public void describeTo(Description description) {
32 description.appendText("eqIgnoringWhiteSpace(")
  /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...]
IsEqual.java 5 import org.hamcrest.Description;
28 public void describeTo(Description description) {
29 description.appendValue(object);
  /external/mockito/src/org/mockito/internal/matchers/
VarargCapturingMatcher.java 3 import org.hamcrest.Description;
24 public void describeTo(Description description) {
25 description.appendText("<Capturing variable argument>");
  /external/mockito/src/org/mockito/internal/runners/
JUnit44RunnerImpl.java 10 import org.junit.runner.Description;
40 public Description getDescription() {
JUnit45AndHigherRunnerImpl.java 7 import org.junit.runner.Description;
40 public Description getDescription() {

Completed in 3595 milliseconds

1 2 3 4 56 7 8 91011>>