Searched refs:constructor (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/junit/framework/
H A DTestSuite.java19 * TestSuite constructor.
23 * This constructor creates a suite with all the methods
59 addTest(warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()"));
120 Constructor constructor;
122 constructor= getTestConstructor(theClass);
124 return warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()");
128 if (constructor.getParameterTypes().length == 0) {
129 test= constructor.newInstance(new Object[0]);
133 test= constructor.newInstance(new Object[]{name});
138 return(warning("Exception in constructor
[all...]
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DOutput.java165 boolean constructor;
167 constructor = mref.getName().equals("<init>");
168 if (constructor) {
170 System.out.println(IN3 + "<constructor name=\"" +
182 if (constructor) {
183 System.out.println(IN3 + "</constructor>");
/dalvik/dexdump/
H A DDexDump.c1154 bool constructor = (name[0] == '<'); local
1156 if (constructor) {
1160 printf("<constructor name=\"%s\"\n", tmp);
1243 if (constructor)
1244 printf("</constructor>\n");

Completed in 117 milliseconds