HomeSort by relevance Sort by last modified time
    Searched refs:TestClass (Results 26 - 50 of 108) sorted by null

12 3 4 5

  /external/stlport/test/eh/
test_hash_map.cpp 18 #include "TestClass.h"
31 template struct pair<const TestClass, TestClass>;
32 template struct __hashtable_node<pair<const TestClass, TestClass> >;
33 template class hash_map<TestClass, TestClass, ThrowHash, ThrowEqual>;
34 template class hash_multimap<TestClass, TestClass, ThrowHash, ThrowEqual>;
37 typedef EH_STD::__hash_multimap__<TestClass, TestClass, ThrowHash, ThrowEqual
    [all...]
test_map.cpp 17 #include "TestClass.h"
48 typedef EH_STD::__multimap__<TestClass, TestClass, ThrowCompare, eh_allocator(TestClass) > TestMultiMap;
86 typedef EH_STD::__map__<TestClass, TestClass, ThrowCompare, eh_allocator(TestClass) > TestMap;
test_list.cpp 17 #include "TestClass.h"
31 typedef EH_STD::__list__<TestClass, eh_allocator(TestClass) > TestList;
71 TestClass x;
73 testList2.push_back( TestClass() );
85 TestClass *insFirst = new TestList::value_type[1+insCnt];
test_hash_set.cpp 22 #include "TestClass.h"
32 typedef EH_STD::__hash_multiset__<TestClass, ThrowHash, ThrowEqual,
33 eh_allocator(TestClass) > TestMultiSet;
80 typedef EH_STD::__hash_set__<TestClass, ThrowHash, ThrowEqual, eh_allocator(TestClass) > TestSet;
test_set.cpp 17 #include "TestClass.h"
34 typedef EH_STD::__multiset__<TestClass, ThrowCompare, eh_allocator(TestClass) > TestMultiSet;
68 typedef EH_STD::__set__<TestClass, ThrowCompare, eh_allocator(TestClass) > TestSet;
test_valarray.cpp 22 #include "TestClass.h"
30 typedef __valarray__<TestClass, eh_allocator(TestClass) > TestValarray;
cray.mak 9 AUX_LIST=TestClass.o main.o nc_alloc.o random_number.o
  /external/icu4c/test/intltest/
itformat.cpp 59 #define TESTCLASS(id, TestClass) \
61 name = #TestClass; \
63 logln(#TestClass " test---"); \
65 TestClass test; \
88 TESTCLASS(0,IntlTestDateFormat);
89 TESTCLASS(1,IntlTestNumberFormat);
90 TESTCLASS(2,CalendarTest);
91 TESTCLASS(3,CalendarLimitTest);
92 TESTCLASS(4,TimeZoneTest)
    [all...]
  /external/junit/src/org/junit/internal/runners/
ClassRoadie.java 21 private TestClass fTestClass;
25 public ClassRoadie(RunNotifier notifier, TestClass testClass,
28 fTestClass= testClass;
TestMethod.java 22 private TestClass fTestClass;
24 public TestMethod(Method method, TestClass testClass) {
26 fTestClass= testClass;
MethodValidator.java 26 private TestClass fTestClass;
28 public MethodValidator(TestClass testClass) {
29 fTestClass = testClass;
JUnit4ClassRunner.java 32 private TestClass fTestClass;
35 fTestClass= new TestClass(klass);
142 protected TestClass getTestClass() {
TestClass.java 22 public class TestClass {
25 public TestClass(Class<?> klass) {
80 private List<Class<?>> getSuperClasses(Class< ?> testClass) {
82 Class<?> current= testClass;
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
AccessibleObjectTest.java 33 public class TestClass {
40 public class SubTestClass extends TestClass{
96 AccessibleObject ao = TestClass.class.getField("aField");
112 AccessibleObject ao = TestClass.class.getField("aField");
127 AccessibleObject ao = TestClass.class.getField("aField");
  /external/junit/src/org/junit/runners/
Parameterized.java 18 import org.junit.runners.model.TestClass;
147 private List<Object[]> getParametersList(TestClass klass)
153 private FrameworkMethod getParametersMethod(TestClass testClass)
155 List<FrameworkMethod> methods= testClass
164 + testClass.getName());
  /external/junit/src/org/junit/experimental/theories/internal/
Assignments.java 15 import org.junit.runners.model.TestClass;
26 private final TestClass fClass;
29 List<ParameterSignature> unassigned, TestClass testClass) {
32 fClass= testClass;
40 TestClass testClass) throws Exception {
42 signatures= ParameterSignature.signatures(testClass
46 signatures, testClass);
AllMembersSupplier.java 18 import org.junit.runners.model.TestClass;
53 private final TestClass fClass;
58 public AllMembersSupplier(TestClass type) {
  /external/junit/src/org/junit/internal/runners/rules/
RuleFieldValidator.java 10 import org.junit.runners.model.TestClass;
14 * {@link org.junit.runners.model.TestClass}. All reasons for rejecting the
15 * {@code TestClass} are written to a list of errors.
42 * Validate the {@link org.junit.runners.model.TestClass} and adds reasons
44 * @param target the {@code TestClass} to validate.
47 public void validate(TestClass target, List<Throwable> errors) {
  /cts/tools/utils/
CollectAllTests.java 186 Map<String,TestClass> testCases = new LinkedHashMap<String, TestClass>();
242 for (Iterator<TestClass> iterator = testCases.values().iterator(); iterator.hasNext();) {
243 TestClass type = iterator.next();
317 private static String getKnownFailure(final Class<? extends TestCase> testClass,
319 return getAnnotation(testClass, testName, KNOWN_FAILURE);
322 private static boolean isKnownFailure(final Class<? extends TestCase> testClass,
324 return getAnnotation(testClass, testName, KNOWN_FAILURE) != null;
327 private static boolean isBrokenTest(final Class<? extends TestCase> testClass,
329 return getAnnotation(testClass, testName, BROKEN_TEST) != null
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestDotTreeGenerator.cs 40 [TestClass]
TestFastLexer.cs 41 [TestClass]
  /external/junit/src/org/junit/experimental/theories/
Theories.java 21 import org.junit.runners.model.TestClass;
74 private TestClass fTestClass;
78 public TheoryAnchor(FrameworkMethod method, TestClass testClass) {
80 fTestClass= testClass;
83 private TestClass getTestClass() {
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 51 final String classNameLinkageError = packageName + ".TestClass";
159 public static class TestClass {
182 public TestClass() {
186 private TestClass(Object o) {
190 public static class SubTestClass extends TestClass {
662 TestClass.class.getDeclaredConstructor(String.class);
671 TestClass.class.getDeclaredField(null);
678 TestClass.class.getDeclaredField("NonExistentField");
687 TestClass.class.getDeclaredMethod(null, new Class[0]);
694 TestClass.class.getDeclaredMethod("NonExistentMethod", new Class[0])
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 542 template <class TestClass>
545 virtual Test* CreateTest() { return new TestClass; }
672 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
683 TestClass::SetUpTestCase,
684 TestClass::TearDownTestCase,
685 new TestFactoryImpl<TestClass>);
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/
T_invoke_static_13.d 32 invoke-static {v1}, dot/junit/opcodes/invoke_static/TestClass/test1(F)I

Completed in 379 milliseconds

12 3 4 5