Searched refs:targetCode (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/content/pm/parsing/ |
D | FrameworkParsingPackageUtils.java | 364 @Nullable String targetCode, @NonNull String[] platformSdkCodenames, in computeTargetSdkVersion() argument 367 if (targetCode == null) { in computeTargetSdkVersion() 372 if (allowUnknownCodenames && UnboundedSdkLevel.isAtMost(targetCode)) { in computeTargetSdkVersion() 382 if (matchTargetCode(platformSdkCodenames, targetCode)) { in computeTargetSdkVersion() 389 "Requires development platform " + targetCode in computeTargetSdkVersion() 394 "Requires development platform " + targetCode in computeTargetSdkVersion() 429 @NonNull String targetCode) { in matchTargetCode() argument 431 final int targetCodeIdx = targetCode.indexOf('.'); in matchTargetCode() 433 targetCodeName = targetCode; in matchTargetCode() 435 targetCodeName = targetCode.substring(0, targetCodeIdx); in matchTargetCode()
|
D | ApkLiteParseUtils.java | 580 String targetCode = null; in parseApkLite() local 596 targetCode = targetSdkVersionString; in parseApkLite() 598 minCode = targetCode; in parseApkLite() 603 targetCode = minCode; in parseApkLite() 612 targetVer, targetCode, SDK_CODENAMES, input, in parseApkLite()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 2188 String targetCode = null; in parseBaseApkCommon() local 2205 targetCode = val.string.toString(); in parseBaseApkCommon() 2207 minCode = targetCode; in parseBaseApkCommon() 2215 targetCode = minCode; in parseBaseApkCommon() 2228 targetCode, SDK_CODENAMES, outError); in parseBaseApkCommon() 2576 @NonNull String targetCode) { in matchTargetCode() argument 2578 final int targetCodeIdx = targetCode.indexOf('.'); in matchTargetCode() 2580 targetCodeName = targetCode; in matchTargetCode() 2582 targetCodeName = targetCode.substring(0, targetCodeIdx); in matchTargetCode() 2618 @Nullable String targetCode, @NonNull String[] platformSdkCodenames, in computeTargetSdkVersion() argument [all …]
|
/frameworks/base/core/java/com/android/internal/pm/pkg/parsing/ |
D | ParsingPackageUtils.java | 1652 String targetCode = null; 1670 targetCode = val.string.toString(); 1672 minCode = targetCode; 1680 targetCode = minCode; 1692 .computeTargetSdkVersion(targetVers, targetCode, SDK_CODENAMES, input,
|