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

1 2 3 4 5 6 7 8 91011>>

  /external/okhttp/okhttp/src/main/java-templates/com/squareup/okhttp/internal/
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
18 public final class Version {
20 return "okhttp/${project.version}";
23 private Version() {
  /frameworks/base/packages/ExtServices/src/android/ext/services/
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 * Class that provides the version of the library.
22 public final class Version {
24 private Version() {
29 * Gets the version of the library.
31 * @return The version.
  /frameworks/base/packages/ExtShared/src/android/ext/shared/
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 * Class that provides the version of the library.
22 public final class Version {
24 private Version() {
29 * Gets the version of the library.
31 * @return The version.
  /external/libchrome/base/
version.h 18 // Version represents a dotted version number, like "1.2.3.4", supporting
20 class BASE_EXPORT Version {
23 // Version object is assign to it.
24 Version();
26 Version(const Version& other);
28 ~Version();
30 // Initializes from a decimal dotted version number, like "0.1.1".
33 explicit Version(const std::string& version_str)
    [all...]
version.cc 5 #include "base/version.h"
21 // inside the version string and constructs a vector of valid integers. It stops
44 // StringToUint returns unsigned int but Version fields are uint32_t.
52 // Compares version components in |components1| with components in
80 Version::Version() {
83 Version::Version(const Version& other) = default;
85 Version::~Version()
    [all...]
  /external/junit/src/main/java/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() {
  /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.13";
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v1/src/com/android/framework/multidexlegacyversionedtestapp/
ClassForMainDex.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
26 return Version.getVersion();
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 public class Version {
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v2/src/com/android/framework/multidexlegacyversionedtestapp/
ClassForMainDex.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
26 return Version.getVersion();
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 public class Version {
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v3/src/com/android/framework/multidexlegacyversionedtestapp/
ClassForMainDex.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
26 return Version.getVersion();
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 public class Version {
  /external/okhttp/android/main/java/com/squareup/okhttp/internal/
Version.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
18 public final class Version {
21 return agent != null ? agent : ("Java" + System.getProperty("java.version"));
24 private Version() {
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 27 union Version {
28 SK_OT_USHORT version; member in union:SkOTTableOS2::Version
39 } version; member in struct:SkOTTableOS2
45 static_assert(sizeof(SkOTTableOS2::Version::VA) == 68, "sizeof_SkOTTableOS2__VA_not_68");
46 static_assert(sizeof(SkOTTableOS2::Version::V0) == 78, "sizeof_SkOTTableOS2__V0_not_78");
47 static_assert(sizeof(SkOTTableOS2::Version::V1) == 86, "sizeof_SkOTTableOS2__V1_not_86");
48 static_assert(sizeof(SkOTTableOS2::Version::V2) == 96, "sizeof_SkOTTableOS2__V2_not_96");
49 static_assert(sizeof(SkOTTableOS2::Version::V3) == 96, "sizeof_SkOTTableOS2__V3_not_96");
50 static_assert(sizeof(SkOTTableOS2::Version::V4) == 96, "sizeof_SkOTTableOS2__V4_not_96");
  /system/libvintf/include/vintf/
Version.h 4 * Licensed under the Apache License, Version 2.0 (the "License");
28 struct Version {
30 constexpr Version() : Version(0u, 0u) {}
31 constexpr Version(size_t mj, size_t mi) : majorVer(mj), minorVer(mi) {}
36 inline bool operator==(const Version &other) const {
39 inline bool operator!=(const Version &other) const {
42 inline bool operator<(const Version &other) const {
49 inline bool operator>(const Version &other) const {
52 inline bool operator<=(const Version &other) const
66 size_t version; member in struct:android::vintf::KernelVersion
    [all...]
  /external/deqp/framework/egl/
egluDefs.cpp 7 * 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::operator<= (const Version& v) cons
    [all...]
egluDefs.hpp 9 * Licensed under the Apache License, Version 2.0 (the "License");
61 class Version
64 Version (int major, int minor) : m_major(major), m_minor(minor) {}
69 bool operator< (const Version& v) const;
70 bool operator== (const Version& v) const;
72 bool operator!= (const Version& v) const;
73 bool operator> (const Version& v) const;
74 bool operator<= (const Version& v) const;
75 bool operator>= (const Version& v) const;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
VersionTagsTuple.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 import org.yaml.snakeyaml.DumperOptions.Version;
26 private Version version; field in class:VersionTagsTuple
29 public VersionTagsTuple(Version version, Map<String, String> tags) {
30 this.version = version;
34 public Version getVersion() {
35 return version;
    [all...]
  /external/v8/src/
version.cc 5 #include "src/version.h"
7 #include "include/v8-version.h"
11 // shared library instead the generic SONAME generated from the V8 version
37 int Version::major_ = V8_MAJOR_VERSION;
38 int Version::minor_ = V8_MINOR_VERSION;
39 int Version::build_ = V8_BUILD_NUMBER;
40 int Version::patch_ = V8_PATCH_LEVEL;
41 bool Version::candidate_ = (V8_IS_CANDIDATE_VERSION != 0);
42 const char* Version::soname_ = SONAME;
43 const char* Version::version_string_ = VERSION_STRING
    [all...]
  /external/ltp/
Makefile.release 8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
34 ifneq ($(wildcard $(top_srcdir)/Version),)
35 TARBALL_VERSION ?= $(shell $(top_srcdir)/Version)
38 TARBALL_VERSION ?= $(error you must either make Version via make $$PWD/Version or specify an LTP version via TARBALL_VERSION)
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/parser/
VersionTagsTupleTest.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
22 import org.yaml.snakeyaml.DumperOptions.Version;
27 VersionTagsTuple tuple = new VersionTagsTuple(Version.V1_1, new HashMap<String, String>());
28 assertEquals("VersionTagsTuple<Version: 1.1, {}>", tuple.toString());
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
storduid.h 14 ULONG Version;
22 ULONG Version;
  /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; external variable declarations
19 version = lnr.readLine();
22 version = "unknown";
24 VERSION = version
    [all...]

Completed in 784 milliseconds

1 2 3 4 5 6 7 8 91011>>