Searched refs:Version (Results 1 - 25 of 894) sorted by relevance

1234567891011>>

/external/junit/src/junit/runner/
H A DVersion.java6 public class Version { class
7 private Version() { method in class:Version
/external/dexmaker/src/dx/java/com/android/dx/
H A DVersion.java4 * Licensed under the Apache License, Version 2.0 (the "License");
20 * Version number for dx.
22 public class Version { class
/external/chromium/base/
H A Dversion.h16 // Version represents a dotted version number, like "1.2.3.4", supporting
19 class BASE_API Version { class
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();
30 // Caller is responsible for freeing the Version object once done.
31 static Version* GetVersionFromString(const std::string& version_str);
34 Version* Clone() const;
36 bool Equals(const Version
[all...]
H A Dversion.cc15 Version::Version() : is_valid_(false) {} function in class:Version
17 Version::~Version() {}
20 Version* Version::GetVersionFromString(const std::string& version_str) {
21 Version* vers = new Version();
30 Version* Version
[all...]
H A Dversion_unittest.cc13 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/
H A Dversion.h16 // Version represents a dotted version number, like "1.2.3.4", supporting
18 class BASE_EXPORT Version { class in namespace:base
21 // Version object is assign to it.
22 Version();
24 ~Version();
29 explicit Version(const std::string& version_str);
37 // Version behavior (IsValid) if no wildcard is present.
46 bool Equals(const Version& other) const;
49 int CompareTo(const Version& other) const;
70 using base::Version;
[all...]
H A Dversion.cc82 Version::Version() { function in class:base::Version
85 Version::~Version() {
88 Version::Version(const std::string& version_str) { function in class:base::Version
96 bool Version::IsValid() const {
101 bool Version::IsValidWildcardString(const std::string& wildcard_string) {
106 Version version(version_string);
110 bool Version
[all...]
H A Dversion_unittest.cc12 Version v;
17 Version v1("1.2.3.4");
19 Version v3;
22 Version v2(v1);
57 Version version(cases[i].input);
82 Version lhs(cases[i].lhs);
83 Version rhs(cases[i].rhs);
112 const Version version(cases[i].lhs);
136 EXPECT_EQ(Version::IsValidWildcardString(cases[i].version),
/external/chromium_org/chrome/browser/component_updater/
H A Dflash_component_installer.h12 class Version;
23 base::Version* version_out);
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_OS_2.h27 union Version { union 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/
H A DSkOTTable_OS_2.h27 union Version { union 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/
H A Dtest-version.cc41 Version::major_ = major;
42 Version::minor_ = minor;
43 Version::build_ = build;
44 Version::patch_ = patch;
45 Version::candidate_ = candidate;
46 Version::soname_ = soname;
61 Version::GetString(version_str);
63 Version::GetSONAME(soname_str);
69 Version::GetString(version_str);
71 Version
[all...]
/external/v8/test/cctest/
H A Dtest-version.cc41 Version::major_ = major;
42 Version::minor_ = minor;
43 Version::build_ = build;
44 Version::patch_ = patch;
45 Version::candidate_ = candidate;
46 Version::soname_ = soname;
61 Version::GetString(version_str);
63 Version::GetSONAME(soname_str);
69 Version::GetString(version_str);
71 Version
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DVersion.java6 * @version $Id: Version.java 20 2011-05-28 12:32:00Z dkocher@sudo.ch $
8 public class Version class
12 Package pkg = Version.class.getPackage();
18 Package pkg = Version.class.getPackage();
27 System.out.println("Version: " + getSpecification());
/external/chromium_org/v8/src/
H A Dversion.cc70 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;
76 const char* Version::version_string_ = VERSION_STRING;
79 void Version::GetString(Vector<char> str) {
99 void Version::GetSONAME(Vector<char> str) {
/external/v8/src/
H A Dversion.cc70 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;
76 const char* Version::version_string_ = VERSION_STRING;
79 void Version::GetString(Vector<char> str) {
99 void Version::GetSONAME(Vector<char> str) {
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/
H A Dversion.rb22 module Version module in class:GLMatrix
27 VERSION = Version::STRING
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
H A DVersion.java11 public class Version { class
12 private static final Logger LOG = Logger.getLogger(Version.class.getName());
16 LineNumberReader lnr = new LineNumberReader(new InputStreamReader(Version.class.getResourceAsStream("/version.txt")));
/external/chromium/chrome/browser/extensions/
H A Dextension_sync_data.h21 // Version-independent properties (i.e., used even when the
28 // Version-dependent properties (i.e., should be used only when the
30 Version version;
H A Dexternal_extension_provider_interface.h15 class Version;
30 const Version* version,
66 scoped_ptr<Version>* version) const = 0;
/external/chromium_org/chrome_frame/
H A Ddll_redirector.h23 class Version;
76 virtual base::Version* GetCurrentModuleVersion();
80 // found version number. The Version class in base will have ensured that we
82 virtual HMODULE LoadVersionedModule(base::Version* version);
97 scoped_ptr<base::Version> dll_version_;
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dapi_implementation.py86 def Version(): function
/external/chromium_org/chrome/installer/setup/
H A Dinstall_worker.h21 class Version;
35 const base::Version& new_version,
39 // Creates Version key for a product (if not already present) and sets the new
44 const base::Version& new_version,
86 const base::Version* current_version,
87 const base::Version& new_version,
109 const base::Version* current_version,
110 const base::Version& new_version,
140 const base::Version& new_version,
151 const base::Version
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dversion_set.h9 // Each Version keeps track of a set of Table files per level. The
12 // Version,VersionSet are thread-compatible, but require external
35 class Version;
59 class Version { class in namespace:leveldb
62 // yield the contents of this Version when merged together.
132 VersionSet* vset_; // VersionSet to which this Version belongs
133 Version* next_; // Next version in linked list
134 Version* prev_; // Previous version in linked list
150 explicit Version(VersionSet* vset) function in class:leveldb::Version
158 ~Version();
[all...]
/external/chromium_org/chrome/common/extensions/manifest_handlers/
H A Dminimum_chrome_version_checker.cc36 Version minimum_version(minimum_version_string);
43 Version current_version(current_version_info.Version());

Completed in 959 milliseconds

1234567891011>>