HomeSort by relevance Sort by last modified time
    Searched defs:testName (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/icu4c/tools/ctestfw/unicode/
testlog.h 34 testClass(callingTestClass), testName(callingTestName) {}
43 const char *const testName;
tstdtmod.h 36 const char* testName;
  /external/stlport/test/unit/cppunit/
test_main.cpp 78 const char *testName = "";
85 testName = argv[i]+3;
117 num_errors = CPPUNIT_NS::TestCase::run(reporter, testName);
  /external/webkit/Tools/TestWebKitAPI/
InjectedBundleController.cpp 67 WKStringRef testName = static_cast<WKStringRef>(WKDictionaryGetItemForKey(initializationDictionary, WKStringCreateWithUTF8CString("TestName")));
70 initializeTestNamed(bundle, Util::toSTD(testName), userData);
  /frameworks/base/tests/CoreTests/android/core/
TestWebData.java 112 testName = name;
124 public String testName;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodecdatasectionnodetype.java 72 Element testName;
77 testName = (Element) elementList.item(1);
78 cdataNode = testName.getLastChild();
elementnormalize.java 68 Element testName;
75 testName = (Element) elementList.item(2);
76 firstChild = testName.getFirstChild();
hc_elementnormalize.java 62 Element testName;
69 testName = (Element) elementList.item(0);
71 retNode = testName.appendChild(textNode);
73 retNode = testName.appendChild(textNode);
77 testName = (Element) elementList.item(0);
78 firstChild = testName.getFirstChild();
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
test_main.cpp 78 const char *testName = "";
85 testName = argv[i]+3;
117 num_errors = CPPUNIT_NS::TestCase::run(reporter, testName);
  /ndk/tests/device/test-stlport/unit/cppunit/
test_main.cpp 78 const char *testName = "";
85 testName = argv[i]+3;
117 num_errors = CPPUNIT_NS::TestCase::run(reporter, testName);
  /development/tools/apkcheck/src/com/android/apkcheck/
TypeUtils.java 226 String testName = typeName.substring(0, nextDot);
227 if (apiList.getPackage(testName) != null) {
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverPropertyInfoTest.java 56 static String validName = "testname";
80 assertEquals(testName, aDriverPropertyInfo.name);
105 static java.lang.String testName = validName;
  /external/icu4c/test/cintltst/
stdnmtst.c 173 const char *enumName, *testName;
193 testName = expected[idx];
194 if (uprv_strcmp(enumName, testName) != 0 || U_FAILURE(err)
198 idx, enumName, testName, len, u_errorName(err));
244 UChar testName[256];
247 u_uastrncpy(testName, expected[idx], sizeof(testName)/sizeof(testName[0]));
248 if (u_strcmp(enumName, testName) != 0 || U_FAILURE(err)
252 idx, enumName, testName, len, u_errorName(err))
    [all...]
idnatest.c 73 testAPI(const UChar* src, const UChar* expected, const char* testName,
106 log_err( "%s null terminated source failed. Requires destCapacity > 300\n",testName);
111 log_err_status(status, "Did not get the expected error for %s null terminated source failed. Expected: %s Got: %s\n",testName, u_errorName(expectedStatus), u_errorName(status));
125 log_err("Did not get the expected result for %s null terminated source with both options set.\n",testName);
129 log_err( "%s null terminated source failed. Requires destCapacity > 300\n",testName);
134 log_err( "Did not get the expected error for %s null terminated source with options set. Expected: %s Got: %s\n",testName, u_errorName(expectedStatus), u_errorName(status));
149 log_err("Did not get the expected result for %s with source length.\n",testName);
152 log_err( "%s with source length failed. Requires destCapacity > 300\n",testName);
157 log_err( "Did not get the expected error for %s with source length. Expected: %s Got: %s\n",testName, u_errorName(expectedStatus), u_errorName(status));
171 log_err("Did not get the expected result for %s with source length and both options set.\n",testName);
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
ListTestCaseNames.java 51 String testName = ((TestCase) test).getName();
52 testNames.add(new TestDescriptor(className, testName));
67 public TestDescriptor(String className, String testName) {
69 mTestName = testName;
InstrumentationTestSuiteBuilderTest.java 81 errors.add(testName(test));
85 failures.add(testName(test));
92 testsSeen.add(testName(test));
95 public boolean saw(String testName) {
96 return testsSeen.contains(testName);
99 public boolean failed(String testName) {
100 return failures.contains(testName);
103 public boolean errored(String testName) {
104 return errors.contains(testName);
107 public boolean passed(String testName) {
    [all...]
UnitTestSuiteBuilderTest.java 74 errors.add(testName(test));
78 failures.add(testName(test));
85 testsSeen.add(testName(test));
88 public boolean saw(String testName) {
89 return testsSeen.contains(testName);
92 public boolean failed(String testName) {
93 return failures.contains(testName);
96 public boolean errored(String testName) {
97 return errors.contains(testName);
100 public boolean passed(String testName) {
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestWebData.java 91 testName = name;
105 testName = file.getName();
149 public String testName;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ManifestTestListAdapter.java 152 String testName = info.activityInfo.name;
155 TestListItem item = TestListItem.newTest(title, testName, intent, requiredFeatures);
TestListAdapter.java 78 final String testName;
86 public static TestListItem newTest(Context context, int titleResId, String testName,
88 return newTest(context.getString(titleResId), testName, intent, requiredFeatures);
91 public static TestListItem newTest(String title, String testName, Intent intent,
93 return new TestListItem(title, testName, intent, requiredFeatures);
104 private TestListItem(String title, String testName, Intent intent,
107 this.testName = testName;
192 String testName = cursor.getString(1);
195 results.put(testName, testResult)
    [all...]
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
AbstractCharsetTestCase.java 93 public void testName() {
CharsetTest.java 420 public void testName() {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 29 public void testName() throws NoSuchMethodException {
  /sdk/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/
RemoteAndroidTestRunnerTest.java 75 final String testName = "fooTest";
76 mRunner.setMethodName(className, testName);
78 testName));
  /frameworks/base/core/java/android/app/
ApplicationThreadNative.java 260 ComponentName testName = (data.readInt() != 0)
277 providers, testName, profileName, profileFd, autoStopProfiler,
815 List<ProviderInfo> providers, ComponentName testName, String profileName,
825 if (testName == null) {
829 testName.writeToParcel(data, 0);
    [all...]

Completed in 920 milliseconds

1 2 3