/external/jmonkeyengine/engine/src/android/jme3test/android/ |
DemoLaunchEntry.java | 4 * Name (=appClass) and Description of one demo launch inside the main apk 11 private String description; field in class:DemoLaunchEntry 15 * @param description 17 public DemoLaunchEntry(String name, String description) { 20 this.description = description; 30 return description; 32 public void setDescription(String description) { 33 this.description = description; [all...] |
/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);
|
/tools/motodev/src/plugins/android/resources/ |
monkey_options.xml | 6 <description>%Monkey_Option_Seed_Description</description>
10 <description>%Monkey_Option_Throttle_Description</description>
14 <description>%Monkey_Option_PctTouch_Description</description>
18 <description>%Monkey_Option_PctMotion_Description</description>
22 <description>%Monkey_Option_PctTrackball_Description</description>
[all...] |
/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);
|
/tools/motodev/src/plugins/preflighting.core/files/ |
apilevel-permission-map.xml | 8 <description>Allows read/write access to the "properties" table in the checkin database, to change values that get uploaded.</description>
13 <description>Allows an application to access coarse (e.g., Cell-ID, WiFi) location</description>
18 <description>Allows an application to access fine (e.g., GPS) location</description>
23 <description>Allows an application to access extra location provider commands</description>
28 <description>Allows an application to create mock location providers for testing</description>
[all...] |
/external/chromium/chrome/browser/chromeos/login/ |
wizard_accessibility_handler_unittest.cc | 21 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, 91 std::string description; local [all...] |
/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/webkit/Tools/QueueStatusServer/ |
cron.yaml | 2 - description: collect the garbage
|
/tools/motodev/src/plugins/emulator/resource/ |
startup_options.xml | 23 <description>%StartUp_Options_DpiDevice_Description</description> 27 <description>%StartUp_Options_Scale_Description</description> 31 <description>%StartUp_Options_BootAnim_Description</description> 35 <description>%StartUp_Options_NoSkin_Description</description> 44 <description>%StartUp_Options_Cache_Description</description> [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/sr/ |
messages.json | 4 "description": "????? ?????????? ? ?????????." 6 "description": { 8 "description": "???? ?????????? ? ?????????.", 18 "description": "????? ??????? ??????????.", 28 "description": "???????? ?????? ?????." 32 "description": "????? ????? ??????.", 42 "description": "?????? ?????? ???? ???? ???????? ???? ?? ??? ??????????." 46 "description": "?????? ?????? ???? ???? ???????? ???? ?? ??? ??????????." 50 "description": "????? ???? ?? ??? ?????.",
|
/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/junit/src/org/junit/internal/ |
AssumptionViolatedException.java | 3 import org.hamcrest.Description; 30 public void describeTo(Description description) { 32 description.appendText("got: "); 33 description.appendValue(fValue); 34 description.appendText(", expected: "); 35 description.appendDescriptionOf(fMatcher); 37 description.appendText("failed assumption: " + fValue);
|
/external/junit/src/org/junit/runner/ |
Describable.java | 9 * @return a {@link Description} showing the tests to be run by the receiver 11 public abstract Description getDescription();
|
/external/e2fsprogs/debian/attic/ |
comerrg-dev.info | 1 DESCR="The Common Error Description library."
|
/external/e2fsprogs/tests/m_dasd_bs/ |
script | 0 DESCRIPTION="2048 byte sector devices"
|
/external/e2fsprogs/tests/m_uninit/ |
script | 0 DESCRIPTION="uninitialized group feature"
|
/external/junit/src/org/junit/internal/matchers/ |
SubstringMatcher.java | 3 import org.hamcrest.Description; 18 public void describeTo(Description description) { 19 description.appendText("a string ")
|