HomeSort by relevance Sort by last modified time
    Searched refs:testTag (Results 1 - 25 of 28) sorted by null

1 2

  /platform_testing/libraries/flicker/src/com/android/server/wm/flicker/monitor/
ScreenRecorder.java 44 static Path getPath(String testTag) {
45 return Paths.get(OUTPUT_DIR, testTag + ".mp4");
48 private static Path getPath(String testTag, int iteration) {
49 return Paths.get(OUTPUT_DIR, testTag + "_" + Integer.toString(iteration) + ".mp4");
73 public Path save(String testTag, int iteration) throws IOException {
74 return Files.move(DEFAULT_OUTPUT_PATH, getPath(testTag, iteration),
78 public Path save(String testTag) throws IOException {
79 return Files.move(DEFAULT_OUTPUT_PATH, getPath(testTag), REPLACE_EXISTING);
TraceMonitor.java 50 * Saves trace file to the external storage directory suffixing the name with the testtag
55 * @param testTag suffix added to trace name used to identify trace
59 public Path saveTraceFile(String testTag, int iteration) {
60 Path traceFileCopy = getOutputTraceFilePath(testTag, iteration);
68 Path getOutputTraceFilePath(String testTag, int iteration) {
69 return Paths.get(OUTPUT_DIR, traceFileName + "_" + testTag + "_" + iteration);
  /external/icu/icu4c/source/test/cintltst/
crestst.h 28 * Perform several extensive tests using the subtest routine testTag
48 UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);
creststn.h 42 *Perform several extensive tests using the subtest routine testTag
89 static UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);
crestst.c 142 testTag("only_in_Root", TRUE, FALSE, FALSE);
143 testTag("in_Root_te", TRUE, TRUE, FALSE);
144 testTag("in_Root_te_te_IN", TRUE, TRUE, TRUE);
145 testTag("in_Root_te_IN", TRUE, FALSE, TRUE);
146 testTag("only_in_te", FALSE, TRUE, FALSE);
147 testTag("only_in_te_IN", FALSE, FALSE, TRUE);
148 testTag("in_te_te_IN", FALSE, TRUE, TRUE);
149 testTag("nonexistent", FALSE, FALSE, FALSE);
238 UBool testTag(const char* frag,
    [all...]
creststn.c     [all...]
  /external/testng/src/main/java/org/testng/reporters/
JUnitReportReporter.java 91 List<TestTag> testCases = Lists.newArrayList();
98 TestTag testTag = new TestTag();
123 testTag.message = t.getMessage();
124 testTag.type = t.getClass().getName();
125 testTag.stackTrace = sw.toString();
126 testTag.errorTag = tr.getThrowable() instanceof AssertionError ? "failure" : "error";
130 testTag.properties = p2;
131 testCases.add(testTag);
    [all...]
  /external/icu/icu4c/source/test/intltest/
restest.h 25 * Perform several extensive tests using the subtest routine testTag
48 UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);
restsnew.h 25 * Perform several extensive tests using the subtest routine testTag
51 UBool testTag(const char* frag, UBool in_Root, UBool in_te, UBool in_te_IN);
restest.cpp 222 testTag("only_in_Root", TRUE, FALSE, FALSE);
223 testTag("only_in_te", FALSE, TRUE, FALSE);
224 testTag("only_in_te_IN", FALSE, FALSE, TRUE);
225 testTag("in_Root_te", TRUE, TRUE, FALSE);
226 testTag("in_Root_te_te_IN", TRUE, TRUE, TRUE);
227 testTag("in_Root_te_IN", TRUE, FALSE, TRUE);
228 testTag("in_te_te_IN", FALSE, TRUE, TRUE);
229 testTag("nonexistent", FALSE, FALSE, FALSE);
303 ResourceBundleTest::testTag(const char* frag,
restsnew.cpp 221 testTag("only_in_Root", TRUE, FALSE, FALSE);
222 testTag("only_in_te", FALSE, TRUE, FALSE);
223 testTag("only_in_te_IN", FALSE, FALSE, TRUE);
224 testTag("in_Root_te", TRUE, TRUE, FALSE);
225 testTag("in_Root_te_te_IN", TRUE, TRUE, TRUE);
226 testTag("in_Root_te_IN", TRUE, FALSE, TRUE);
227 testTag("in_te_te_IN", FALSE, TRUE, TRUE);
228 testTag("nonexistent", FALSE, FALSE, FALSE);
635 NewResourceBundleTest::testTag(const char* frag,
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/command/
ICommandOptions.java 86 * @param testTag
88 public void setTestTag(String testTag);
CommandOptions.java 372 public void setTestTag(String testTag) {
373 mTestTag = testTag;
  /tools/tradefederation/core/src/com/android/tradefed/build/
DeviceBuildInfo.java 50 public DeviceBuildInfo(String buildId, String testTag, String buildTargetName) {
51 super(buildId, testTag, buildTargetName);
BuildInfo.java 83 * @param testTag the test tag name
89 public BuildInfo(String buildId, String testTag, String buildTargetName) {
91 mTestTag = testTag;
131 public void setTestTag(String testTag) {
132 mTestTag = testTag;
IBuildInfo.java 61 public void setTestTag(String testTag);
OtaDeviceBuildInfo.java 90 public void setTestTag(String testTag) {
91 mBaselineBuild.setTestTag(testTag);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
DirectiveTokenTest.java 46 public void testTag() {
  /tools/tradefederation/core/src/com/android/tradefed/invoker/
IInvocationContext.java 166 public void setTestTag(String testTag);
InvocationContext.java 276 public void setTestTag(String testTag) {
277 mTestTag = testTag;
InvocationExecution.java 473 String testTag = config.getCommandOptions().getTestTag();
475 testTag =
476 String.format("%s-%s", testTag, config.getCommandOptions().getTestTagSuffix());
478 return testTag;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue10/
BasicDumpTest.java 28 public void testTag() {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue67/
NonAsciiCharsInClassNameTest.java 106 public void testTag() {
  /tools/tradefederation/core/src/com/android/tradefed/util/
SubprocessEventHelper.java 55 private static final String TEST_TAG_KEY = "testTag";
444 public InvocationStartedEventInfo(String testTag, Long startTime) {
445 mTestTag = testTag;
  /cts/tests/tests/location/src/android/location/cts/
TestMeasurementUtil.java 83 String testTag,
113 Log.i(testTag, "This device is reporting GNSS hardware from year "
    [all...]

Completed in 414 milliseconds

1 2