HomeSort by relevance Sort by last modified time
    Searched refs:description (Results 126 - 150 of 4403) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsPassword.java 24 @Parameter(names = "-password", description = "Connection password", password = true)
Arity1.java 7 @Parameter(arity = 1, names = "-inspect", description = "", required = false)
  /external/junit/src/org/junit/rules/
TestRule.java 3 import org.junit.runner.Description;
49 * @param description A {@link Description} of the test implemented in {@code base}
53 Statement apply(Statement base, Description description);
  /external/protobuf/java/src/main/java/com/google/protobuf/
UninitializedMessageException.java 84 /** Construct the description string for this exception. */
86 final StringBuilder description = local
93 description.append(", ");
95 description.append(field);
97 return description.toString();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
TextViewHasTextMatcher.java 4 import org.hamcrest.Description;
32 public void describeTo(Description description) {
33 description.appendText("[" + actualText + "]");
34 description.appendText(" to equal ");
35 description.appendText("[" + expected + "]");
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Product.java 21 public String description; field in class:Product
  /external/testng/src/test/java/test/abstractconfmethod/
C.java 12 @Test(description="Test depends on a config method that has implements an abstract methods")
  /external/testng/src/test/java/test/jason/
Main.java 14 @Test(description = "This test is run")
  /external/testng/src/test/java/test/priority/
PriorityTest.java 20 @Test(enabled = false, description = "Make sure priorities work in parallel mode")
25 @Test(enabled = false, description = "Make sure priorities work in parallel mode")
30 @Test(description = "Make sure priorities work in sequential mode")
35 @Test(description = "Make sure priorities work in sequential mode")
  /frameworks/base/libs/hwui/
ProgramCache.h 46 Program* get(const ProgramDescription& description);
51 Program* generateProgram(const ProgramDescription& description, programid key);
52 String8 generateVertexShader(const ProgramDescription& description);
53 String8 generateFragmentShader(const ProgramDescription& description);
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
SubMenuItem.java 27 public SubMenuItem(String title, String description, SideFragmentManager fragmentManager) {
28 this(title, description, 0, fragmentManager);
35 public SubMenuItem(String title, String description, int iconId,
37 super(title, description, iconId);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraphItem.java 23 String description=null; field in class:TimeLineGraphItem
33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) {
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) {
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) {
44 this(title, description, value, color,timestamp);
48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) {
52 this.description= description;
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
BigJavaBean.java 24 private String description; field in class:BigJavaBean
32 public BigJavaBean(int id, String name, String address, String description) {
36 this.description = description;
53 return description;
82 result = prime * result + ((description == null) ? 0 : description.hashCode());
108 if (description == null) {
109 if (other.description != null)
111 } else if (!description.equals(other.description)
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
StubGestureAccessibilityService.java 29 public boolean doDispatchGesture(GestureDescription description, GestureResultCallback callback,
31 return dispatchGesture(description, callback, handler);
  /cts/tests/tests/media/src/android/media/cts/
MediaItemTest.java 27 private static final String DESCRIPTION = "test_description";
33 MediaDescription description = new MediaDescription.Builder() local
34 .setDescription(DESCRIPTION).setMediaId(MEDIA_ID)
36 MediaItem mediaItem = new MediaItem(description, MediaItem.FLAG_BROWSABLE);
38 assertEquals(description.toString(), mediaItem.getDescription().toString());
49 assertEquals(description.toString(),
55 MediaDescription description = new MediaDescription.Builder() local
56 .setDescription(DESCRIPTION).setMediaId(MEDIA_ID)
58 MediaItem mediaItem = new MediaItem(description, MediaItem.FLAG_PLAYABLE);
60 assertEquals(description.toString(), mediaItem.getDescription().toString())
    [all...]
  /external/autotest/frontend/shared/
exceptions.py 15 The exception string should contain a description of the error.
18 def __init__(self, description):
19 super(BadRequest, self).__init__(400, description)
  /external/hamcrest/library/src/org/hamcrest/text/
SubstringMatcher.java 3 import org.hamcrest.Description;
21 public void describeTo(Description description) {
22 description.appendText("a string ")
  /external/jcommander/src/test/java/com/beust/jcommander/command/
CommandCommit.java 29 @Parameter(description = "List of files")
32 @Parameter(names = "--amend", description = "Amend")
  /external/junit/src/junit/framework/
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...]
JUnit4TestCaseFacade.java 7 import org.junit.runner.Description;
10 private final Description fDescription;
12 JUnit4TestCaseFacade(Description description) {
13 fDescription = description;
30 public Description getDescription() {
  /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 ")
  /external/mockito/src/org/mockito/
ArgumentMatcher.java 9 import org.hamcrest.Description;
17 * In case of failure, ArgumentMatcher generates description based on <b>decamelized class name</b> - to promote meaningful class names.
18 * For example <b>StringWithStrongLanguage</b> matcher will generate 'String with strong language' description.
19 * You can always override describeTo() method and provide detailed description.
79 * For example <b>StringWithStrongLanguage</b> matcher will generate 'String with strong language' description in case of failure.
82 * provide more specific description of the matcher (useful when
85 * @param description the description to which the matcher description is
88 public void describeTo(Description description)
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
ArrayEquals.java 11 import org.hamcrest.Description;
47 public void describeTo(Description description) {
49 appendArray(createObjectArray(getWanted()), description); local
51 super.describeTo(description);
55 private void appendArray(Object[] array, Description description) {
56 description.appendText("[");
58 new Equals(array[i]).describeTo(description);
60 description.appendText(", ")
    [all...]
Contains.java 10 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("contains(\"" + substring + "\")");
EndsWith.java 10 import org.hamcrest.Description;
27 public void describeTo(Description description) {
28 description.appendText("endsWith(\"" + suffix + "\")");

Completed in 1019 milliseconds

1 2 3 4 56 7 8 91011>>