Searched refs:Version (Results 1 - 25 of 817) 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_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/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/deqp/framework/egl/
H A DegluDefs.cpp7 * Licensed under the Apache License, Version 2.0 (the "License");
77 bool Version::operator< (const Version& v) const
87 bool Version::operator== (const Version& v) const
94 bool Version::operator!= (const Version& v) const
99 bool Version::operator> (const Version& v) const
104 bool Version
[all...]
H A DegluDefs.hpp9 * Licensed under the Apache License, Version 2.0 (the "License");
64 class Version class in namespace:eglu
67 Version (int major, int minor) : m_major(major), m_minor(minor) {} function in class:eglu::Version
72 bool operator< (const Version& v) const;
73 bool operator== (const Version& v) const;
75 bool operator!= (const Version& v) const;
76 bool operator> (const Version& v) const;
77 bool operator<= (const Version& v) const;
78 bool operator>= (const Version& v) const;
/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/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/chromium_org/chrome/browser/component_updater/
H A Dflash_component_installer.h10 class Version;
25 base::Version* version_out);
/external/chromium_org/net/cert/
H A Dsigned_tree_head.h24 // Version enum in RFC 6962, Section 3.2. Note that while in the current
27 enum Version { V1 = 0, }; enum in struct:net::ct::SignedTreeHead
29 Version version;
/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_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.h23 class Version;
37 const base::Version& new_version,
41 // Creates Version key for a product (if not already present) and sets the new
47 const base::Version& new_version,
89 const base::Version* current_version,
90 const base::Version& new_version,
112 const base::Version* current_version,
113 const base::Version& new_version,
143 const base::Version& new_version,
154 const base::Version
[all...]
/external/clang/lib/Basic/
H A DObjCRuntime.cpp58 Version = VersionTuple(0);
68 Version = VersionTuple(1, 6);
74 Version = VersionTuple(0, 8);
82 if (Version.tryParse(verString))
86 if (kind == ObjCRuntime::ObjFW && Version > VersionTuple(0, 8))
87 Version = VersionTuple(0, 8);
/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());
/external/chromium_org/tools/gyp/test/ios/
H A Dgyptest-archs.py26 if TestMac.Xcode.Version() < '0510':
31 if TestMac.Xcode.Version() >= '0500':
47 if TestMac.Xcode.Version() < '0500':
/external/clang/
H A Dclang-version-inc.mk2 ## Generate clang/Basic/Version.inc
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 \
/external/chromium_org/net/tools/quic/test_tools/
H A Dhttp_message.h21 enum Version { enum in class:net::tools::test::HttpConstants
47 typedef HttpConstants::Version Version; typedef in class:net::tools::test::HTTPMessage
52 static Version StringToVersion(base::StringPiece str);
56 static const char* VersionToString(Version version);
63 HTTPMessage(Version version, Method request, const std::string& path);
/external/chromium_org/chrome/installer/test/
H A Dalternate_version_generator.h14 class Version;
50 const base::Version& version);
/external/chromium_org/extensions/browser/
H A Dtest_runtime_api_delegate.cc25 base::Version TestRuntimeAPIDelegate::GetPreviousExtensionVersion(
27 return base::Version();

Completed in 5483 milliseconds

1234567891011>>