/third_party/typescript/src/testRunner/unittests/ |
D | semver.ts | 28 …function assertVersion(version: Version, [major, minor, patch, prerelease, build]: [number, number… 37 … assertVersion(new Version("1.2.3-pre.4+build.5"), [1, 2, 3, ["pre", "4"], ["build", "5"]]); 40 … assertVersion(new Version(1, 2, 3, "pre.4", "build.5"), [1, 2, 3, ["pre", "4"], ["build", "5"]]); 41 assertVersion(new Version(1, 2, 3), [1, 2, 3]); 42 assertVersion(new Version(1, 2), [1, 2, 0]); 43 assertVersion(new Version(1), [1, 0, 0]); 47 … assert.strictEqual(new Version(1, 2, 3, "pre.4", "build.5").toString(), "1.2.3-pre.4+build.5"); 48 assert.strictEqual(new Version(1, 2, 3, "pre.4").toString(), "1.2.3-pre.4"); 49 …assert.strictEqual(new Version(1, 2, 3, /*prerelease*/ undefined, "build.5").toString(), "1.2.3+bu… 50 assert.strictEqual(new Version(1, 2, 3).toString(), "1.2.3"); [all …]
|
/third_party/gstreamer/gstreamer/ |
D | gstreamer.doap | 42 <Version> 48 </Version> 52 <Version> 58 </Version> 62 <Version> 68 </Version> 72 <Version> 78 </Version> 82 <Version> 88 </Version> [all …]
|
/third_party/node/ |
D | CHANGELOG.md | 114 ## 2016-05-06, Version 0.12.14 (Maintenance), @rvagg 118 ## 2016-05-06, Version 0.10.45 (Maintenance), @rvagg 122 ## 2016-05-05, Version 6.1.0 (Current), @Fishrock123 126 ## 2016-05-05, Version 5.11.1 (Stable), @evanlucas 130 ## 2016-05-05, Version 4.4.4 'Argon' (LTS), @thealphanerd 134 ## 2016-04-26, Version 6.0.0 (Current), @jasnell 138 ## 2016-04-20, Version 5.11.0 (Stable), @thealphanerd 142 ## 2016-04-05, Version 5.10.1 (Stable), @thealphanerd 146 ## 2016-03-31, Version 0.10.44 (Maintenance), @rvagg 150 ## 2016-03-31, Version 5.10.0 (Stable), @evanlucas [all …]
|
/third_party/gstreamer/gst_libav/ |
D | gst-libav.doap | 36 <Version> 42 </Version> 46 <Version> 52 </Version> 56 <Version> 62 </Version> 66 <Version> 72 </Version> 76 <Version> 82 </Version> [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Version.h | 15 struct Version struct 17 constexpr Version(); 18 constexpr Version(unsigned int major, unsigned int minor); 24 bool operator==(const Version &a, const Version &b); argument 25 bool operator!=(const Version &a, const Version &b); 26 bool operator>=(const Version &a, const Version &b); 27 bool operator<=(const Version &a, const Version &b); 28 bool operator<(const Version &a, const Version &b); 29 bool operator>(const Version &a, const Version &b);
|
D | Version.inc | 7 // Version.inc: Encapsulation of a GL version. 14 constexpr Version::Version() 15 : Version(0, 0) 23 constexpr Version::Version(unsigned int major_, unsigned int minor_) 29 inline bool operator==(const Version &a, const Version &b) 34 inline bool operator!=(const Version &a, const Version &b) 39 inline bool operator>=(const Version &a, const Version &b) 44 inline bool operator<=(const Version &a, const Version &b) 49 inline bool operator<(const Version &a, const Version &b) 54 inline bool operator>(const Version &a, const Version &b)
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Version.h | 15 struct Version struct 17 constexpr Version(); 18 constexpr Version(unsigned int major, unsigned int minor); 24 bool operator==(const Version &a, const Version &b); argument 25 bool operator!=(const Version &a, const Version &b); 26 bool operator>=(const Version &a, const Version &b); 27 bool operator<=(const Version &a, const Version &b); 28 bool operator<(const Version &a, const Version &b); 29 bool operator>(const Version &a, const Version &b);
|
D | Version.inc | 7 // Version.inc: Encapsulation of a GL version. 14 constexpr Version::Version() 15 : Version(0, 0) 23 constexpr Version::Version(unsigned int major_, unsigned int minor_) 29 inline bool operator==(const Version &a, const Version &b) 34 inline bool operator!=(const Version &a, const Version &b) 39 inline bool operator>=(const Version &a, const Version &b) 44 inline bool operator<=(const Version &a, const Version &b) 49 inline bool operator<(const Version &a, const Version &b) 54 inline bool operator>(const Version &a, const Version &b)
|
/third_party/gstreamer/gstplugins_base/ |
D | gst-plugins-base.doap | 38 <Version> 44 </Version> 48 <Version> 54 </Version> 58 <Version> 64 </Version> 68 <Version> 74 </Version> 78 <Version> 84 </Version> [all …]
|
/third_party/gstreamer/gstplugins_good/ |
D | gst-plugins-good.doap | 36 <Version> 42 </Version> 46 <Version> 52 </Version> 56 <Version> 62 </Version> 66 <Version> 72 </Version> 76 <Version> 82 </Version> [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/ |
D | PackedVersion.h | 23 uint32_t Version{0}; 27 explicit constexpr PackedVersion(uint32_t RawVersion) : Version(RawVersion) {} in PackedVersion() 29 : Version((Major << 16) | ((Minor & 0xff) << 8) | (Subminor & 0xff)) {} in PackedVersion() 31 bool empty() const { return Version == 0; } in empty() 34 unsigned getMajor() const { return Version >> 16; } in getMajor() 37 unsigned getMinor() const { return (Version >> 8) & 0xff; } in getMinor() 40 unsigned getSubminor() const { return Version & 0xff; } in getSubminor() 45 bool operator<(const PackedVersion &O) const { return Version < O.Version; } 47 bool operator==(const PackedVersion &O) const { return Version == O.Version; } 49 bool operator!=(const PackedVersion &O) const { return Version != O.Version; } [all …]
|
/third_party/gstreamer/gstplugins_bad/ |
D | gst-plugins-bad.doap | 37 <Version> 43 </Version> 47 <Version> 53 </Version> 57 <Version> 63 </Version> 67 <Version> 73 </Version> 77 <Version> 83 </Version> [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | renderergl_utils.cpp | 404 static void LimitVersion(gl::Version *curVersion, const gl::Version &maxVersion) in LimitVersion() 428 gl::Version *maxSupportedESVersion, in GenerateCaps() 446 *maxSupportedESVersion = gl::Version(3, 1); in GenerateCaps() 449 if (functions->isAtLeastGL(gl::Version(4, 3)) || in GenerateCaps() 451 functions->isAtLeastGLES(gl::Version(3, 0))) in GenerateCaps() 479 if (functions->isAtLeastGL(gl::Version(1, 2)) || functions->isAtLeastGLES(gl::Version(3, 0)) || in GenerateCaps() 488 LimitVersion(maxSupportedESVersion, gl::Version(2, 0)); in GenerateCaps() 497 if (functions->isAtLeastGL(gl::Version(3, 0)) || in GenerateCaps() 499 functions->isAtLeastGLES(gl::Version(3, 0))) in GenerateCaps() 508 LimitVersion(maxSupportedESVersion, gl::Version(2, 0)); in GenerateCaps() [all …]
|
D | CompilerGL.cpp | 27 if (functions->isAtLeastGL(gl::Version(4, 5))) in GetShaderOutputType() 31 else if (functions->isAtLeastGL(gl::Version(4, 4))) in GetShaderOutputType() 35 else if (functions->isAtLeastGL(gl::Version(4, 3))) in GetShaderOutputType() 39 else if (functions->isAtLeastGL(gl::Version(4, 2))) in GetShaderOutputType() 43 else if (functions->isAtLeastGL(gl::Version(4, 1))) in GetShaderOutputType() 47 else if (functions->isAtLeastGL(gl::Version(4, 0))) in GetShaderOutputType() 51 else if (functions->isAtLeastGL(gl::Version(3, 3))) in GetShaderOutputType() 55 else if (functions->isAtLeastGL(gl::Version(3, 2))) in GetShaderOutputType() 59 else if (functions->isAtLeastGL(gl::Version(3, 1))) in GetShaderOutputType() 63 else if (functions->isAtLeastGL(gl::Version(3, 0))) in GetShaderOutputType()
|
/third_party/gn/src/gn/ |
D | version.cc | 16 Version::Version(int major, int minor, int patch) in Version() function in Version 20 std::optional<Version> Version::FromString(std::string s) { in FromString() 40 return Version(major, minor, patch); in FromString() 46 bool Version::operator==(const Version& other) const { in operator ==() 51 bool Version::operator<(const Version& other) const { in operator <() 56 bool Version::operator!=(const Version& other) const { in operator !=() 60 bool Version::operator>=(const Version& other) const { in operator >=() 64 bool Version::operator>(const Version& other) const { in operator >() 68 bool Version::operator<=(const Version& other) const { in operator <=() 72 std::string Version::Describe() const { in Describe()
|
D | version.h | 19 class Version { 21 Version(int major, int minor, int patch); 23 static std::optional<Version> FromString(std::string s); 29 bool operator==(const Version& other) const; 30 bool operator<(const Version& other) const; 31 bool operator!=(const Version& other) const; 32 bool operator>=(const Version& other) const; 33 bool operator>(const Version& other) const; 34 bool operator<=(const Version& other) const;
|
D | version_unittest.cc | 10 Version v0_0_1{0, 0, 1}; in TEST() 11 ASSERT_EQ(Version::FromString("0.0.1"), v0_0_1); in TEST() 12 Version v0_1_0{0, 1, 0}; in TEST() 13 ASSERT_EQ(Version::FromString("0.1.0"), v0_1_0); in TEST() 14 Version v1_0_0{1, 0, 0}; in TEST() 15 ASSERT_EQ(Version::FromString("1.0.0"), v1_0_0); in TEST() 19 Version v0_0_1{0, 0, 1}; in TEST() 20 Version v0_1_0{0, 1, 0}; in TEST() 32 ASSERT_EQ(Version::FromString("0.0.1")->Describe(), "0.0.1"); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/llvm/ |
D | llvm.go | 38 type Version struct { struct 42 func (v Version) String() string { argument 47 func (v Version) GreaterEqual(rhs Version) bool { argument 64 func (v Version) Download() ([]byte, error) { argument 69 func (v Version) DownloadForOS(osName string) ([]byte, error) { argument 106 func (v Version) DownloadInfoForOS(os string) (url, sig, key string, err error) { argument 108 case Version{10, 0, 0}: 138 Version Version member 146 func (l Toolchains) Find(v Version) *Toolchain { argument 148 if t.Version == v { [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | renderergl_utils.cpp | 419 static void LimitVersion(gl::Version *curVersion, const gl::Version &maxVersion) in LimitVersion() 430 gl::Version *maxSupportedESVersion) in GenerateTextureFormatCaps() 450 if (functions->isAtLeastGLES(gl::Version(3, 0)) && in GenerateTextureFormatCaps() 546 glFormatInfo.isRequiredRenderbufferFormat(gl::Version(3, 0)) && in GenerateTextureFormatCaps() 549 LimitVersion(maxSupportedESVersion, gl::Version(2, 0)); in GenerateTextureFormatCaps() 644 gl::Version *maxSupportedESVersion, in GenerateCaps() 648 *maxSupportedESVersion = gl::Version(3, 1); in GenerateCaps() 665 if (functions->isAtLeastGL(gl::Version(4, 3)) || in GenerateCaps() 667 functions->isAtLeastGLES(gl::Version(3, 0))) in GenerateCaps() 695 if (functions->isAtLeastGL(gl::Version(1, 2)) || functions->isAtLeastGLES(gl::Version(3, 0)) || in GenerateCaps() [all …]
|
D | CompilerGL.cpp | 27 if (functions->isAtLeastGL(gl::Version(4, 5))) in GetShaderOutputType() 31 else if (functions->isAtLeastGL(gl::Version(4, 4))) in GetShaderOutputType() 35 else if (functions->isAtLeastGL(gl::Version(4, 3))) in GetShaderOutputType() 39 else if (functions->isAtLeastGL(gl::Version(4, 2))) in GetShaderOutputType() 43 else if (functions->isAtLeastGL(gl::Version(4, 1))) in GetShaderOutputType() 47 else if (functions->isAtLeastGL(gl::Version(4, 0))) in GetShaderOutputType() 51 else if (functions->isAtLeastGL(gl::Version(3, 3))) in GetShaderOutputType() 55 else if (functions->isAtLeastGL(gl::Version(3, 2))) in GetShaderOutputType() 59 else if (functions->isAtLeastGL(gl::Version(3, 1))) in GetShaderOutputType() 63 else if (functions->isAtLeastGL(gl::Version(3, 0))) in GetShaderOutputType()
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
D | version.dart | 5 class Version implements Comparable<Version> { 6 /// Creates a new [Version] object. 7 factory Version(int major, int minor, int patch, {String text}) { 16 return Version._(major ?? 0, minor ?? 0, patch ?? 0, text); 19 Version._(this.major, this.minor, this.patch, this._text) { 28 /// Creates a new [Version] by parsing [text]. 29 factory Version.parse(String text) { 39 return Version._(major, minor, patch, text); 48 static Version primary(List<Version> versions) { 49 Version primary; [all …]
|
/third_party/spirv-tools/utils/vscode/src/schema/ |
D | schema.go | 49 Version string member 20143 Version: "", 20150 Version: "", 20157 Version: "", 20164 Version: "", 20171 Version: "", 20178 Version: "", 20185 Version: "", 20192 Version: "", 20199 Version: "", [all …]
|
/third_party/vk-gl-cts/framework/egl/ |
D | egluDefs.cpp | 77 bool Version::operator< (const Version& v) const in operator <() 87 bool Version::operator== (const Version& v) const in operator ==() 94 bool Version::operator!= (const Version& v) const in operator !=() 99 bool Version::operator> (const Version& v) const in operator >() 104 bool Version::operator<= (const Version& v) const in operator <=() 109 bool Version::operator>= (const Version& v) const in operator >=()
|
/third_party/boost/boost/container/ |
D | allocator.hpp | 40 template<unsigned Version, unsigned int AllocationDisableMask> 41 class allocator<void, Version, AllocationDisableMask> 43 typedef allocator<void, Version, AllocationDisableMask> self_t; 53 version_type<self_t, Version> version; 67 , Version, AllocationDisableMask 85 allocator(const allocator<T2, Version, AllocationDisableMask> &) in allocator() argument 101 , unsigned Version BOOST_CONTAINER_DOCONLY(=2) 110 typedef allocator<T, Version, AllocationDisableMask> self_t; 123 BOOST_STATIC_ASSERT(( Version != 1 || (AllocationDisableMask == 0) )); 137 version_type<self_t, Version> version; [all …]
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/schema/ |
D | schema.go | 49 Version string member 19614 Version: "", 19621 Version: "", 19628 Version: "", 19635 Version: "", 19642 Version: "", 19649 Version: "", 19656 Version: "", 19663 Version: "", 19670 Version: "", [all …]
|