Searched refs:description (Results 1 - 25 of 1686) sorted by relevance

1234567891011>>

/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/chromium/chrome/browser/chromeos/login/
H A Dwizard_accessibility_handler_unittest.cc21 std::string* description) {
27 description,
35 std::string description; local
50 &description,
53 EXPECT_EQ("Save Button", description);
61 &description,
64 EXPECT_EQ("Accessibility Unchecked check box", description);
69 &description,
72 EXPECT_EQ("Accessibility Checked check box", description);
82 &description,
16 ChangeText(WizardAccessibilityHandler* handler, AccessibilityTextBoxInfo* textbox_info, const std::string& value, int selection_start, int selection_end, std::string* description) argument
91 std::string description; local
[all...]
/external/webkit/Source/WebCore/dom/
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 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 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/webkit/LayoutTests/fast/events/touch/resources/
H A Dcreate-touch-event.js0 description = "This tests whether the DOM can create TouchEvents.";
3 debug(description);
/external/webkit/LayoutTests/http/tests/cookies/script-tests/
H A Ddouble-quoted-value-with-semi-colon.js0 description(
H A Dmultiple-cookies.js0 description(
H A Dsimple-cookies-max-age.js0 description(
/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/LayoutTests/fast/dom/NodeList/script-tests/
H A Dnodelist-item-call-as-function.js0 description('This tests that items in a NodeList can be retrieved directly by calling as a function with an integral index parameter, starting from 0.<br>It means NodeList[0] and NodeList(0) both work.');
/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)
/external/junit/src/junit/framework/
H A DJUnit4TestAdapterCache.java24 public Test asTest(Description description) { argument
25 if (description.isSuite())
26 return createTest(description);
28 if (!containsKey(description))
29 put(description, createTest(description));
30 return get(description);
34 Test createTest(Description description) { argument
35 if (description.isTest())
36 return new JUnit4TestCaseFacade(description);
69 asTestList(Description description) argument
[all...]
/external/hamcrest/src/org/hamcrest/core/
H A DIsAnything.java16 private final String description; field in class:IsAnything
22 public IsAnything(String description) { argument
23 this.description = description;
30 public void describeTo(Description description) { argument
31 description.appendText(this.description);
45 * @param description A meaningful string used when describing itself.
48 public static <T> Matcher<T> anything(String description) { argument
49 return new IsAnything<T>(description);
[all...]
/external/junit/src/org/junit/rules/
H A DTestWatcher.java41 public Statement apply(final Statement base, final Description description) { argument
45 starting(description);
48 succeeded(description);
52 failed(t, description);
55 finished(description);
64 * @param description
66 protected void succeeded(Description description) { argument
73 * @param description
75 protected void failed(Throwable e, Description description) { argument
81 * @param description
83 starting(Description description) argument
92 finished(Description description) argument
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Dwhile-004.js44 description = "return statement in a while block";
50 "DoWhile_1" + description,
63 var description = "while with a labeled continue statement";
79 "DoWhile_2: " +description + " - code inside the loop, before the continue should be executed ("+j+")",
85 "DoWhile_2: " +description +" - code after labeled continue should not be executed",
91 "DoWhile_2: " +description +" - code after loop but inside label should be executed",
101 var description = "while with a labeled break statement";
118 "DoWhile_3: " +description +" - verify break out of loop",
125 "DoWhile_3: " +description +" - verify break out of label",
131 "DoWhile_3: " +description
[all...]
/external/webkit/LayoutTests/fast/js/resources/
H A Dbom-in-file-retains-correct-offset.js0 description("This ensures that BOM's scattered through a source file do not break parsing");
/external/webkit/Source/WebCore/bindings/objc/
H A DExceptionHandlers.mm46 ExceptionCodeDescription description;
47 getExceptionCodeDescription(ec, description);
50 if (strcmp(description.typeName, "DOM Range") == 0)
52 else if (strcmp(description.typeName, "DOM Events") == 0)
55 else if (strcmp(description.typeName, "DOM SVG") == 0)
58 else if (strcmp(description.typeName, "DOM XPath") == 0)
64 if (description.name)
65 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code];
67 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description
[all...]
/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/svg/
H A DSVGException.h32 static PassRefPtr<SVGException> create(const ExceptionCodeDescription& description) argument
34 return adoptRef(new SVGException(description));
47 SVGException(const ExceptionCodeDescription& description) argument
48 : ExceptionBase(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/jhead/
H A Diptc.c102 char * description = NULL; local
124 case IPTC_SUPLEMENTAL_CATEGORIES: description = "SuplementalCategories"; break;
125 case IPTC_KEYWORDS: description = "Keywords"; break;
126 case IPTC_CAPTION: description = "Caption"; break;
127 case IPTC_AUTHOR: description = "Author"; break;
128 case IPTC_HEADLINE: description = "Headline"; break;
129 case IPTC_SPECIAL_INSTRUCTIONS: description = "Spec. Instr."; break;
130 case IPTC_CATEGORY: description = "Category"; break;
131 case IPTC_BYLINE: description = "Byline"; break;
132 case IPTC_BYLINE_TITLE: description
[all...]

Completed in 412 milliseconds

1234567891011>>