Searched defs:description (Results 1 - 25 of 365) sorted by relevance

1234567891011>>

/external/hamcrest/src/org/hamcrest/
H A DSelfDescribing.java8 * 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); argument
/external/webkit/Source/WebCore/dom/
H A DDOMCoreException.h38 static PassRefPtr<DOMCoreException> create(const ExceptionCodeDescription& description) argument
40 return adoptRef(new DOMCoreException(description));
44 DOMCoreException(const ExceptionCodeDescription& description) argument
45 : ExceptionBase(description)
H A DExceptionBase.cpp36 ExceptionBase::ExceptionBase(const ExceptionCodeDescription& description) argument
37 : m_code(description.code)
38 , m_name(description.name)
39 , m_description(description.description)
41 if (description.name)
42 m_message = makeString(description.name, ": ", description.typeName, " Exception ", String::number(description.code));
44 m_message = makeString(description
[all...]
H A DEventException.h38 static PassRefPtr<EventException> create(const ExceptionCodeDescription& description) argument
40 return adoptRef(new EventException(description));
51 EventException(const ExceptionCodeDescription& description) argument
52 : ExceptionBase(description)
H A DRangeException.h34 static PassRefPtr<RangeException> create(const ExceptionCodeDescription& description) argument
36 return adoptRef(new RangeException(description));
48 RangeException(const ExceptionCodeDescription& description) argument
49 : ExceptionBase(description)
/external/hamcrest/src/org/hamcrest/internal/
H A DSelfDescribingValue.java13 public void describeTo(Description description) { argument
14 description.appendValue(value);
/external/junit/src/org/junit/rules/
H A DTestRule.java49 * @param description A {@link Description} of the test implemented in {@code base}
53 Statement apply(Statement base, Description description); argument
H A DExternalResource.java36 public Statement apply(Statement base, Description description) { argument
H A DTimeout.java46 public Statement apply(Statement base, Description description) { argument
H A DVerifier.java29 public Statement apply(final Statement base, Description description) { argument
/external/webkit/Source/WebCore/svg/
H A DSVGDescElement.cpp37 String SVGDescElement::description() const function in class:WebCore::SVGDescElement
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddfa.rb229 | description: #{ description }
293 | description: #{ description }
303 except = NoViableAlternative.new( description, @decision_number, state, input )
316 def description method in class:ANTLR3
/external/chromium/chrome/browser/web_applications/
H A Dweb_app_unittest.cc44 const string16 description = ASCIIToUTF16("TEST_DESCRIPTION"); local
48 web_app_info.description = description;
57 EXPECT_EQ(description, info.description);
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dsetup.py36 description='Google Commandline Flags Module', variable
/external/e2fsprogs/contrib/python-uuid/
H A Dsetup.py10 description = 'This is python uuid interface', variable
/external/hamcrest/src/org/hamcrest/core/
H A DAllOf.java31 public void describeTo(Description description) { argument
32 description.appendList("(", " and ", ")", matchers);
H A DAnyOf.java32 public void describeTo(Description description) { argument
33 description.appendList("(", " or ", ")", matchers);
H A DIsSame.java25 public void describeTo(Description description) { argument
26 description.appendText("same(") .appendValue(object) .appendText(")");
/external/jmonkeyengine/engine/src/android/jme3test/android/
H A DDemoLaunchEntry.java11 private String description; field in class:DemoLaunchEntry
15 * @param description
17 public DemoLaunchEntry(String name, String description) { argument
20 this.description = description;
30 return description;
32 public void setDescription(String description) { argument
33 this.description = description;
/external/junit/src/junit/framework/
H A DJUnit4TestCaseFacade.java12 JUnit4TestCaseFacade(Description description) { argument
13 fDescription = description;
/external/proguard/src/proguard/gui/
H A DExtensionFileFilter.java35 private final String description; field in class:ExtensionFileFilter
41 * @param description a description of the filter.
44 public ExtensionFileFilter(String description, String[] extensions) argument
46 this.description = description;
55 return description;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
H A Dexec-001.js31 testcases[0] = { expect:"PASSED", actual:"PASSED", description:"NO TESTS EXIST" };
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
H A Dreplace-001.js58 testcases[0] = { expect:"PASSED", actual:"PASSED", description:"NO TESTS EXIST" };
/external/webkit/Source/WebCore/xml/
H A DXMLHttpRequestException.h38 static PassRefPtr<XMLHttpRequestException> create(const ExceptionCodeDescription& description) argument
40 return adoptRef(new XMLHttpRequestException(description));
52 XMLHttpRequestException(const ExceptionCodeDescription& description) argument
53 : ExceptionBase(description)
H A DXPathException.h40 static PassRefPtr<XPathException> create(const ExceptionCodeDescription& description) argument
42 return adoptRef(new XPathException(description));
54 XPathException(const ExceptionCodeDescription& description) argument
55 : ExceptionBase(description)

Completed in 407 milliseconds

1234567891011>>