Searched refs:Version (Results 1 - 25 of 500) 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/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);
H A DSkOTTable_maxp.h24 union Version { union in struct:SkOTTableMaximumProfile
/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/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) {
H A Dversion.h34 class Version { class in namespace:v8::internal
/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/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/webkit/Tools/iExploder/iexploder-1.7.2/tools/
H A Drelease_src.sh4 # Licensed under the Apache License, Version 2.0 (the "License");
20 echo "Version: $version"
/external/chromium/base/win/
H A Dwindows_version.h21 enum Version { enum in namespace:base::win
70 Version version() const { return version_; }
87 Version version_;
101 BASE_API Version GetVersion();
/external/chromium/chrome/common/
H A Dchrome_version_info.h34 // 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
H A Dchrome_version_info.cc38 std::string VersionInfo::Version() const { function in class:chrome::VersionInfo
76 std::string VersionInfo::Version() const { function in class:chrome::VersionInfo
H A Dservice_process_util.cc73 scoped_ptr<Version> service_version(Version::GetVersionFromString(version));
86 scoped_ptr<Version> running_version(Version::GetVersionFromString(
87 version_info.Version()));
128 versioned_str.append(version_info.Version());
222 if (version_info.Version().length() >= kMaxVersionStringLength) {
223 NOTREACHED() << "Version string length is << " <<
224 version_info.Version().length() << "which is longer than" <<
246 memcpy(shared_data->service_process_version, version_info.Version()
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/
H A DVersion.src6 * to you under the Apache License, Version 2.0 (the "License");
27 * org.apache.project-name.Version.getVersion() be a standard way
29 * org.apache.xalan.processor.Version class.</P>
34 public class Version
39 * Version String formatted like
83 * Version number. This changes only when there is a
H A DVersion.java6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.java 577939 2007-09-20 21:45:37Z minchau $
27 * org.apache.project-name.Version.getVersion() be a standard way
29 * org.apache.xalan.processor.Version class.</P>
34 public class Version class
39 * Version String formatted like
83 * Version number. This changes only when there is a
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DVersion.java6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.java 477252 2006-11-20 16:52:00Z minchau $
27 * org.apache.project-name.Version.getVersion() be a standard way
31 public final class Version class
36 * Version String formatted like
80 * Version number. This changes only when there is a
/external/clang/lib/Basic/
H A DObjCRuntime.cpp58 Version = VersionTuple(0);
68 Version = VersionTuple(1, 6);
81 if (Version.tryParse(verString))
/external/chromium/chrome/browser/
H A Dupgrade_detector.cc87 scoped_ptr<Version> installed_version;
103 Version::GetVersionFromString(UTF16ToASCII(
115 installed_version.reset(Version::GetVersionFromString(reply));
127 scoped_ptr<Version> running_version(
128 Version::GetVersionFromString(version_info.Version()));

Completed in 460 milliseconds

1234567891011>>