HomeSort by relevance Sort by last modified time
    Searched refs:Version (Results 1 - 25 of 4264) 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/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.12";
  /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";
  /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");
  /external/v8/test/cctest/
test-version.cc 30 #include "src/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;
60 // Test version without specific SONAME.
62 Version::GetString(version_str);
64 Version::GetSONAME(soname_str)
    [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/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/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/chromium-trace/catapult/tracing/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
  /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; typedefs
19 version = lnr.readLine();
22 version = "unknown";
24 VERSION = version
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.base/src/com/android/ide/eclipse/base/
InstallDetails.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
21 import org.osgi.framework.Version;
36 /** Returns the version of current eclipse platform. */
37 public static Version getPlatformVersion() {
39 return b == null ? Version.emptyVersion : b.getVersion();
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolCompilandDetails.h 29 void getFrontEndVersion(VersionInfo &Version) const {
30 RawSymbol->getFrontEndVersion(Version);
33 void getBackEndVersion(VersionInfo &Version) const {
34 RawSymbol->getBackEndVersion(Version);

Completed in 279 milliseconds

1 2 3 4 5 6 7 8 91011>>