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

1 2 3 4 5 6 7 8 91011>>

  /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/junit/src/junit/runner/
Version.java 4 * This class defines the current version of JUnit
6 public class Version {
7 private Version() {
  /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/dexmaker/src/dx/java/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/chromium/base/
version.h 16 // Version represents a dotted version number, like "1.2.3.4", supporting
19 class BASE_API Version {
21 // Exposed only so that a Version can be stored in STL containers;
22 // any call to the methods below on a default-constructed Version
24 Version();
26 ~Version();
28 // The version string must be made up of 1 or more uint16's separated
30 // Caller is responsible for freeing the Version object once done.
31 static Version* GetVersionFromString(const std::string& version_str)
    [all...]
version.cc 5 #include "base/version.h"
15 Version::Version() : is_valid_(false) {}
17 Version::~Version() {}
20 Version* Version::GetVersionFromString(const std::string& version_str) {
21 Version* vers = new Version();
30 Version* Version::Clone() const
    [all...]
version_unittest.cc 6 #include "base/version.h"
13 Version v;
43 scoped_ptr<Version> vers(Version::GetVersionFromString(cases[i].input));
70 scoped_ptr<Version> lhs(Version::GetVersionFromString(cases[i].lhs));
71 scoped_ptr<Version> rhs(Version::GetVersionFromString(cases[i].rhs));
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 27 union Version {
28 SK_OT_USHORT version; member in union:SkOTTableOS2::Version
39 } version; member in struct:SkOTTableOS2
45 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::VA) == 68, sizeof_SkOTTableOS2__VA_not_68);
46 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V0) == 78, sizeof_SkOTTableOS2__V0_not_78);
47 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V1) == 86, sizeof_SkOTTableOS2__V1_not_86);
48 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V2) == 96, sizeof_SkOTTableOS2__V2_not_96);
49 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V3) == 96, sizeof_SkOTTableOS2__V3_not_96);
50 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V4) == 96, sizeof_SkOTTableOS2__V4_not_96);
SkOTTable_maxp.h 24 union Version {
25 SK_OT_Fixed version; member in union:SkOTTableMaximumProfile::Version
29 } version; member in struct:SkOTTableMaximumProfile
  /external/v8/test/cctest/
test-version.cc 30 #include "version.h"
41 Version::major_ = major;
42 Version::minor_ = minor;
43 Version::build_ = build;
44 Version::patch_ = patch;
45 Version::candidate_ = candidate;
46 Version::soname_ = soname;
59 // Test version without specific SONAME.
61 Version::GetString(version_str);
63 Version::GetSONAME(soname_str)
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Version.java 4 * Provides version information from the manifest.
6 * @version $Id: Version.java 20 2011-05-28 12:32:00Z dkocher@sudo.ch $
8 public class Version
12 Package pkg = Version.class.getPackage();
18 Package pkg = Version.class.getPackage();
23 * A simple main method that prints the version and exits
27 System.out.println("Version: " + getSpecification());
  /external/v8/src/
version.cc 30 #include "version.h"
32 // These macros define the version number for the current version.
44 // shared library instead the generic SONAME generated from the V8 version
70 int Version::major_ = MAJOR_VERSION;
71 int Version::minor_ = MINOR_VERSION;
72 int Version::build_ = BUILD_NUMBER;
73 int Version::patch_ = PATCH_LEVEL;
74 bool Version::candidate_ = (IS_CANDIDATE_VERSION != 0);
75 const char* Version::soname_ = SONAME
    [all...]
  /external/chromium/chrome/browser/extensions/
external_extension_provider_interface.h 15 class Version;
22 // caller what extensions are registered, and which |id|, |version| and |path|
23 // they have. See also VisitRegisteredExtension below. Ownership of |version|
30 const Version* version,
66 scoped_ptr<Version>* version) const = 0;
extension_sync_data.h 11 #include "base/version.h"
21 // Version-independent properties (i.e., used even when the
22 // version of the currently-installed extension doesn't match
23 // |version|).
28 // Version-dependent properties (i.e., should be used only when the
29 // version of the currenty-installed extension matches |version|).
30 Version version; member in struct:ExtensionSyncData
external_extension_provider_impl.h 18 class Version;
59 scoped_ptr<Version>* version) const;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
Version.java 9 * The classic version object.
11 public class Version {
12 private static final Logger LOG = Logger.getLogger(Version.class.getName());
13 public static final String VERSION;
16 LineNumberReader lnr = new LineNumberReader(new InputStreamReader(Version.class.getResourceAsStream("/version.txt")));
17 String version; typedefs
19 version = lnr.readLine();
22 version = "unknown";
24 VERSION = version
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.base/src/com/android/ide/eclipse/base/
InstallDetails.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
21 import org.osgi.framework.Version;
36 /** Returns the version of current eclipse platform. */
37 public static Version getPlatformVersion() {
39 return b == null ? Version.emptyVersion : b.getVersion();
  /external/chromium/base/win/
windows_version.h 17 // The running version of Windows. This is declared outside OSInfo for
21 enum Version {
70 Version version() const { return version_; } function in class:base::win::OSInfo
87 Version version_;
101 BASE_API Version GetVersion();
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3-sources.jar 
  /external/clang/
clang-version-inc.mk 2 ## Generate clang/Basic/Version.inc
12 # Compute the Clang version from the LLVM version, unless specified explicitly.
25 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/Basic/Version.inc
26 $(intermediates)/include/clang/Basic/Version.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Version.inc.in
27 @echo "Updating Clang version info."
  /external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
release_src.sh 4 # Licensed under the Apache License, Version 2.0 (the "License");
19 version=`grep '^\$VERSION' iexploder-$$/src/version.rb | cut -d\" -f2`
20 echo "Version: $version"
21 mv iexploder-$$ iexploder-$version
22 cd iexploder-$version
27 GZIP="-9" tar -zcvf iexploder-${version}.tgz iexploder-${version}/
    [all...]
  /external/chromium/chrome/common/
chrome_version_info.h 25 // In the rare case where we fail to get the version info,
34 // Version number, e.g. "6.0.490.1".
35 std::string Version() const;
40 // Whether this is an "official" release of the current Version():
41 // whether knowing Version() is enough to completely determine what
chrome_version_info.cc 16 // On Windows and Mac, we get the Chrome version info by querying
38 std::string VersionInfo::Version() const {
57 // We get chrome version information from chrome_version_info_posix.h,
76 std::string VersionInfo::Version() const {
  /external/apache-xml/src/main/java/org/apache/xalan/
Version.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 * org.apache.project-name.Version.getVersion() be a standard way
28 * to get version information. This class will replace the older
29 * org.apache.xalan.processor.Version class.</P>
31 * information about the version of the XSLT spec we support.</P>
34 public class Version
38 * Get the basic version string for the current Xalan release.
39 * Version String formatted like
42 * Futurework: have this read version info from jar manifest.
    [all...]
Version.java 6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.java 577939 2007-09-20 21:45:37Z minchau $
24 * Administrative class to keep track of the version number of
27 * org.apache.project-name.Version.getVersion() be a standard way
28 * to get version information. This class will replace the older
29 * org.apache.xalan.processor.Version class.</P>
31 * information about the version of the XSLT spec we support.</P>
34 public class Version
38 * Get the basic version string for the current Xalan release.
39 * Version String formatted like
    [all...]

Completed in 1291 milliseconds

1 2 3 4 5 6 7 8 91011>>