Searched refs:versionCode (Results 1 – 5 of 5) sorted by relevance
/tools/loganalysis/src/com/android/loganalysis/parser/ |
D | DumpsysPackageStatsParser.java | 46 String versionCode = null; in parse() local 53 versionCode = null; in parse() 59 versionCode = m.group(1); in parse() 65 if (packageName != null && versionCode != null) { in parse() 68 new AppVersionItem(Integer.parseInt(versionCode), versionName)); in parse()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | ITestDevice.java | 92 public final long versionCode; field in ITestDevice.ApexInfo 95 public ApexInfo(String name, long versionCode, String sourceDir) { in ApexInfo() argument 97 this.versionCode = versionCode; in ApexInfo() 101 public ApexInfo(String name, long versionCode) { in ApexInfo() argument 102 this(name, versionCode, ""); in ApexInfo() 109 return name.equals(ai.name) && versionCode == ai.versionCode; in equals() 125 + versionCode in toString()
|
/tools/loganalysis/src/com/android/loganalysis/item/ |
D | AppVersionItem.java | 39 public AppVersionItem(int versionCode, String versionName) { in AppVersionItem() argument 42 setAttribute(VERSION_CODE, versionCode); in AppVersionItem()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | InstallApexModuleTargetPreparer.java | 715 } else if (activatedApexInfo.get(testApexInfo.name).versionCode in getModulesFailToActivate() 716 != testApexInfo.versionCode) { in getModulesFailToActivate()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | TestDeviceTest.java | 2264 assertEquals(100, foo.versionCode); in testGetActiveApexesPlatformSupportsPath() 2265 assertEquals(200, bar.versionCode); in testGetActiveApexesPlatformSupportsPath() 2289 assertEquals(100, foo.versionCode); in testGetActiveApexesPlatformDoesNotSupportPath() 2290 assertEquals(200, bar.versionCode); in testGetActiveApexesPlatformDoesNotSupportPath()
|