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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/junit/runner/
Version.java 4 * This class defines the current version of JUnit
6 public class Version {
7 private Version() {
  /frameworks/base/test-runner/src/junit/runner/
Version.java 4 * This class defines the current version of JUnit
6 public class Version {
7 private Version() {
  /libcore/junit/src/test/java/junit/runner/
Version.java 4 * This class defines the current version of JUnit
6 public class Version {
7 private Version() {
  /libcore/luni/src/test/java/com/google/coretests/
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 * This class defines the current version of JUnit
22 public class Version {
23 private Version() {
  /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";
  /cts/tools/host/src/com/android/cts/
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
19 public class Version {
20 // The CTS version string
21 private static final String version = "2.2_r1"; field in class:Version
23 private Version() {
28 return version;
  /external/chromium/base/
version.h 13 class Version {
15 // The version string must be made up of 1 or more uint16's separated
17 // Caller is responsible for freeing the Version object once done.
18 static Version* GetVersionFromString(const std::wstring& version_str);
19 static Version* GetVersionFromString(const std::string& version_str);
21 ~Version() {}
23 bool Equals(const Version& other) const;
26 int CompareTo(const Version& other) const;
28 // Return the string representation of this version.
34 Version() {}
    [all...]
version.cc 8 #include "base/version.h"
11 Version* Version::GetVersionFromString(const std::wstring& version_str) {
18 Version* Version::GetVersionFromString(const std::string& version_str) {
19 Version* vers = new Version();
26 bool Version::Equals(const Version& that) const {
30 int Version::CompareTo(const Version& other) const
    [all...]
version_unittest.cc 6 #include "base/version.h"
11 TEST(Version, GetVersionFromString) {
30 scoped_ptr<Version> vers(Version::GetVersionFromString(cases[i].input));
37 TEST(Version, Compare) {
55 scoped_ptr<Version> lhs(Version::GetVersionFromString(cases[i].lhs));
56 scoped_ptr<Version> rhs(Version::GetVersionFromString(cases[i].rhs));
  /external/junit/src/junit/runner/
Version.java 4 * This class defines the current version of JUnit
6 public class Version {
7 private Version() {
  /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.5";
  /external/v8/src/
version.cc 30 #include "version.h"
32 // These macros define the version number for the current version.
42 // shared library instead the generic SONAME generated from the V8 version
49 int Version::major_ = MAJOR_VERSION;
50 int Version::minor_ = MINOR_VERSION;
51 int Version::build_ = BUILD_NUMBER;
52 int Version::patch_ = PATCH_LEVEL;
53 bool Version::candidate_ = CANDIDATE_VERSION;
54 const char* Version::soname_ = SONAME
    [all...]
version.h 34 class Version {
36 // Return the various version components.
43 // Calculate the V8 version string.
57 // In test-version.cc.
  /external/v8/test/cctest/
test-version.cc 30 #include "version.h"
41 Version::major_ = major;
42 Version::minor_ = minor;
43 Version::build_ = build;
44 Version::patch_ = patch;
45 Version::candidate_ = candidate;
46 Version::soname_ = soname;
59 // Test version without specific SONAME.
61 Version::GetString(version_str);
63 Version::GetSONAME(soname_str)
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/
Version.src 6 * to you under the Apache License, Version 2.0 (the "License");
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
42 * Futurework: have this read version info from jar manifest.
    [all...]
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...]
  /libcore/luni/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...]
Version.src 6 * to you under the Apache License, Version 2.0 (the "License");
19 * $Id: Version.src 468654 2006-10-28 07:09:23Z 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...]
  /frameworks/base/media/libstagefright/include/
ID3.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
29 enum Version {
43 Version version() const;
78 Version mVersion;
  /dalvik/dx/src/com/android/dx/command/
Main.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
19 import com.android.dx.Version;
58 " dx --version\n" +
59 " Print the version of this tool (" + Version.VERSION +
101 } else if (arg.equals("--version")) {
102 version(); method
143 * Prints the version message.
145 private static void version() { method in class:Main
    [all...]
  /external/e2fsprogs/contrib/
build-rpm 8 pkgvers=`grep Version: e2fsprogs.spec | awk '{print $2;}'`
27 [ "`rpmbuild --version 2> /dev/null`" ] && RPM=rpmbuild || RPM=rpm
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/
VersionCheck.java 4 * Licensed under the Eclipse Public License, Version 1.0 (the "License");
25 import org.osgi.framework.Version;
35 * Class handling the version check for the plugin vs. the SDK.<br>
36 * The plugin must be able to support all version of the SDK.
38 * <p/>An SDK can require a new version of the plugin.
39 * <p/>The SDK contains a file with the minimum version for the plugin. This file is inside the
41 * Inside that text file, there is a line in the format "plugin.version=#.#.#". This is checked
42 * against the current plugin version.<br>
47 * Pattern to get the minimum plugin version supported by the SDK. This is read from
51 "^plugin.version=(\\d+)\\.(\\d+)\\.(\\d+).*$"); //$NON-NLS-1
94 Version version = new Version(versionString); local
    [all...]
  /external/libvpx/vp8/common/
onyxd.h 31 int Version;
  /external/quake/quake/src/QW/
qwcl.x11.spec.sh 3 # $1 is version
8 %define version ${1}
10 %define builddir \$RPM_BUILD_DIR/%{name}-%{version}
12 Version: %{version}
17 Source: qwcl.x11-%{version}.tar.gz
21 BuildRoot: /var/tmp/%{name}-%{version}
  /external/quake/quake/src/WinQuake/
quake-hipnotic.spec.sh 3 # $1 is version
8 %define version ${1}
10 %define builddir \$RPM_BUILD_DIR/%{name}-%{version}
12 Version: %{version}
17 Source: quake-hipnotic-%{version}.tar.gz
22 BuildRoot: /var/tmp/%{name}-%{version}
91 Full Version of QUAKE required to operate.

Completed in 394 milliseconds

1 2 3 4 5 6 7 8 91011>>