/external/webkit/Tools/iExploder/iexploder-1.7.2/src/ |
version.rb | 1 $VERSION="1.7.2"
|
/external/ppp/pppd/ |
patchlevel.h | 3 #define VERSION "2.4.3"
|
/external/chromium/net/tools/spdyshark/ |
moduleinfo.h | 11 #ifdef VERSION 12 #undef VERSION 15 /* Version number of package */ 16 #define VERSION "0.1.0"
|
/cts/tools/signature-tools/src/signature/ |
Version.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 20 * {@code Version} defines the VERSION constant of the signature tools. 22 public class Version { 24 * The program version of the signature tools. 26 public static final String VERSION = "0.1";
|
/external/bluetooth/glib/ |
sanity_check | 3 VERSION=$1 5 if [ ! -f glib-$VERSION.tar.gz ]; then 6 echo "ERROR: glib-$VERSION.tar.gz does not exist..." 12 echo "Checking glib-$VERSION.tar.gz..." 13 tar xfz glib-$VERSION.tar.gz 19 if [ "x`grep $VERSION glib-$VERSION/$file | wc -l | awk -F' ' '{print $1}'`" = "x0" ]; then 28 if [ "x`grep $VERSION glib-$VERSION/INSTALL | wc -l | awk -F' ' '{print $1}'`" = "x2" ]; then 38 wc -l glib-$VERSION/docs/reference/*/html/*.html | grep total [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.7";
|
/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...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/ |
template.js | 3 * License Version 1.1 (the "License"); you may not use this file 30 var VERSION = "ECMA_2"; // Version of JavaScript or ECMA
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ |
template.js | 3 * License Version 1.1 (the "License"); you may not use this file 30 var VERSION = "ECMA_2"; // Version of JavaScript or ECMA
|
/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/bluetooth/bluez/plugins/ |
storage.c | 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 42 BLUETOOTH_PLUGIN_DEFINE(storage, VERSION,
|
/external/oprofile/libutil/ |
op_version.c | 3 * output version string 20 /* Do not change the version format: it is documented in html doc */ 21 printf("%s: " PACKAGE " " VERSION " compiled on "
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/LexicalConventions/ |
regexp-literals-002.js | 10 var VERSION = "ECMA_2";
|
keywords-001.js | 11 var VERSION = "ECMA_2";
|
regexp-literals-001.js | 11 var VERSION = "ECMA_2";
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/ |
exec-001.js | 10 var VERSION = "ECMA_2";
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/ |
replace-001.js | 11 var VERSION = "ECMA_2";
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/ |
tostring_1.js | 2 * License Version 1.1 (the "License"); you may not use this file 34 var VERSION = "JS1_2"; 44 var VERSION = 0; 46 /* This test assumes that if version() exists, it can set the JavaScript 47 * interpreter to an arbitrary version. To prevent unhandled exceptions in 48 * other tests, jsc implements version() as a stub function, but 49 * JavaScriptCore doesn't support setting the JavaScript engine's version. 59 if ( typeof version == "function" ) { 60 version(120); 61 VERSION = "120" [all...] |
tostring_2.js | 2 * License Version 1.1 (the "License"); you may not use this file 25 Description: toString in version 120 33 var VERSION = "JS_12"; 43 var VERSION = 0; 45 /* This test assumes that if version() exists, it can set the JavaScript 46 * interpreter to an arbitrary version. To prevent unhandled exceptions in 47 * other tests, jsc implements version() as a stub function, but 48 * JavaScriptCore doesn't support setting the JavaScript engine's version. 58 if ( typeof version == "function" ) { 59 writeLineToLog("version 120") [all...] |
/external/bluetooth/bluez/audio/ |
module-bluetooth-sink.c | 11 * version 2.1 of the License, or (at your option) any later version. 33 PA_MODULE_VERSION(VERSION)
|
/external/llvm/test/FrontendC/ |
2007-09-12-PragmaPack.c | 15 } VERSION; 19 VERSION version; member in struct:__anon8333
|
/cts/tests/tests/os/src/android/os/cts/ |
BuildVersionTest.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 30 @TestTargetClass(Build.VERSION.class) 39 // Applications may rely on the exact release version 40 assertTrue("Your Build.VERSION.RELEASE of " + Build.VERSION.RELEASE 42 EXPECTED_RELEASES.contains(Build.VERSION.RELEASE)); 44 assertEquals("" + EXPECTED_SDK, Build.VERSION.SDK); 45 assertEquals(EXPECTED_SDK, Build.VERSION.SDK_INT); 49 assertNotEmpty(Build.VERSION.INCREMENTAL); 56 * (BRAND)/(PRODUCT)/(DEVICE):(VERSION.RELEASE)/(BUILD_ID) [all...] |
/cts/tests/tests/dpi/src/android/dpi/cts/ |
DefaultManifestAttributesSdkTest.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 32 assertEquals(Build.VERSION.SDK_INT, getAppInfo().targetSdkVersion);
|
/external/chromium/sdch/open-vcdiff/vsprojects/ |
config.h | 4 // Licensed under the Apache License, Version 2.0 (the "License"); 47 /* Define to the full name and version of this package. */ 53 /* Define to the version of this package. */ 59 /* Version number of package */ 60 #define VERSION "0.7"
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
regress-6359.js | 3 * License Version 1.1 (the "License"); you may not use this file 30 var VERSION = "ECMA_2"; // Version of JavaScript or ECMA
|