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

1 2 3 4 5 6 7 8 91011>>

  /external/hamcrest/src/org/hamcrest/
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...]
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);
  /external/autotest/client/site_tests/platform_CrosDisksFormat/
vfat_tests 3 "description": "VFAT filesystem",
  /external/libpcap/ChmodBPF/
StartupParameters.plist 2 Description = "Change BPF permissions";
  /external/junit/src/junit/framework/
JUnit4TestAdapterCache.java 11 import org.junit.runner.Description;
16 public class JUnit4TestAdapterCache extends HashMap<Description, Test> {
24 public Test asTest(Description description) {
25 if (description.isSuite())
26 return createTest(description);
28 if (!containsKey(description))
29 put(description, createTest(description));
30 return get(description);
    [all...]
JUnit4TestCaseFacade.java 7 import org.junit.runner.Description;
10 private final Description fDescription;
12 JUnit4TestCaseFacade(Description description) {
13 fDescription = description;
30 public Description getDescription() {
JUnit4TestAdapter.java 7 import org.junit.runner.Description;
52 public Description getDescription() {
53 Description description= fRunner.getDescription(); local
54 return removeIgnored(description);
57 private Description removeIgnored(Description description) {
58 if (isIgnored(description))
59 return Description.EMPTY
    [all...]
  /external/junit/src/org/junit/rules/
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...]
RunRules.java 3 import org.junit.runner.Description;
12 public RunRules(Statement base, Iterable<TestRule> rules, Description description) {
13 statement= applyAll(base, rules, description);
22 Description description) {
24 result= each.apply(result, description);
  /external/mockito/src/org/mockito/internal/matchers/
Same.java 8 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("same(");
29 appendQuoting(description);
30 description.appendText("" + wanted);
31 appendQuoting(description);
32 description.appendText(")");
35 private void appendQuoting(Description description) {
    [all...]
Not.java 10 import org.hamcrest.Description;
28 public void describeTo(Description description) {
29 description.appendText("not(");
30 first.describeTo(description);
31 description.appendText(")");
  /external/autotest/frontend/afe/fixtures/
initial_data.json 1 [{"pk": "1", "model": "afe.aclgroup", "fields": {"name": "Everyone", "description": ""}}]
  /external/dbus/bus/
dbus.socket.in 2 Description=D-Bus System Message Bus Socket
  /external/e2fsprogs/tests/m_std/
script 0 DESCRIPTION="standard filesystem options"
  /external/hamcrest/src/org/hamcrest/internal/
SelfDescribingValue.java 3 import org.hamcrest.Description;
13 public void describeTo(Description description) {
14 description.appendValue(value);
  /external/snakeyaml/src/test/resources/compactnotation/
error3.yaml 2 - Row(id111, size=17, description=text)
error4.yaml 2 - Row(id111, description = text) {size: 15}
  /hardware/bsp/intel/peripheral/libmraa/src/javascript/
doxygen2jsdoc_custom.json 4 "description": "Read length bytes from the device",
8 "description": "Size of read in bytes to make"
13 "description": "Data read"
17 "description": "Write length bytes to the device",
21 "description": "Size of buffer to send"
26 "description": "Result of operation"
32 "description": "Read length bytes from the bus",
36 "description": "Size of read in bytes to make"
41 "description": "Data read"
45 "description": "Write length bytes to the bus, the first byte in the Buffer is the command/register to write"
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tokenization/
unicodeChars.test 3 {"description": "Invalid Unicode character U+0001",
7 {"description": "Invalid Unicode character U+0002",
11 {"description": "Invalid Unicode character U+0003",
15 {"description": "Invalid Unicode character U+0004",
19 {"description": "Invalid Unicode character U+0005",
23 {"description": "Invalid Unicode character U+0006",
27 {"description": "Invalid Unicode character U+0007",
31 {"description": "Invalid Unicode character U+0008",
35 {"description": "Invalid Unicode character U+000B",
39 {"description": "Invalid Unicode character U+000E"
    [all...]
test3.test 3 {"description":"",
7 {"description":"\\u0009",
11 {"description":"\\u000A",
15 {"description":"\\u000B",
19 {"description":"\\u000C",
23 {"description":" ",
27 {"description":"!",
31 {"description":"\"",
35 {"description":"%",
39 {"description":"&"
    [all...]
  /development/samples/SupportLeanbackShowcase/app/src/main/res/raw/
grid_example.json 6 "description": "$3.99/lb",
12 "description": "$3.99/lb",
18 "description": "$3.99/lb",
24 "description": "$3.99/lb",
30 "description": "$3.99/lb",
36 "description": "$3.99/lb",
42 "description": "$3.99/lb",
48 "description": "$3.99/lb",
54 "description": "$3.99/lb",
60 "description": "$3.99/lb"
    [all...]
  /external/jarjar/maven/
plugin.xml 2 <description></description>
12 <description>Repackage class files into a new namespace.</description>
29 <description>Jar file to process</description>
36 <description>Output jar file</description>
43 <description>External rules file</description>
    [all...]
  /external/junit/src/org/junit/internal/runners/
ErrorReportingRunner.java 7 import org.junit.runner.Description;
24 public Description getDescription() {
25 Description description= Description.createSuiteDescription(fTestClass); local
27 description.addChild(describeCause(each));
28 return description;
49 private Description describeCause(Throwable child) {
50 return Description.createTestDescription(fTestClass,
55 Description description= describeCause(child) local
    [all...]
  /external/clang/test/CodeGenObjC/
property-getter-dot-syntax.m 4 - (void *)description;
10 void *eggsText= eggs.description;
  /external/e2fsprogs/tests/m_quota/
script 0 DESCRIPTION="enable quota feature on mkfs"
5 echo "$test_name: $DESCRIPTION: skipped"

Completed in 4343 milliseconds

1 2 3 4 5 6 7 8 91011>>