Home
last modified time | relevance | path

Searched refs:description (Results 1 – 25 of 52) sorted by relevance

123

/cts/tools/signature-tools/src/signature/model/impl/
DSigApi.java30 private String description; field in SigApi
33 public SigApi(String description, Visibility visibility) { in SigApi() argument
34 this.description = description; in SigApi()
39 return description; in getName()
42 public void setName(String description) { in setName() argument
43 this.description = description; in setName()
/cts/libs/vogar-expect/src/vogar/
DExpectation.java40 private final String description; field in Expectation
57 …public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug)… in Expectation() argument
58 if (result == null || description == null || pattern == null) { in Expectation()
60 "result=" + result + " description=" + description + " pattern=" + pattern); in Expectation()
63 this.description = description; in Expectation()
71 return description; in getDescription()
106 return "Expectation[description=" + description + " pattern=" + pattern.pattern() + "]"; in toString()
/cts/tools/junit/src/com/android/cts/junit/
DSingleJUnitTestRunListener.java36 public void testRunStarted(Description description) throws Exception { in testRunStarted() argument
47 public void testStarted(Description description) throws Exception { in testStarted() argument
49 description.getClassName(), description.getMethodName())); in testStarted()
53 public void testFinished(Description description) throws Exception { in testFinished() argument
65 public void testIgnored(Description description) throws Exception { in testIgnored() argument
/cts/tests/tests/media/src/android/media/cts/
DMediaItemTest.java33 MediaDescription description = new MediaDescription.Builder() in testBrowsableMediaItem() local
36 MediaItem mediaItem = new MediaItem(description, MediaItem.FLAG_BROWSABLE); in testBrowsableMediaItem()
38 assertEquals(description.toString(), mediaItem.getDescription().toString()); in testBrowsableMediaItem()
49 assertEquals(description.toString(), in testBrowsableMediaItem()
55 MediaDescription description = new MediaDescription.Builder() in testPlayableMediaItem() local
58 MediaItem mediaItem = new MediaItem(description, MediaItem.FLAG_PLAYABLE); in testPlayableMediaItem()
60 assertEquals(description.toString(), mediaItem.getDescription().toString()); in testPlayableMediaItem()
71 assertEquals(description.toString(), in testPlayableMediaItem()
/cts/tests/expectations/
Dknownfailures.txt3 description: "some AlarmClockTests are not robust across different device types",
12 description: "the UsageStats is not yet stable enough",
19 description: "tests a fragile by nature as they rely on hardcoded behavior",
27 description: "test fails on devices with no telephony",
34 description: "test fails on some devices",
42description: "the SSLCertificateSocketFactoryTest often fails because of lack of live internet or …
52description: "the test result are too much dependent on live-internet connection, which for some d…
59 description: "AudioPolicyBinder tests are not yet robust enough",
66 description: "test not robust",
74 description: "tests too flaky",
[all …]
Dunsupportedabis.txt3 description: "Tests not supporting: arm64-v8a, x86_64, mips64",
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsTestActivity.java177 public void testRunStarted(Description description) throws Exception { in testRunStarted() argument
187 public void testStarted(Description description) throws Exception { in testStarted() argument
189 getTestLogger().logTestStart(description.getMethodName()); in testStarted()
192 public void testFinished(Description description) throws Exception { in testFinished() argument
194 getTestLogger().logTestPass(description.getMethodName(), null /* testSummary */); in testFinished()
210 public void testIgnored(Description description) throws Exception { in testIgnored() argument
212 getTestLogger().logTestSkip(description.getMethodName(), description.toString()); in testIgnored()
/cts/tests/tests/drm/src/android/drm/cts/
DDrmSupportInfoTest.java91 private static void checkSetAndGetDescription(String description) throws Exception { in checkSetAndGetDescription() argument
93 info.setDescription(description); in checkSetAndGetDescription()
94 assertEquals(info.getDescriprition(), description); in checkSetAndGetDescription() local
97 private static void checkSetInvalidDescription(String description) throws Exception { in checkSetInvalidDescription() argument
100 info.setDescription(description); in checkSetInvalidDescription()
101 fail("Description '" + description + "' was accepted for DrmSupportInfo"); in checkSetInvalidDescription()
/cts/tests/leanbackjank/app/src/android/cts/jank/leanback/data/
DVideoProvider.java53 String description = "This is description of a movie."; in buildMedia() local
56 Movie movie = buildMovieInfo(category_name, title, description, studio); in buildMedia()
67 String description, in buildMovieInfo() argument
73 movie.setDescription(description); in buildMovieInfo()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DCtsTest.java99 @Option(name = PLAN_OPTION, description = "the test plan to run.",
103 @Option(name = PACKAGE_OPTION, shortName = 'p', description = "the test packages(s) to run.",
107 @Option(name = "exclude-package", description = "the test packages(s) to exclude from the run.")
110 @Option(name = CLASS_OPTION, shortName = 'c', description = "run a specific test class.",
115 description = "run a specific test method, from given --class.",
119 @Option(name = TEST_OPTION, shortName = 't', description = "run a specific test",
124 description = "continue a previous test session.",
128 @Option(name = "skip-device-info", shortName = 'd', description =
134 @Option(name = "resume", description =
138 @Option(name = "shards", description =
[all …]
/cts/tests/core/runner/src/com/android/cts/runner/
DCtsTestRunListener.java67 public void testRunStarted(Description description) throws Exception { in testRunStarted() argument
92 public void testStarted(Description description) throws Exception { in testStarted() argument
93 if (description.getTestClass() != lastClass) { in testStarted()
94 lastClass = description.getTestClass(); in testStarted()
95 printMemory(description.getTestClass()); in testStarted()
102 public void testFinished(Description description) { in testFinished() argument
/cts/tests/tests/content/src/android/content/cts/
DClipboardManagerTest.java180 private void assertClipDescription(ClipDescription description, String expectedLabel, in assertClipDescription() argument
182 assertEquals(expectedLabel, description.getLabel()); in assertClipDescription()
183 assertEquals(mimeTypes.length, description.getMimeTypeCount()); in assertClipDescription()
184 int mimeTypeCount = description.getMimeTypeCount(); in assertClipDescription()
186 assertEquals(mimeTypes[i], description.getMimeType(i)); in assertClipDescription()
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
DInMatcher.java57 public void describeTo(Description description) { in describeTo() argument
58 description.appendText("in(").appendValue(mValues).appendText(")"); in describeTo()
/cts/tests/leanbackjank/app/src/android/cts/jank/leanback/model/
DMovie.java76 public void setDescription(String description) { in setDescription() argument
77 mDescription = description; in setDescription()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DPlanCreator.java48 @Option (name = "plan", shortName = 'p', description = "the name of the plan to create",
52 @Option (name = "session", shortName = 's', description = "the session id to derive from",
57 description = "the result type to filter. One of pass, fail, notExecuted.",
DCtsXmlResultReporter.java78 @Option(name = "quiet-output", description = "Mute display of test results.")
82 @Option(name=REPORT_DIR_NAME, description="root file system path to directory to store xml " +
88 @Option(name = CtsTest.PLAN_OPTION, description = "the test plan to run.")
92 @Option(name = CtsTest.CONTINUE_OPTION, description = "the test result session to continue.")
95 @Option(name = "result-server", description = "Server to publish test results.")
98 @Option(name = "include-test-log-tags", description = "Include test log tags in XML report.")
101 @Option(name = "use-log-saver", description = "Also saves generated result XML with log saver")
/cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
DCtsUiAutomatorTest.java476 UiSelector mainLayout = new UiSelector().description("Widgets Collection"); in testSelectorFocusable()
517 UiSelector mainLayout = new UiSelector().description("Widgets Collection"); in testSelectorEnabled()
535 new UiSelector().description("Widgets Collection")); in testCollectionCount()
551 new UiSelector().description("Widgets Collection")); in testCollectionGetChildByText()
569 new UiSelector().description("Widgets Collection")); in testCollectionGetChildByInstance()
588 new UiSelector().description("Widgets Collection")); in testCollectionGetChildByDescription()
801 new UiSelector().description("Details View")); in testPinchOut()
855 new UiSelector().description("Details View")); in testPinchIn()
906 UiObject imageButton = new UiObject(new UiSelector().description("Image button")); in testDragToObject()
943 UiObject imageButton = new UiObject(new UiSelector().description("Image button")); in testDragToCoordinates()
[all …]
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
DXmlGenerator.java254 String description = expectation.getDescription(); in removeUnsupportedAbis() local
255 if (description.isEmpty()) { in removeUnsupportedAbis()
259 String[] unsupportedAbis = description.split(":")[1].split(","); in removeUnsupportedAbis()
264 String.format("Unrecognised ABI %s in %s", abi, description)); in removeUnsupportedAbis()
/cts/tools/utils/
DDescriptionGenerator.java600 String description = av.toString(); in getAnnotationDescription() local
602 description = description.substring(1, description.length() -1); in getAnnotationDescription()
603 return description; in getAnnotationDescription()
653 TestMethod(String name, String description, String controller, Set<String> abis, in TestMethod() argument
659 mDescription = description; in TestMethod()
DVogarUtils.java60 String description = expectation.getDescription(); in isVogarKnownFailure() local
61 boolean foundAbi = AbiUtils.parseAbiList(description).size() > 0; in isVogarKnownFailure()
/cts/build/
Dtest_gtest_package.mk39 $(hide) echo Generating test description for wrapped native package $(PRIVATE_EXECUTABLE)
Dtest_target_java_library.mk38 $(hide) echo Generating test description for target library $(PRIVATE_LIBRARY)
Dtest_deqp_package.mk27 $(hide) echo Generating test description for $(PRIVATE_TEST_NAME)
Dtest_host_java_library.mk39 $(hide) echo Generating test description for host library $(PRIVATE_LIBRARY)
/cts/tools/tradefed-host/src/com/android/cts/tradefed/build/
DCtsBuildProvider.java31 @Option(name="cts-install-path", description="the path to the cts installation to use")

123