HomeSort by relevance Sort by last modified time
    Searched refs:Version (Results 1 - 25 of 3526) 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.8";
  /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/chromium_org/base/
version.h 16 // Version represents a dotted version number, like "1.2.3.4", supporting
18 class BASE_EXPORT Version {
21 // Version object is assign to it.
22 Version();
24 ~Version();
26 // Initializes from a decimal dotted version number, like "0.1.1".
29 explicit Version(const std::string& version_str);
31 // Returns true if the object contains a valid version number.
34 // Returns true if the version wildcard string is valid. The version wildcar
    [all...]
version.cc 5 #include "base/version.h"
19 // inside the version string and constructs a vector of valid integers. It stops
52 // Compares version components in |components1| with components in
80 Version::Version() {
83 Version::~Version() {
86 Version::Version(const std::string& version_str) {
94 bool Version::IsValid() const
    [all...]
  /external/chromium_org/chrome/browser/component_updater/
flash_component_installer.h 12 class Version;
16 // with the component updater to download the latest version when available.
21 // manifest, with the version specified in the manifest in |version_out|.
23 base::Version* version_out);
  /external/chromium_org/third_party/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);
  /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);
  /external/chromium_org/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/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/chromium_org/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/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-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/
version.rb 22 module Version
23 MAJOR, MINOR, PATCH, REL = *File.read(base_path.join 'VERSION').split(".")
27 VERSION = Version::STRING
  /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/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();
  /external/chromium_org/chrome_frame/
dll_redirector.h 23 class Version;
26 // A singleton class that provides a facility to register the version of the
27 // current module as the only version that should be loaded system-wide. If
28 // this module is not the first instance loaded in the system, then the version
37 // 3) The module this is compiled into is built with version info.
45 // Attempts to register this Chrome Frame version as the first loaded version
47 // false meaning that there is another version already loaded somewhere and
48 // the caller should delegate to that version instead.
71 // Returns an HMODULE to the version of the module that should be loaded
    [all...]
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3-sources.jar 

Completed in 559 milliseconds

1 2 3 4 5 6 7 8 91011>>