HomeSort by relevance Sort by last modified time
    Searched refs:codename (Results 1 - 4 of 4) sorted by null

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
AndroidVersion.java 43 private static final String PROP_CODENAME = "AndroidVersion.CodeName"; //$NON-NLS-1$
61 * Creates an {@link AndroidVersion} with the given api level and codename.
62 * Codename should be null for a release version, otherwise it's a preview codename.
64 public AndroidVersion(int apiLevel, String codename) {
66 mCodename = codename;
123 * codename if applicable.
133 * <p/>If the codename is non null, then the API level should be ignored, and this should be
236 // there may be some collisions between the hashcode of the codename and the api level
254 private int compareTo(int apiLevel, String codename) {
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
DocPackage.java 52 String codeName = XmlParserUtils.getXmlString(packageNode, SdkRepository.NODE_CODENAME);
53 if (codeName.length() == 0) {
54 codeName = null;
56 mVersion = new AndroidVersion(apiLevel, codeName);
69 String codename,
86 mVersion = new AndroidVersion(props, apiLevel, codename);
175 * What makes this more complex is handling codename.
192 // the new doc is an update if the api level is higher (no matter the codename on either)
197 // Check if they're the same exact (api and codename)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PreCompilerBuilder.java 370 // it's ok, it means minSdkVersion contains a (hopefully) valid codename.
379 String codename = projectVersion.getCodename(); local
380 if (codename != null) {
384 codename, AndroidManifest.ATTRIBUTE_MIN_SDK_VERSION);
409 // looks like the min sdk is a codename, check it matches the codename
411 String codename = projectVersion.getCodename(); local
412 if (codename == null) {
421 } else if (codename.equals(minSdkVersion) == false) {
424 "Value of manifest attribute '%1$s' does not match platform codename '%2$s'"
435 String codename = projectTarget.getVersion().getCodename(); local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java 6033 String codename = dis.readUTF(); local
    [all...]

Completed in 804 milliseconds