Searched refs:theClass (Results 1 - 25 of 33) sorted by relevance

12

/external/hamcrest/src/org/hamcrest/core/
H A DIsInstanceOf.java15 private final Class<?> theClass; field in class:IsInstanceOf
20 * @param theClass The predicate evaluates to true for instances of this class
23 public IsInstanceOf(Class<?> theClass) { argument
24 this.theClass = theClass;
28 return theClass.isInstance(item);
33 .appendText(theClass.getName());
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_ClassLoader.java41 Class<?> theClass = null;
57 for (int i = 0; (i < theClassPaths.length) && (theClass == null); i++) {
60 theClass = loadClassFromJar(theClassPaths[i], className,
63 theClass = loadClassFromFile(theClassPaths[i], className,
68 return theClass;
80 Class<?> theClass;
82 theClass = findLoadedClass(className);
83 if (theClass != null) {
84 return theClass;
87 theClass
[all...]
H A DTestHelper_DriverManager.java102 Class<? extends Object> theClass = theObject.getClass();
103 ClassLoader theClassLoader = theClass.getClassLoader();
H A DDriverManagerTest.java125 Class<? extends Object> theClass = theObject.getClass();
126 ClassLoader theClassLoader = theClass.getClassLoader();
H A DSQLExceptionTest.java42 Class<?> theClass = Class.forName("java.sql.SQLException");
43 Field theField = theClass.getDeclaredField("serialVersionUID");
/external/junit/src/junit/extensions/
H A DActiveTestSuite.java20 public ActiveTestSuite(Class<? extends TestCase> theClass) { argument
21 super(theClass);
28 public ActiveTestSuite(Class<? extends TestCase> theClass, String name) { argument
29 super(theClass, name);
/external/junit/src/junit/framework/
H A DTestSuite.java51 static public Test createTest(Class<?> theClass, String name) { argument
54 constructor= getTestConstructor(theClass);
56 return warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()");
81 public static Constructor<?> getTestConstructor(Class<?> theClass) throws NoSuchMethodException { argument
83 return theClass.getConstructor(String.class);
87 return theClass.getConstructor(new Class[0]);
128 public TestSuite(final Class<?> theClass) { argument
129 addTestsFromTestCase(theClass);
132 private void addTestsFromTestCase(final Class<?> theClass) { argument
133 fName= theClass
161 TestSuite(Class<? extends TestCase> theClass, String name) argument
284 addTestMethod(Method m, List<String> names, Class<?> theClass) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DRobolectricClassLoader.java57 Class<?> theClass;
59 theClass = super.loadClass(name);
61 theClass = getParent().loadClass(name);
64 return theClass;
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingTestCase.java123 protected static <T> void callAllPublicMethods(Class<T> theClass, T object) argument
125 for (Method method : theClass.getMethods()) {
/external/chromium_org/content/shell/tools/plugin/
H A DTestObject.cpp48 static NPObject* testAllocate(NPP npp, NPClass* theClass);
100 static NPObject* testAllocate(NPP npp, NPClass* /*theClass*/) {
H A DPluginObject.cpp1346 static NPObject* pluginAllocate(NPP npp, NPClass* theClass) { argument
/external/dexmaker/lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit3.8.2/ junit/awtui/ junit/extensions/ junit/framework/ ...
/external/owasp/sanitizer/lib/junit/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
H A Djunit-dep.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/clang/lib/CodeGen/
H A DCGVTables.cpp692 void CodeGenModule::EmitVTable(CXXRecordDecl *theClass, bool isRequired) { argument
695 VTables.GenerateClassData(theClass);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/chromium_org/ui/gfx/win/
H A Dmsg_util.h27 #define CR_BEGIN_MSG_MAP_EX(theClass) \
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 6246 milliseconds

12