/cts/tools/signature-tools/src/signature/converter/dex/ |
H A D | IClassInitializer.java | 22 IClassDefinition initializeClass(String packageName, String className); argument
|
H A D | DexToSigConverter.java | 293 String className = getClassName(dexClass.getName()); 294 SigClassDefinition sigClass = factory.getClass(packageName, className); 738 String className = getClassName(exTypeName); 740 .getClassReference(packageName, className)); 776 // String className = getClassName(exTypeName); 777 // exceptions.add(factory.getClass(packageName, className)); 815 String className = getClassName(dexAnnotation.getTypeName()); 817 .setType(factory.getClassReference(packageName, className)); 891 String className = getClassName(annotation.getTypeName()); 893 className)); 932 initializeClass(String packageName, String className) argument [all...] |
H A D | DexUtil.java | 109 private static String removeHeadingL(String className) { argument 110 assert className.startsWith("L"); 111 return className.substring(1); 114 private static String removeTrailingSemicolon(String className) { argument 115 assert className.endsWith(";"); 116 return className.substring(0, className.length() - 1); 119 public static String getDexName(String packageName, String className) { argument 121 + className.replace('.', '$') + ";";
|
/cts/tests/tests/performance/src/android/performance/cts/ |
H A D | MultiAppStartupTest.java | 29 private Intent buildIntent(final String pkgName, String className, boolean isMain) { argument 30 final String fullClassName = pkgName + "." + className; 41 private void launchActivity(final String pkgName, String className, boolean isMain) { argument 43 ctx.startActivity(buildIntent(pkgName, className, isMain));
|
/cts/tests/tests/performance2/src/android/performance2/cts/ |
H A D | AppStartup.java | 29 private Intent buildIntent(final String pkgName, String className) { argument 30 final String fullClassName = pkgName + "." + className;
|
/cts/tests/tests/performance3/src/android/performance3/cts/ |
H A D | AppStartup.java | 30 private Intent buildIntent(final String pkgName, String className) { argument 31 final String fullClassName = pkgName + "." + className;
|
/cts/tests/tests/performance4/src/android/performance4/cts/ |
H A D | AppStartup.java | 29 private Intent buildIntent(final String pkgName, String className) { argument 30 final String fullClassName = pkgName + "." + className;
|
/cts/tests/tests/performance5/src/android/performance5/cts/ |
H A D | AppStartup.java | 29 private Intent buildIntent(final String pkgName, String className) { argument 30 final String fullClassName = pkgName + "." + className;
|
/cts/tools/dex-tools/test/dex/reader/util/ |
H A D | SpecialJavaFileManager.java | 54 public MemoryByteCode getMemoryByteCode(String className) { argument 55 return store.get(className);
|
/cts/tools/host/src/com/android/cts/ |
H A D | TestController.java | 30 final String className, final String methodName) { 33 mClassName = className; 29 TestController(final String jarPath, final String packageName, final String className, final String methodName) argument
|
/cts/tests/tests/provider/src/android/provider/cts/ |
H A D | BrowserTest.java | 590 private boolean isRunning(String className) { argument 599 if (className.equals(info.topActivity.getClassName())) { 606 private void assertStarted(String className, long timeout) { argument 614 if (isRunning(className)) {
|
/cts/tools/dex-tools/test/dex/reader/ |
H A D | DexTestsCommon.java | 93 protected DexClass getClass(DexFile file, String className) { argument 95 assertNotNull(className); 97 if(className.equals(clazz.getName())){ 101 fail("Class: " + className +" not present in file: " + file.getName()); 102 throw new IllegalArgumentException("Class: " + className +" not present in file: " + file.getName());
|
/cts/tools/signature-tools/src/signature/model/util/ |
H A D | ITypeFactory.java | 39 public SigClassDefinition getClass(String packageName, String className); argument 42 String className); 41 getClassReference(String packageName, String className) argument
|
H A D | TypePool.java | 55 public SigClassDefinition getClass(String packageName, String className) { argument 56 String key = packageName + "<>" + className; 59 clazz = new SigClassDefinition(packageName, className); 66 String className) { 67 return new SigClassReference(getClass(packageName, className)); 65 getClassReference(String packageName, String className) argument
|
/cts/tests/tests/media/src/android/media/cts/ |
H A D | MediaScannerConnectionTest.java | 189 public void onServiceConnected(ComponentName className, IBinder service) { argument 190 super.onServiceConnected(className, service); 195 public void onServiceDisconnected(ComponentName className) { argument 196 super.onServiceDisconnected(className);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
H A D | TestListAdapter.java | 97 final String className; field in class:TestListAdapter.TestListItem 102 static TestListItem newTest(String title, String className, Intent intent) { argument 103 return new TestListItem(title, className, intent); 110 private TestListItem(String title, String className, Intent intent) { argument 112 this.className = className; 170 String className = info.activityInfo.name; 173 addTestToCategory(testsByCategory, testCategory, title, className, intent); 206 String testCategory, String title, String className, Intent intent) { 214 tests.add(TestListItem.newTest(title, className, inten 205 addTestToCategory(Map<String, List<TestListItem>> testsByCategory, String testCategory, String title, String className, Intent intent) argument [all...] |
/cts/tests/SignatureTest/src/android/tests/sigtest/ |
H A D | SignatureTest.java | 182 * @param className of the class being examined which will be shown in error messages 186 private JDiffField loadFieldInfo(String className, XmlPullParser parser) { argument 189 int modifier = jdiffModifierToReflectionFormat(className, parser); 196 * @param className of the class being examined which will be shown in error messages 200 private JDiffMethod loadMethodInfo(String className, XmlPullParser parser) { argument 203 int modifier = jdiffModifierToReflectionFormat(className, parser); 232 String className = parser.getAttributeValue(null, ATTRIBUTE_NAME); 234 className, 236 currentClass.setModifier(jdiffModifierToReflectionFormat(className, parser));
|
H A D | JDiffClassDescription.java | 80 * @param className the name of the class. 82 public JDiffClassDescription(String pkg, String className) { argument 83 this(pkg, className, new ResultObserver() { 97 * @param className the name of the class. 101 String className, 104 mShortClassName = className; 256 * @param className The specified class name. 259 public String toReadableString(String className) { argument 260 return className + "#" + mName + "(" + mFieldType + ")"; 327 * @param className Th 100 JDiffClassDescription(String pkg, String className, ResultObserver resultObserver) argument 330 toReadableString(String className) argument [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
H A D | JarHostTest.java | 216 * @param className 220 private Test loadTest(String className, String testName) { argument 223 Class<?> testClass = loadClass(className, urls); 234 className, mJarFile.getAbsolutePath())); 237 reportLoadError(mJarFile, className, e); 239 reportLoadError(mJarFile, className, e); 241 reportLoadError(mJarFile, className, e); 243 reportLoadError(mJarFile, className, e); 253 * @param className 258 Class<?> loadClass(String className, UR argument 264 reportLoadError(File jarFile, String className, Exception e) argument [all...] |
/cts/tools/dx-tests/lib/ |
H A D | junit.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |
/cts/tools/utils/lib/ |
H A D | junit.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |
/cts/tools/vm-tests/lib/ |
H A D | junit.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ... |
/cts/tools/signature-tools/lib/ |
H A D | antlr-2.7.7.jar | META-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement.java package antlr ... |