HomeSort by relevance Sort by last modified time
    Searched refs:VERSION (Results 1 - 25 of 1890) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ppp/pppd/
patchlevel.h 1 #define VERSION "2.4.7"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
versionbug.s 3 .VERSION "abc123"
  /external/syslinux/utils/
isohybrid.h 10 * Foundation; either version 2 of the license, or (at your option) any later
11 * version.
23 #define VERSION "0.12"
  /frameworks/support/compat/java/android/support/v4/os/
BuildCompat.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
19 import android.os.Build.VERSION;
22 * This class contains additional platform version checking methods for targeting pre-release
39 return VERSION.SDK_INT >= 24;
52 return VERSION.SDK_INT >= 25;
56 * Checks if the device is running on a pre-release version of Android O or newer.
65 return VERSION.SDK_INT >= 26;
69 * Checks if the device is running on a pre-release version of Android O MR1 or newer.
78 return VERSION.SDK_INT >= 27;
82 * Checks if the device is running on a pre-release version of Android P or newer
    [all...]
  /dalvik/dx/src/com/android/dx/
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 * Version number for dx.
22 public class Version {
23 /** {@code non-null;} version string */
24 public static final String VERSION = "1.14";
  /external/objenesis/main/src/test/java/android/os/
Build.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
25 public static class VERSION {
  /external/syslinux/bios/
version.h 1 #define VERSION 6.03
  /external/syslinux/efi32/
version.h 1 #define VERSION 6.03
  /external/syslinux/efi64/
version.h 1 #define VERSION 6.03
  /tools/tradefederation/core/src/com/android/tradefed/build/
BuildSerializedVersion.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 * Class that contains the current serialization version of all {@link IBuildInfo}. This allows to
21 * synchronize all the build info version of serialization and update them all together if a non
25 public static final long VERSION = 1L;
  /external/vboot_reference/scripts/image_signing/
resign_kernel_partition.sh 19 echo "usage: $0 src_kpart dst_vblock kernel_datakey kernel_keyblock [version]"
31 VERSION=$5
33 if [ -z $VERSION ]; then
34 VERSION=1
36 echo "Using kernel version: $VERSION"
42 --version "${VERSION}" \
resign_firmwarefd.sh 27 VERSION=$8
39 [ -n "$VERSION" ] && VERSION="--version $VERSION"
50 $VERSION \
resign_image.sh 7 # Standalone version of cros_resign_image.sh script from
20 echo "usage: $PROG src_bin dst_bin kernel_datakey kernel_keyblock [version]"
35 VERSION=$5
37 if [ -z $VERSION ]; then
38 VERSION=1
40 echo "Using kernel version: $VERSION"
49 --version "${VERSION}" \
  /external/iptables/
release.sh 5 VERSION=1.4.7
8 IPTDIR="$TMPDIR/iptables-$VERSION"
10 PATCH="patch-iptables-$PREV_VERSION-$VERSION.bz2";
11 TARBALL="iptables-$VERSION.tar.bz2";
12 CHANGELOG="changes-iptables-$PREV_VERSION-$VERSION.txt";
15 git shortlog "v$PREV_VERSION..v$VERSION" > "$TMPDIR/$CHANGELOG"
16 git diff "v$PREV_VERSION..v$VERSION" | bzip2 > "$TMPDIR/$PATCH"
17 git archive --prefix="iptables-$VERSION/" "v$VERSION" | tar -xC "$TMPDIR/"
24 tar -cjf "$TARBALL" "iptables-$VERSION";
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/compat/
SdkVersionOverride.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
19 import android.os.Build.VERSION;
22 * Class used to override the current sdk version to test specific branches of compatibility
24 * calling {@link VERSION#SDK_INT}. This allows the sdk version to be forced to a specific value.
36 * Gets the sdk version
38 * @param overrideVersion the version to attempt using
40 * otherwise the current version
43 return ALLOW_OVERRIDE_VERSION ? overrideVersion : VERSION.SDK_INT;
  /packages/apps/Dialer/java/com/android/dialer/compat/
SdkVersionOverride.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
19 import android.os.Build.VERSION;
22 * Class used to override the current sdk version to test specific branches of compatibility logic.
24 * VERSION#SDK_INT}. This allows the sdk version to be forced to a specific value.
34 * Gets the sdk version
36 * @param overrideVersion the version to attempt using
38 * otherwise the current version
41 return ALLOW_OVERRIDE_VERSION ? overrideVersion : VERSION.SDK_INT;
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
ApiLevelUtil.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
28 public static boolean isBefore(int version) {
29 return Build.VERSION.SDK_INT < version;
32 public static boolean isBefore(String version) {
33 return Build.VERSION.SDK_INT < resolveVersionString(version);
36 public static boolean isAfter(int version) {
37 return Build.VERSION.SDK_INT > version;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
BuildCompatUtils.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
26 private static final boolean IS_RELEASE_BUILD = Build.VERSION.CODENAME.equals("REL");
29 * The "effective" API version.
30 * {@link android.os.Build.VERSION#SDK_INT} if the platform is a release build.
31 * {@link android.os.Build.VERSION#SDK_INT} plus 1 if the platform is a development build.
34 ? Build.VERSION.SDK_INT
35 : Build.VERSION.SDK_INT + 1;
  /packages/apps/Camera2/src/com/android/camera/util/
ApiHelper.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
27 public static final boolean AT_LEAST_16 = Build.VERSION.SDK_INT >= 16;
30 Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1;
33 Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
35 Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
37 Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
39 Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
41 Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
43 Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
45 Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN
    [all...]
  /device/linaro/hikey/factory-images/
generate-factory-images-hikey.sh 3 # Licensed under the Apache License, Version 2.0 (the "License");
23 VERSION=linaro-`date +"%Y.%m.%d"`
27 VERSION=$BUILD
32 mkdir -p tmp/$PRODUCT-$VERSION
35 cp $ANDROID_BUILD_TOP/$DEVICE_DIR/installer/hikey/README tmp/$PRODUCT-$VERSION/
36 cp $ANDROID_BUILD_TOP/$DEVICE_DIR/installer/hikey/hisi-idt.py tmp/$PRODUCT-$VERSION/
37 cp $ANDROID_BUILD_TOP/$DEVICE_DIR/installer/hikey/l-loader.bin tmp/$PRODUCT-$VERSION/
38 cp $ANDROID_BUILD_TOP/$DEVICE_DIR/installer/hikey/ptable-aosp-8g.img tmp/$PRODUCT-$VERSION/
39 cp $ANDROID_BUILD_TOP/$DEVICE_DIR/installer/hikey/ptable-aosp-4g.img tmp/$PRODUCT-$VERSION/
40 cp $ANDROID_BUILD_TOP/$DEVICE_DIR/installer/hikey/fip.bin tmp/$PRODUCT-$VERSION/
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLProcessorVersion.src 6 * to you under the Apache License, Version 2.0 (the "License");
24 * Administrative class to keep track of the version number of
27 * @deprecated To be replaced by org.apache.xalan.Version.getVersion()
34 * Print the processor version to the command line.
54 * Major version number.
55 * Version number. This changes only when there is a
58 * version.
64 public static final int VERSION = @version.VERSION@
    [all...]
  /external/testng/bin/
testng.sh 2 VERSION=5.0
3 JAR14=$ROOT/testng-$VERSION-jdk14.jar
4 JAR15=$ROOT/testng-$VERSION-jdk15.jar
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ForegroundHelper.java 12 return Build.VERSION.SDK_INT >= 23;
16 if (Build.VERSION.SDK_INT >= 23) {
24 if (Build.VERSION.SDK_INT >= 23) {
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
GlobalActions.java 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
21 @ProvidesInterface(action = GlobalActions.ACTION, version = GlobalActions.VERSION)
26 int VERSION = 1;
32 @ProvidesInterface(version = GlobalActionsManager.VERSION)
34 int VERSION = 1;
VolumeDialog.java 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
25 @ProvidesInterface(action = VolumeDialog.ACTION, version = VolumeDialog.VERSION)
29 int VERSION = 1;
34 @ProvidesInterface(version = VERSION)
36 int VERSION = 1;

Completed in 1355 milliseconds

1 2 3 4 5 6 7 8 91011>>