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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/content/common/
webplugininfo_unittest.cc 18 // Some real-world plugin versions (spaces, commata, parentheses, 'r', oh my)
19 const char* versions[][2] = { local
33 for (size_t i = 0; i < arraysize(versions); i++) {
36 base::ASCIIToUTF16(versions[i][0]), &version);
39 EXPECT_EQ(versions[i][1], version.GetString());
  /external/chromium_org/chrome/common/extensions/docs/server2/
test_branch_utility.py 14 def __init__(self, versions, channels):
15 ''' Parameters: |version| is a mapping of versions to branches, and
16 |channels| is a mapping of channels to versions.
18 self._versions = versions
50 versions = self._versions.keys()
51 index = versions.index(channel_info.version)
52 if index == len(versions) - 1:
54 version = versions[index + 1]
60 versions = self._versions.keys()
61 index = versions.index(channel_info.version
    [all...]
app_yaml_helper.py 40 versions = [line.strip()[len(key_colon):].strip()
43 if not versions:
44 raise ValueError('No versions found for %s in %s' % (
46 if len(set(versions)) > 1:
47 raise ValueError('Inconsistent versions found for %s in %s: %s' % (
48 key, app_yaml, versions))
49 return versions[0]
54 because versions are typically not numbers but rather 2-0-9, 2-0-12,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_version.py 19 versions = (('1.5.1', '1.5.2b2', -1),
35 for v1, v2, wanted in versions:
51 versions = (('1.5.1', '1.5.2b2', -1),
61 for v1, v2, wanted in versions:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_version.py 19 versions = (('1.5.1', '1.5.2b2', -1),
35 for v1, v2, wanted in versions:
51 versions = (('1.5.1', '1.5.2b2', -1),
61 for v1, v2, wanted in versions:
  /build/tools/
check_radio_versions.py 51 versions = {} variable
63 versions[h] = v
65 if digest not in versions:
71 if versions[digest] not in values:
74 fn, versions[digest], key, sys.argv[1])
  /external/chromium_org/chrome/test/ispy/
ispy_api_unittest.py 27 'device', 'test', '1.1.1.1', 'versions.json',
29 self.ispy.UpdateExpectationVersion('1.1.1.1', 'versions.json')
31 'test1', 'device', 'test', '1.1.1.1', 'versions.json', self.white_img)
36 'test2', 'device', 'test', '1.1.1.1','versions.json', self.black_img)
40 self.ispy.UpdateExpectationVersion('1.0.0.0', 'versions.json')
41 self.ispy.UpdateExpectationVersion('1.0.4.0', 'versions.json')
42 self.ispy.UpdateExpectationVersion('2.1.5.0', 'versions.json')
43 self.ispy.UpdateExpectationVersion('1.1.5.0', 'versions.json')
44 self.ispy.UpdateExpectationVersion('0.0.0.0', 'versions.json')
45 self.ispy.UpdateExpectationVersion('1.1.5.0', 'versions.json'
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasOptions.java 41 /** Set of Exchange protocol versions we understand. */
86 final Header versions = response.getHeader("ms-asprotocolversions"); local
88 if (commands == null || versions == null) {
89 LogUtils.e(LOG_TAG, "OPTIONS response without commands or versions");
92 mProtocolVersion = getProtocolVersionFromHeader(versions);
112 * @param versionHeader The {@link Header} for the server's supported versions.
116 // The string is a comma separated list of EAS versions in ascending order
119 LogUtils.d(LOG_TAG, "Server supports versions: %s", supportedVersions);
  /external/chromium_org/chrome/browser/plugins/
plugin_finder_unittest.cc 55 const base::ListValue* versions = NULL; local
56 if (!plugin->GetList("versions", &versions))
59 for (base::ListValue::const_iterator it = versions->begin();
60 it != versions->end(); ++it) {
  /device/generic/goldfish/qemud/
Android.mk 5 # smooth builds even if the tree contains both versions.
  /external/chromium_org/net/quic/test_tools/
simple_quic_framer.h 56 void SetSupportedVersions(const QuicVersionVector& versions) {
57 framer_.SetSupportedVersions(versions);
  /frameworks/native/opengl/tools/glgen2/registry/
genheaders.py 127 # versions and extensions
274 versions = allVersions,
293 versions = allVersions,
312 versions = allVersions,
331 versions = allVersions,
350 versions = gles2onlyPat,
369 versions = gles2onlyPat,
388 versions = gles2and30and31Pat,
407 versions = gles2and30Pat,
426 versions = allVersions
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSVersion.py 205 passed in that doesn't match a value in versions python will throw a error.
209 versions = {
295 return versions[str(name)]
307 """Collect the list of installed visual studio versions.
310 A list of visual studio versions installed in descending order of
313 Only versions 8-10 are considered.
329 versions = []
348 versions.append(_CreateVersion(version_to_year[version],
353 versions.append(_CreateVersion(version_to_year[version] + 'e',
364 versions.append(_CreateVersion(version_to_year[version] + 'e'
    [all...]
  /external/chromium_org/third_party/lcov/bin/
install.sh 56 echo WARNING: Skipping uninstall for $TARGET - versions differ! >&2
  /external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
nacl.scons 9 # shared versions of this library
  /external/elfutils/0.153/src/
ldscript.y 66 static void add_versions (struct version *versions);
791 add_versions (struct version *versions)
793 struct version *lastp = versions;
795 if (versions == NULL)
799 versions = versions->next;
800 assert (versions != NULL);
805 add_id_list (versions->versionname, versions->local_names, true);
806 add_id_list (versions->versionname, versions->global_names, false)
    [all...]
  /external/chromium_org/net/tools/quic/
quic_client.h 168 void SetSupportedVersions(const QuicVersionVector& versions) {
169 supported_versions_ = versions;
244 // This vector contains QUIC versions which we currently support.
246 // element, with subsequent elements in descending order (versions can be
  /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
  /ndk/sources/host-tools/make-3.81/
getopt1.c 50 #include <gnu-versions.h>
  /external/chromium_org/chrome/browser/extensions/
extension_assets_manager_chromeos.cc 429 std::vector<std::string> versions; local
430 versions.reserve(extension_info->size());
434 versions.push_back(it.key());
438 for (std::vector<std::string>::const_iterator it = versions.begin();
439 it != versions.end(); it++) {
490 std::vector<std::string> versions; local
491 versions.reserve(extension_info->size());
494 versions.push_back(it.key());
497 for (std::vector<std::string>::const_iterator it = versions.begin();
498 it != versions.end(); it++)
    [all...]
  /build/core/combo/
mac_version.mk 1 # Detect Mac OS X and SDK versions.
  /cts/suite/cts/deviceTests/dram/
Android.mk 21 # Include both the 32 and 64 bit versions
  /cts/suite/cts/deviceTests/opengl/
Android.mk 21 # Include both the 32 and 64 bit versions
  /cts/suite/cts/deviceTests/simplecpu/
Android.mk 21 # Include both the 32 and 64 bit versions
  /cts/tests/core/
ctscore.mk 28 # Include both the 32 and 64 bit versions of libjavacoretests,

Completed in 645 milliseconds

1 2 3 4 5 6 7 8 91011