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

1 2

  /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 141 testTag("only_in_Root", TRUE, FALSE, FALSE);
142 testTag("in_Root_te", TRUE, TRUE, FALSE);
143 testTag("in_Root_te_te_IN", TRUE, TRUE, TRUE);
144 testTag("in_Root_te_IN", TRUE, FALSE, TRUE);
145 testTag("only_in_te", FALSE, TRUE, FALSE);
146 testTag("only_in_te_IN", FALSE, FALSE, TRUE);
147 testTag("in_te_te_IN", FALSE, TRUE, TRUE);
148 testTag("nonexistent", FALSE, FALSE, FALSE);
237 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 347 public void setTestTag(String testTag) {
348 mTestTag = testTag;
  /tools/tradefederation/core/src/com/android/tradefed/build/
BuildInfo.java 73 * @param testTag the test tag name
79 public BuildInfo(String buildId, String testTag, String buildTargetName) {
81 mTestTag = testTag;
121 public void setTestTag(String testTag) {
122 mTestTag = testTag;
IBuildInfo.java 52 public void setTestTag(String testTag);
DeviceBuildInfo.java 49 public DeviceBuildInfo(String buildId, String testTag, String buildTargetName) {
50 super(buildId, testTag, buildTargetName);
OtaDeviceBuildInfo.java 87 public void setTestTag(String testTag) {
88 mBaselineBuild.setTestTag(testTag);
  /tools/tradefederation/core/src/com/android/tradefed/invoker/
InvocationContext.java 223 public void setTestTag(String testTag) {
224 mTestTag = testTag;
IInvocationContext.java 151 public void setTestTag(String testTag);
TestInvocation.java 239 String testTag = config.getCommandOptions().getTestTag();
241 testTag = String.format("%s-%s", testTag,
244 return testTag;
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
DirectiveTokenTest.java 46 public void 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/result/
CodeCoverageReporter.java 214 String testTag = mBuildInfo.getTestTag();
217 File testTagPath = new File(buildIdPath, testTag);
  /cts/tests/tests/location/src/android/location/cts/
TestMeasurementUtil.java 85 String testTag,
98 Log.w(testTag, "GPS feature not present on device, skipping GPS test.");
117 Log.i(testTag, "This device is reporting GNSS hardware from year "
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
SubprocessEventHelper.java 50 private static final String TEST_TAG_KEY = "testTag";
393 public InvocationStartedEventInfo(String testTag, Long startTime) {
394 mTestTag = testTag;
  /tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
TestInvocationTest.java     [all...]

Completed in 448 milliseconds

1 2