/external/chromium-trace/trace-viewer/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
|
/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.11";
|
/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/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/nanopb-c/generator/google/protobuf/internal/ |
api_implementation.py | 86 def 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/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/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v1/src/com/android/framework/multidexlegacyversionedtestapp/ |
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/ |
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/ |
Version.java | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 20 public class Version {
|
/external/libvpx/libvpx/vp8/common/ |
onyxd.h | 33 int Version;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
onyxd.h | 33 int Version;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
storprop.h | 14 ULONG Version;
|
/prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/ |
jython-2.5.3-sources.jar | |
/prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/ |
jython-standalone-2.5.3-sources.jar | |
/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/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/llvm/include/llvm/Transforms/ |
Instrumentation.h | 49 // A four-byte version string. The meaning of a version string is described in 51 char Version[4];
|
/external/llvm/lib/ProfileData/ |
InstrProfIndexed.h | 50 const uint64_t Version = 2;
|
/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/protobuf/python/google/protobuf/internal/ |
api_implementation.py | 88 def Version():
|