HomeSort by relevance Sort by last modified time
    Searched refs:versions (Results 151 - 175 of 1060) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/support/jetifier/jetifier/core/src/test/kotlin/com/android/tools/build/jetifier/core/config/
ConfigParserTest.kt 47 " versions: {\n" +
71 Truth.assertThat(jsonConfig.versions!!.size).isEqualTo(1)
72 Truth.assertThat(jsonConfig.versions!!["latestReleased"])
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/testdata/versions/
test.go 7 // the resulting .a file appropriately named in the versions
10 // In the testdata/versions:
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/testdata/versions/
test.go 7 // the resulting .a file appropriately named in the versions
10 // In the testdata/versions:
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
mips16e.s 12 # these jumps should all be converted to compact versions
  /cts/hostsidetests/sustainedperf/dhrystone/
Android.mk 14 # Include both the 32 and 64 bit versions
  /frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/transform/pom/
PomDocumentTest.kt 114 versions = DependencyVersions(mapOf("newSlVersion" to "1.0.0-test"))
272 versions: DependencyVersions = DependencyVersions.EMPTY
305 val context = TransformationContext(config, versions = versions)
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
pack.py 228 versions = []
235 versions.append(
247 assert len(versions) == 0 or last_num_fields != versions[-1].num_fields
248 versions.append(VersionInfo(last_version, last_num_fields,
250 return versions
  /external/skia/infra/bots/assets/
asset_utils.py 100 """List available versions of the asset."""
102 versions = []
110 versions.append(int(trimmed))
114 versions.sort()
115 return versions
178 versions = [int(f[:-len(suffix)]) for f in bnames if f.endswith(suffix)]
179 versions.sort()
180 return versions
265 versions = self.get_available_versions()
266 if len(versions) == 0
    [all...]
  /external/skqp/infra/bots/assets/
asset_utils.py 100 """List available versions of the asset."""
102 versions = []
110 versions.append(int(trimmed))
114 versions.sort()
115 return versions
178 versions = [int(f[:-len(suffix)]) for f in bnames if f.endswith(suffix)]
179 versions.sort()
180 return versions
265 versions = self.get_available_versions()
266 if len(versions) == 0
    [all...]
  /system/libvintf/
HalManifest.cpp 51 for (const auto& v : it->second.versions) {
56 for (const auto& v : hal.versions) {
82 auto& existingVersions = existingHal.versions;
97 // If there are <version> tags, remove all existing major versions that causes a conflict.
98 for (const Version& versionToAdd : halToAdd.versions) {
189 std::set<Version> versions; local
196 manifestHal->appendAllVersions(&versions);
199 if (!matrixHal.isCompatible(manifestInstances, versions)) {
205 multilineIndent(oss, 8, versions);
264 "Supported versions in framework manifest are:"
    [all...]
  /external/elfutils/src/
ldscript.y 58 static void add_versions (struct version *versions);
783 add_versions (struct version *versions)
785 struct version *lastp = versions;
787 if (versions == NULL)
791 versions = versions->next;
792 assert (versions != NULL);
797 add_id_list (versions->versionname, versions->local_names, true);
798 add_id_list (versions->versionname, versions->global_names, false)
    [all...]
  /external/tensorflow/tensorflow/core/graph/
graph_constructor.cc 32 #include "tensorflow/core/framework/versions.h"
33 #include "tensorflow/core/framework/versions.pb.h"
117 // versions and library may be nullptr
119 const Options& opts, NodeDefSlice node_defs, const VersionDef* versions,
124 if (versions) {
125 TF_RETURN_IF_ERROR(CheckVersions(*versions, TF_GRAPH_DEF_VERSION,
129 GraphConstructor c(opts, node_defs, versions, library, g, refiner,
139 const VersionDef* versions,
147 versions_(versions),
150 original_versions_(g->versions()),
1055 VersionDef versions = g_->versions(); local
    [all...]
  /external/google-benchmark/
mingw.py 60 versions = {}
73 version = versions.setdefault(version, {})
84 return versions
181 versions = repository(log = log)
184 version = version or max(versions.keys())
192 keys = versions[version][arch].keys()
200 keys = versions[version][arch][threading].keys()
208 revision = max(versions[version][arch][threading][exceptions].keys())
213 url = versions[version][arch][threading][exceptions][revision]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/
mingw.py 60 versions = {}
73 version = versions.setdefault(version, {})
84 return versions
181 versions = repository(log = log)
184 version = version or max(versions.keys())
192 keys = versions[version][arch].keys()
200 keys = versions[version][arch][threading].keys()
208 revision = max(versions[version][arch][threading][exceptions].keys())
213 url = versions[version][arch][threading][exceptions][revision]
  /external/skia/tools/gpu/gl/glx/
CreatePlatformGLTestContext_glx.cpp 312 auto versions = isES ? gles_versions : gl_versions; local
315 for (int i = versions.size() - 1; i >= 0 ; i--) {
320 GLX_CONTEXT_MAJOR_VERSION_ARB, versions[i].first,
321 GLX_CONTEXT_MINOR_VERSION_ARB, versions[i].second,
325 // the ES2 flag should work even for higher versions
327 } else if (versions[i].first > 2) {
  /external/skqp/tools/gpu/gl/glx/
CreatePlatformGLTestContext_glx.cpp 312 auto versions = isES ? gles_versions : gl_versions; local
315 for (int i = versions.size() - 1; i >= 0 ; i--) {
320 GLX_CONTEXT_MAJOR_VERSION_ARB, versions[i].first,
321 GLX_CONTEXT_MINOR_VERSION_ARB, versions[i].second,
325 // the ES2 flag should work even for higher versions
327 } else if (versions[i].first > 2) {
  /external/tensorflow/tensorflow/core/util/
tensor_slice_writer.cc 20 #include "tensorflow/core/framework/versions.pb.h"
90 VersionDef* versions = sts_.mutable_meta()->mutable_versions(); local
91 versions->set_producer(TF_CHECKPOINT_VERSION);
92 versions->set_min_consumer(TF_CHECKPOINT_VERSION_MIN_CONSUMER);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
VersionInfo.java 76 ArrayMap<Class<?>, Version> versions = new ArrayMap<>(mVersions); local
78 Version v = versions.remove(aClass);
91 versions.forEach((aClass, version) -> {
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseCpuLib/Arm/
CpuSleep.S 5 # ARMv6 versions was:
  /external/autotest/client/common_lib/cros/
cr50_utils.py 24 # strings. There are two usb_updater commands that will return versions:
27 # 'fwver' is used to get the running RO and RW versions from cr50
44 # Current versions:
111 assert ver_a == ver_b, ('Versions do not match: %s %s %s %s' %
116 """Compare the versions. Return the newest one. If they are the same return
128 def GetVersion(versions, name):
131 Get the version for each key in the versions dictionary that contains the
132 substring name. Make sure all of the versions match and return the version
133 string. Raise an error if the versions don't match.
138 name: the string used to find the relevant items in versions
    [all...]
  /external/brotli/scripts/
.travis.sh 14 which ${CC} || brew install homebrew/versions/gcc$(echo "${CC#*-}" | sed 's/\.//')
  /external/curl/docs/cmdline-opts/
proxy.d 17 Prior versions may ignore the protocol and use http:// instead.
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlmain.i 22 versions, but it hasn't been tested. As far as I know, this
  /toolchain/binutils/binutils-2.27/config/
multi.m4 17 [ --enable-multilib build many library versions (default)],
  /compatibility/cdd/3_software/
3_1_managed-api-compatibility.md 32 of both the shared library `ExtShared` and services `ExtServices` with versions
33 higher than or equal to the minimum versions allowed per each API level.

Completed in 498 milliseconds

1 2 3 4 5 67 8 91011>>