HomeSort by relevance Sort by last modified time
    Searched refs:version (Results 226 - 250 of 12789) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/com/android/internal/os/
KernelWakelockStats.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
29 Entry(int count, long totalTime, int version) {
32 mVersion = version;
  /frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
global_float.rs 4 * Licensed under the Apache License, Version 2.0 (the "License");
17 #pragma version(1)
global_int.rs 4 * Licensed under the Apache License, Version 2.0 (the "License");
17 #pragma version(1)
modulo.rs 4 * Licensed under the Apache License, Version 2.0 (the "License");
17 #pragma version(1)
  /frameworks/rs/tests/cpp_api/cpp-globalguard/
multiply.rs 4 * Licensed under the Apache License, Version 2.0 (the "License");
17 #pragma version(1)
  /frameworks/rs/tests/cpp_api/cppallocation/
multiply.rs 4 * Licensed under the Apache License, Version 2.0 (the "License");
17 #pragma version(1)
  /frameworks/rs/tests/cpp_api/cppstrided/
multiply.rs 4 * Licensed under the Apache License, Version 2.0 (the "License");
17 #pragma version(1)
  /frameworks/rs/tests/cpp_api/latency/
latency.rs 4 * Licensed under the Apache License, Version 2.0 (the "License");
17 #pragma version(1)
  /frameworks/support/jetifier/jetifier/preprocessor/
build.gradle 4 * Licensed under the Apache License, Version 2.0 (the "License");
26 compile group: 'commons-cli', name: 'commons-cli', version: '1.3.1'
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
mpl.c 52 * @brief used to get the MPL version.
53 * @param version a string where the MPL version gets stored.
56 inv_error_t inv_get_version(char **version)
60 *version = (char *)&ml_ver;
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
mpl.c 52 * @brief used to get the MPL version.
53 * @param version a string where the MPL version gets stored.
56 inv_error_t inv_get_version(char **version)
60 *version = (char *)&ml_ver;
  /system/libvintf/
XmlFile.cpp 4 * Licensed under the Apache License, Version 2.0 (the "License");
30 version() == other.version();
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/symver/
symver2.l 2 .*: Error: invalid attempt to declare external version name as default in symbol `foo@@version1'
  /tools/tradefederation/core/src/com/android/tradefed/build/
IDeviceBuildInfo.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
43 * Get the local device image zip version.
52 public void setDeviceImageFile(File deviceImageFile, String version);
60 * Get the local test userdata image version.
69 public void setUserDataImageFile(File userDataFile, String version);
77 * Get the extracted tests.zip version.
86 public void setTestsDir(File testsZipFile, String version);
94 * Get the baseband version.
102 * @param version the version of the baseban
    [all...]
  /external/dtc/tests/
mangle-layout.c 8 * as published by the Free Software Foundation; either version 2.1 of
9 * the License, or (at your option) any later version.
45 static void new_header(struct bufstate *buf, int version, const void *fdt)
49 if (version == 16)
51 else if (version == 17)
54 CONFIG("Bad version %d", version);
60 fdt_set_version(buf->buf, version);
65 static void add_block(struct bufstate *buf, int version, char block, const void *fdt)
111 if (version >= 17
125 int version; local
    [all...]
  /external/libdrm/freedreno/
freedreno_device.c 48 drmVersionPtr version; local
51 version = drmGetVersion(fd);
52 if (!version) {
53 ERROR_MSG("cannot get version: %s", strerror(errno));
57 if (!strcmp(version->name, "msm")) {
59 if (version->version_major != 1) {
60 ERROR_MSG("unsupported version: %u.%u.%u", version->version_major,
61 version->version_minor, version->version_patchlevel)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/version/
version.go 5 // Package version implements the ``go version'' command.
6 package version package
17 UsageLine: "version",
18 Short: "print Go version",
19 Long: `Version prints the Go version, as reported by runtime.Version.`,
27 fmt.Printf("go version %s %s/%s\n", runtime.Version(), runtime.GOOS, runtime.GOARCH
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/version/
version.go 5 // Package version implements the ``go version'' command.
6 package version package
17 UsageLine: "version",
18 Short: "print Go version",
19 Long: `Version prints the Go version, as reported by runtime.Version.`,
27 fmt.Printf("go version %s %s/%s\n", runtime.Version(), runtime.GOOS, runtime.GOARCH
    [all...]
  /external/autotest/client/site_tests/kernel_TPMPing/
kernel_TPMPing.py 11 version = 2 variable in class:kernel_TPMPing
15 if tpm_version.find("Version Info") == -1:
20 # This autotest is not compatible with kernel version < 3.8
21 version = utils.system_output('/bin/uname -r').strip()
22 logging.info(version)
24 # If the "[gentle shutdown]" string followed by 'Linux Version'
27 if version >= '3.8':
28 result = utils.system_output('awk \'/Linux version [0-9]+\./ '
38 logging.info('Bypassing the test as kernel version is < 3.8')
  /external/blktrace/btreplay/
btrecord.h 8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
66 * @version: Version information
72 __u64 version; member in struct:io_file_hdr
83 static inline void get_btversion(__u64 version, int *mjr, int *mnr, int *sub)
85 *mjr = (int)((version >> 16) & 0xff);
86 *mnr = (int)((version >> 8) & 0xff);
87 *sub = (int)((version >> 0) & 0xff);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
DocumentStartEvent.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
20 import org.yaml.snakeyaml.DumperOptions.Version;
31 private final Version version; field in class:DocumentStartEvent
34 public DocumentStartEvent(Mark startMark, Mark endMark, boolean explicit, Version version,
38 this.version = version;
51 * YAML version the document conforms to.
55 * components, the major and minor part of the version (in thi
    [all...]
  /external/tensorflow/tensorflow/core/platform/posix/
load_library.cc 3 Licensed under the Apache License, Version 2.0 (the "License");
43 string FormatLibraryFileName(const string& name, const string& version) {
46 if (version.size() == 0) {
49 filename = "lib" + name + "." + version + ".dylib";
52 if (version.empty()) {
55 filename = "lib" + name + ".so" + "." + version;
  /frameworks/base/core/java/android/app/timezone/
Utils.java 4 * Licensed under the Apache License, Version 2.0 (the "License");
24 static int validateVersion(String type, int version) {
25 if (version < 0 || version > 999) {
26 throw new IllegalArgumentException("Invalid " + type + " version=" + version);
28 return version;
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 36 * @param version This is the version number of the feature to test. In
37 * Level 2, the string can be either "2.0" or "1.0". If the version is
38 * not specified, supporting any version of the feature causes the
41 * specified version, <code>false</code> otherwise.
44 String version) {
46 return version == null || version.equals("1.0") || version.equals("2.0");
55 * future version of the DOM will provide a way for populating
    [all...]
  /external/curl/packages/Linux/RPM/
make_curl_rpm 22 # get version and release number
25 echo "version number?"
26 read version
28 version=$1
44 src_rpm="$target-$version-$release.src.rpm"
50 sed -e 's/^Packager: .*/Packager: $packager_name $packager_email/' $specs_dir/$target.spec > $specs_dir/$target-$version-$arch.spec
53 if ! rpm -ba $specs_dir/$target-$version-$arch.spec

Completed in 862 milliseconds

1 2 3 4 5 6 7 8 91011>>