HomeSort by relevance Sort by last modified time
    Searched refs:Description (Results 201 - 225 of 520) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/support/v4/tests/java/android/support/v4/testutils/
TestUtilsMatchers.java 34 import org.hamcrest.Description;
47 public void describeTo(final Description description) {
48 description.appendText("with background color: ");
50 description.appendText(failedComparisonDescription);
89 public void describeTo(Description description) {
90 description.appendText("is identical to class: " + clazz);
109 public void describeTo(final Description description) {
    [all...]
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
CaliperTestWatcher.java 27 import org.junit.runner.Description;
91 @Override protected void finished(Description description) {
100 @Override protected void failed(Throwable e, Description description) {
  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
command_line.py 39 def Description(cls):
65 description=cls.Description())
112 command.Name(), help=command.Description())
  /external/compiler-rt/lib/asan/
asan_flags.cc 46 #define ASAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
52 #define ASAN_FLAG(Type, Name, DefaultValue, Description) \
53 RegisterFlag(parser, #Name, Description, &f->Name);
  /external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
IcuTestFmwkRunner.java 24 import org.junit.runner.Description;
112 protected Description describeChild(IcuFrameworkTest child) {
118 Description description = describeChild(child); local
130 runLeaf(statement, description, notifier);
IcuTestGroupRunner.java 22 import org.junit.runner.Description;
90 protected Description describeChild(Runner child) {
  /frameworks/base/core/java/android/view/animation/
RotateAnimation.java 58 Description d = Description.parseValue(a.peekValue(
63 d = Description.parseValue(a.peekValue(
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRuntimeException.h 50 - (NSString *) Description;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRuntimeException.h 50 - (NSString *) Description;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRuntimeException.h 50 - (NSString *) Description;
  /external/chromium-trace/catapult/telemetry/telemetry/util/
command_line.py 16 description=cls.Description())
  /external/compiler-rt/lib/dfsan/
dfsan.h 56 #define DFSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
  /external/llvm/test/MC/ARM/
directive-arch-armv4.s 23 @ CHECK-ATTR: Description: ARM v4
27 @ CHECK-ATTR: Description: Permitted
  /external/vogar/test/vogar/testing/
InterceptOutputStreamsTest.java 23 import org.junit.runner.Description;
82 statement = ios.apply(statement, Description.EMPTY);
111 statement = ios.apply(statement, Description.EMPTY);
128 statement = ios.apply(statement, Description.EMPTY);
  /frameworks/native/services/surfaceflinger/RenderEngine/
Program.h 24 #include "Description.h"
54 /* set-up uniforms from the description */
55 void setUniforms(const Description& desc);
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 31 const char *Description;
39 #define FUZZER_FLAG_INT(Name, Default, Description) int Name;
40 #define FUZZER_FLAG_UNSIGNED(Name, Default, Description) unsigned int Name;
41 #define FUZZER_FLAG_STRING(Name, Description) const char *Name;
49 #define FUZZER_FLAG_INT(Name, Default, Description) \
50 {#Name, Description, Default, &Flags.Name, nullptr, nullptr},
51 #define FUZZER_FLAG_UNSIGNED(Name, Default, Description) \
52 {#Name, Description, static_cast<int>(Default), \
54 #define FUZZER_FLAG_STRING(Name, Description) \
55 {#Name, Description, 0, nullptr, &Flags.Name, nullptr}
    [all...]
  /external/hamcrest/library/src/org/hamcrest/collection/
IsCollectionContaining.java 4 import org.hamcrest.Description;
29 public void describeTo(Description description) {
30 description
  /external/hamcrest/library/src/org/hamcrest/xml/
HasXPath.java 3 import org.hamcrest.Description;
57 public void describeTo(Description description) {
58 description.appendText("an XML document with XPath ").appendText(xpathString);
60 description.appendText(" ").appendDescriptionOf(valueMatcher);
  /external/junit/src/org/junit/internal/matchers/
IsCollectionContaining.java 9 import org.hamcrest.Description;
31 public void describeTo(Description description) {
32 description
  /external/valgrind/gdbserver_tests/
mcsignopass.stdoutB.exp 1 Signal Stop Print Pass to program Description
3 Signal Stop Print Pass to program Description
5 Signal Stop Print Pass to program Description
51 Signal Stop Print Pass to program Description
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestActivity.java 32 import org.junit.runner.Description;
175 public void testRunStarted(Description description) throws Exception {
200 public void testStarted(Description description) throws Exception {
205 mTextView.append("\n Running test: " + description.getMethodName());
210 public void testFinished(Description description) throws Exception {
213 appendTestDetail("\n Test passed: " + description.getMethodName());
214 mTestsResults.append("\n Test passed: " + description.getMethodName())
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestActivity.java 30 import org.junit.runner.Description;
177 public void testRunStarted(Description description) throws Exception {
187 public void testStarted(Description description) throws Exception {
189 getTestLogger().logTestStart(description.getMethodName());
192 public void testFinished(Description description) throws Exception {
194 getTestLogger().logTestPass(description.getMethodName(), null /* testSummary */);
210 public void testIgnored(Description description) throws Exception
    [all...]
  /cts/tests/core/runner/src/com/android/cts/core/internal/runner/
TestLoader.java 26 import org.junit.runner.Description;
104 Description description = Description.createSuiteDescription(className); local
105 Failure failure = new Failure(description, e);
  /external/junit/src/org/junit/internal/runners/
MethodRoadie.java 14 import org.junit.runner.Description;
28 private final Description fDescription;
31 public MethodRoadie(Object test, TestMethod method, RunNotifier notifier, Description description) {
34 fDescription= description;
  /external/junit/src/org/junit/runners/
ParentRunner.java 23 import org.junit.runner.Description;
48 * {@link Description}, and run children sequentially.
87 * Returns a {@link Description} for {@code child}, which can be assumed to
90 protected abstract Description describeChild(T child);
258 protected final void runLeaf(Statement statement, Description description,
260 EachTestNotifier eachNotifier= new EachTestNotifier(notifier, description);
275 * description.
286 public Description getDescription() {
287 Description description= Description.createSuiteDescription(getName()
    [all...]

Completed in 313 milliseconds

1 2 3 4 5 6 7 891011>>