HomeSort by relevance Sort by last modified time
    Searched defs:Version (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /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
  /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";
  /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.10";
  /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"
21 // inside the version string and constructs a vector of valid integers. It stops
54 // Compares version components in |components1| with components in
82 Version::Version() {
85 Version::~Version() {
88 Version::Version(const std::string& version_str) {
96 bool Version::IsValid() const
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFDFCatalogDictionary_autogen.cpp 11 SkString SkPdfFDFCatalogDictionary::Version(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Version", "");
20 return get("Version", "") != NULL;
SkPdfTrapNetworkAnnotationDictionary_autogen.cpp 47 SkPdfArray* SkPdfTrapNetworkAnnotationDictionary::Version(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Version", "");
56 return get("Version", "") != NULL;
  /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/junit/src/junit/runner/
Version.java 4 * This class defines the current version of JUnit
6 public class Version {
7 private Version() {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 1 /* Jsunittest, version 0.6.0
11 Version: '0.6.0',
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
api_implementation.py 86 def Version():
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
24 class Version {
  /external/chromium_org/chrome/browser/safe_browsing/
protocol_manager_helper.cc 32 std::string SafeBrowsingProtocolManagerHelper::Version() {
34 if (!version_info.is_valid() || version_info.Version().empty())
37 return version_info.Version();
43 const std::string& client_name, const std::string& version,
46 !client_name.empty() && !version.empty());
49 client_name.c_str(), version.c_str());
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
onyxd.h 33 int Version;
  /external/libvpx/libvpx/vp8/common/
onyxd.h 33 int Version;
  /external/apache-xml/src/main/java/org/apache/xalan/
Version.java 6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.java 577939 2007-09-20 21:45:37Z minchau $
24 * Administrative class to keep track of the version number of
27 * org.apache.project-name.Version.getVersion() be a standard way
28 * to get version information. This class will replace the older
29 * org.apache.xalan.processor.Version class.</P>
31 * information about the version of the XSLT spec we support.</P>
34 public class Version
38 * Get the basic version string for the current Xalan release.
39 * Version String formatted like
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Version.java 6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.java 477252 2006-11-20 16:52:00Z minchau $
24 * Administrative class to keep track of the version number of
27 * org.apache.project-name.Version.getVersion() be a standard way
28 * to get version information.</P>
31 public final class Version
35 * Get the basic version string for the current Serializer.
36 * Version String formatted like
39 * Futurework: have this read version info from jar manifest.
41 * @return String denoting our current version
    [all...]
  /external/chromium_org/chrome/common/
chrome_version_info.cc 21 return "Chrome/" + Version();
25 // On Windows and Mac, we get the Chrome version info by querying
47 std::string VersionInfo::Version() const {
66 // We get chrome version information from chrome_version_info_posix.h,
85 std::string VersionInfo::Version() const {
102 current_version += Version();
  /external/chromium_org/net/cert/
signed_tree_head.h 24 // Version enum in RFC 6962, Section 3.2. Note that while in the current
27 enum Version { V1 = 0, };
29 Version version; member in struct:net::ct::SignedTreeHead
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_maxp.h 24 union Version {
25 SK_OT_Fixed version; member in union:SkOTTableMaximumProfile::Version
29 } version; member in struct:SkOTTableMaximumProfile
  /external/chromium_org/tools/gyp/test/lib/
TestMac.py 43 lines = subprocess.check_output(['xcodebuild', '-version']).splitlines()
44 version = ''.join(lines[0].split()[-1].split('.'))
45 version = (version + '0' * (3 - len(version))).zfill(4)
46 return version, lines[-1].split()[-1]
48 def Version(self):
49 if 'Version' not in self._cache:
50 self._cache['Version'], self._cache['Build'] = self._XcodeVersion()
51 return self._cache['Version']
    [all...]
  /external/llvm/include/llvm/Transforms/
Instrumentation.h 48 // A four-byte version string. The meaning of a version string is described in
50 char Version[4];
119 /// NOTE: If the IR file to be debugged is not on disk, use the version of this
  /external/llvm/lib/ProfileData/
InstrProfIndexed.h 49 const uint64_t Version = 1;
  /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...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
horizontal_device_metrics_table.cc 4 * Licensed under the Apache License, Version 2.0 (the "License");
25 int32_t HorizontalDeviceMetricsTable::Version() {

Completed in 722 milliseconds

1 2 3 4 5