/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | branch_utility.py | 22 def __init__(self, channel, branch, version): argument 27 assert isinstance(version, int) or version == 'trunk', version 30 self.version = version 85 if channel_info.version < stable_info.version: 86 return self.GetStableChannelInfo(channel_info.version + 1) 95 if channel_info.version <= 5: 98 return self.GetStableChannelInfo(channel_info.version - 1) 121 return tuple(self.GetChannelInfo(channel).version 130 version = self._ExtractFromVersionJson(channel, 'version') 131 if version != 'trunk': [all …]
|
D | test_branch_utility.py | 33 version = self._channels[channel] 34 return ChannelInfo(channel, self.GetBranchForVersion(version), version) 36 def GetStableChannelInfo(self, version): argument 37 return ChannelInfo('stable', self.GetBranchForVersion(version), version) 39 def GetBranchForVersion(self, version): argument 40 return self._versions[version] 42 def GetChannelForVersion(self, version): argument 43 if version <= self._channels['stable']: 46 if self._channels[channel] == version: 51 index = versions.index(channel_info.version) [all …]
|
D | caching_rietveld_patcher.py | 15 def _MakeKey(path, version): argument 16 return '%s@%s' % (path, version) 18 def _ToObjectStoreValue(raw_value, version): argument 19 return dict((_MakeKey(key, version), raw_value[key]) 27 version, argument 33 self._version = version 76 version, time = value 78 return version 80 version = self._patcher.GetVersion() 82 (version, self._datetime.now())) [all …]
|
D | patched_file_system_test.py | 137 version = 'patched_%s' % self._patcher.GetVersion() 138 old_version = self._host_file_system.Stat('dir1/file1.html').version 150 StatInfo(version, {'subdir1/': version})) 152 StatInfo(version, {'sub2.txt': version, 157 expected.version = version 158 expected.child_versions.update({'file2.html': version, 159 'newsubdir/': version}) 165 StatInfo(version, {'a.js': version})) 167 StatInfo(version)) 169 StatInfo(version, {'1.html': version})) [all …]
|
D | github_file_system.py | 22 def _MakeBlobstoreKey(version): argument 23 return ZIP_KEY + '.' + str(version) 98 self._GetZip(self.Stat(ZIP_KEY).version) 100 def _GetZip(self, version): argument 102 blob = self._blobstore.Get(_MakeBlobstoreKey(version), 111 self._blobstore.Delete(_MakeBlobstoreKey(version), 121 version, 123 self._version = version 156 version = self.Stat(ZIP_KEY).version 157 if version != self._version: [all …]
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
D | RC5ParameterSpecTest.java | 44 int version = 1; in testRC5ParameterSpec1() local 50 new RC5ParameterSpec(version, rounds, wordSize, null); in testRC5ParameterSpec1() 57 new RC5ParameterSpec(version, rounds, wordSize+8, iv); in testRC5ParameterSpec1() 64 new RC5ParameterSpec(version, rounds, wordSize, new byte[] {1, 2, 3}); in testRC5ParameterSpec1() 70 RC5ParameterSpec ps = new RC5ParameterSpec(version, rounds, in testRC5ParameterSpec1() 85 int version = 1; in testRC5ParameterSpec2() local 92 new RC5ParameterSpec(version, rounds, wordSize, null, offset); in testRC5ParameterSpec2() 99 new RC5ParameterSpec(version, rounds, wordSize+8, iv, offset); in testRC5ParameterSpec2() 106 new RC5ParameterSpec(version, rounds, wordSize, iv, offset+1); in testRC5ParameterSpec2() 113 new RC5ParameterSpec(version, rounds, wordSize, new byte[] { 1, 2, in testRC5ParameterSpec2() [all …]
|
/external/chromium_org/third_party/opus/src/win32/ |
D | genversion.bat | 5 for /f %%v in ('git describe --tags --match "v*"') do set version=%%v variable 7 if not "%version%"=="" goto :gotversion 9 if exist "%~dp0..\version.mk" goto :getversion 11 echo Git cannot be found, nor can version.mk. Generating unknown version. 13 set version=unknown variable 19 for /f "delims== tokens=2" %%v in (%~dp0..\version.mk) do set version=%%v variable 21 set version=!version:^"=! variable 22 set version=!version: =! variable 26 set version_out=#define %2 "%version%" 27 set version_mk=%2 = "%version%" [all …]
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
D | config.js | 40 'WebKit XP': {version: 'xp'}, property 41 'WebKit Win7': {version: 'win7'}, property 42 'WebKit Win7 (dbg)': {version: 'win7', debug: true}, property 43 'WebKit Linux': {version: 'lucid', is64bit: true}, property 44 'WebKit Linux 32': {version: 'lucid'}, property 45 'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true}, property 46 'WebKit Mac10.6': {version: 'snowleopard'}, property 47 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true}, property 48 'WebKit Mac10.7': {version: 'lion'}, property 49 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true}, property [all …]
|
/external/chromium_org/content/public/common/ |
D | webplugininfo.cc | 38 version(rhs.version), in WebPluginInfo() 50 version = rhs.version; in operator =() 64 version(fake_version), in WebPluginInfo() 76 std::string version = UTF16ToASCII(version_string); in CreateVersionFromString() local 77 base::RemoveChars(version, ") ", &version); in CreateVersionFromString() 78 std::replace(version.begin(), version.end(), 'd', '.'); in CreateVersionFromString() 79 std::replace(version.begin(), version.end(), 'r', '.'); in CreateVersionFromString() 80 std::replace(version.begin(), version.end(), ',', '.'); in CreateVersionFromString() 81 std::replace(version.begin(), version.end(), '(', '.'); in CreateVersionFromString() 82 std::replace(version.begin(), version.end(), '_', '.'); in CreateVersionFromString() [all …]
|
/external/chromium_org/chrome/browser/component_updater/ |
D | pepper_flash_component_installer.cc | 107 Version version(path.BaseName().MaybeAsASCII()); in GetPepperFlashDirectory() local 108 if (!version.IsValid()) in GetPepperFlashDirectory() 111 if (version.CompareTo(*latest_version) > 0) { in GetPepperFlashDirectory() 114 *latest_version = version; in GetPepperFlashDirectory() 120 *latest_version = version; in GetPepperFlashDirectory() 160 plugin_info->version = flash_version.GetString(); in MakePepperFlashPluginInfo() 182 const Version& version) { in RegisterPepperFlashWithChrome() argument 185 if (!MakePepperFlashPluginInfo(path, version, true, &plugin_info)) in RegisterPepperFlashWithChrome() 196 Version registered_version(UTF16ToUTF8(it->version)); in RegisterPepperFlashWithChrome() 198 version.CompareTo(registered_version) <= 0) { in RegisterPepperFlashWithChrome() [all …]
|
D | recovery_component_installer.cc | 49 explicit RecoveryComponentInstaller(const Version& version, 70 Version version(prefs->GetString(prefs::kRecoveryComponentVersion)); in RecoveryRegisterHelper() local 71 if (!version.IsValid()) { in RecoveryRegisterHelper() 78 recovery.installer = new RecoveryComponentInstaller(version, prefs); in RecoveryRegisterHelper() 79 recovery.version = version; in RecoveryRegisterHelper() 86 void RecoveryUpdateVersionHelper(const Version& version, PrefService* prefs) { in RecoveryUpdateVersionHelper() argument 88 prefs->SetString(prefs::kRecoveryComponentVersion, version.GetString()); in RecoveryUpdateVersionHelper() 92 const Version& version, PrefService* prefs) in RecoveryComponentInstaller() argument 93 : current_version_(version), prefs_(prefs){ in RecoveryComponentInstaller() 94 DCHECK(version.IsValid()); in RecoveryComponentInstaller() [all …]
|
D | swiftshader_component_installer.cc | 71 Version version(path.BaseName().MaybeAsASCII()); in GetLatestSwiftShaderDirectory() local 72 if (!version.IsValid()) in GetLatestSwiftShaderDirectory() 74 if (version.CompareTo(*latest) > 0 && in GetLatestSwiftShaderDirectory() 79 *latest = version; in GetLatestSwiftShaderDirectory() 99 explicit SwiftShaderComponentInstaller(const Version& version); 116 const Version& version) : current_version_(version) { in SwiftShaderComponentInstaller() argument 117 DCHECK(version.IsValid()); in SwiftShaderComponentInstaller() 133 Version version(proposed_version.c_str()); in Install() local 134 if (!version.IsValid()) in Install() 136 if (current_version_.CompareTo(version) >= 0) in Install() [all …]
|
/external/objenesis/tck/test/org/springframework/osgi/test/internal/ |
D | boot-bundles.properties | 42 # format: <groupId,artifactId,version>=+/-15 44 # - see Spring org.springframework.core.JdkVersion for jdk major version codes. 56 ignore.backport.version=3.1.0 57 ignore.junit.version=3.8.2 58 # EDITED: Upgrade the version from 1.2.15-SNAPSHOT to ${log4j.version} 59 ignore.log4j.version=${log4j.version} 61 ignore.spring.version=2.5.6.SEC01 62 # EDITED: Filter the version to match the pom 63 ignore.spring.osgi.version=${spring.osgi.version} 65 ignore.slf4j.version=${slf4j.version} [all …]
|
/external/qemu/distrib/sdl-1.2.15/include/ |
D | SDL_syswm.h | 73 SDL_version version; 85 SDL_version version; 121 SDL_version version; 127 SDL_version version ; 137 SDL_version version; 146 SDL_version version; 155 SDL_version version; 162 SDL_version version; 174 SDL_version version; 180 SDL_version version; [all …]
|
/external/clang/test/SemaCXX/ |
D | vararg-non-pod.cpp | 3 extern char version[]; 19 g(10, version); in t1() 23 ptr(10, version); in t1() 31 c.g(10, version); in t2() 35 (c.*ptr)(10, version); in t2() 38 C::h(10, version); in t2() 42 static_ptr(10, version); in t2() 52 block(10, version); in t3() 67 d(10, version); in t4() 174 (get_f_ptr())(10, version); in test() [all …]
|
/external/chromium/chrome/browser/chromeos/ |
D | version_loader.cc | 100 std::string version = lines[i].substr(std::string(prefix).size()); in ParseVersion() local 101 if (version.size() > 1 && version[0] == '"' && in ParseVersion() 102 version[version.size() - 1] == '"') { in ParseVersion() 104 version = version.substr(1, version.size() - 2); in ParseVersion() 106 return version; in ParseVersion() 142 std::string version; in GetVersion() local 146 version = ParseVersion( in GetVersion() 154 if (version.size() > kTrimVersion) { in GetVersion() 155 version = version.substr(kTrimVersion); in GetVersion() 157 size_t first_dot = version.find("."); in GetVersion() [all …]
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
D | update_nacl_manifest.py | 143 def GetTrunkRevision(self, version): argument 213 return [(platform, channel, version, date) 214 for platform, channel, version, date in csv.reader(url_stream)] 216 def GetTrunkRevision(self, version): argument 218 url = 'http://omahaproxy.appspot.com/revision.json?version=%s' % (version,) 374 def CanaryKey(version): argument 375 return version[:-1] 385 def GetAvailablePlatformArchivesFor(self, version, allow_trunk_revisions): argument 400 archive_urls = self._GetAvailableArchivesFor(version) 405 if SplitVersion(version) >= SplitVersion(extra_archive_min_version): [all …]
|
/external/chromium_org/sql/ |
D | meta_table.cc | 100 int version = s.ColumnInt(0); in RazeIfDeprecated() local 102 if (version <= deprecated_version) { in RazeIfDeprecated() 115 bool MetaTable::Init(Connection* db, int version, int compatible_version) { in Init() argument 121 DCHECK_GT(version, 0); in Init() 137 SetVersionNumber(version); in Init() 149 void MetaTable::SetVersionNumber(int version) { in SetVersionNumber() argument 150 DCHECK_GT(version, 0); in SetVersionNumber() 151 SetValue(kVersionKey, version); in SetVersionNumber() 155 int version = 0; in GetVersionNumber() local 156 return GetValue(kVersionKey, &version) ? version : 0; in GetVersionNumber() [all …]
|
/external/libpng/ |
D | CHANGES | 4 version 0.2 8 version 0.3 19 version 0.4 30 version 0.5 35 version 0.6 41 version 0.7 47 version 0.71 [June, 1995] 51 version 0.8 61 added version info 68 version 0.81 [August, 1995] [all …]
|
/external/chromium/chrome/browser/sync/glue/ |
D | extension_util.cc | 55 ss << "version: " << specifics.version() << ", "; in ExtensionSpecificsToString() 70 scoped_ptr<Version> version( in IsExtensionSpecificsValid() local 71 Version::GetVersionFromString(specifics.version())); in IsExtensionSpecificsValid() 72 if (!version.get()) { in IsExtensionSpecificsValid() 96 (a.version() == b.version()) && in AreExtensionSpecificsEqual() 169 scoped_ptr<Version> version( in MergeExtensionSpecifics() local 170 Version::GetVersionFromString(specifics.version())); in MergeExtensionSpecifics() 171 CHECK(version.get()); in MergeExtensionSpecifics() 173 Version::GetVersionFromString(merged_specifics->version())); in MergeExtensionSpecifics() 175 if (version->CompareTo(*merged_version) >= 0) { in MergeExtensionSpecifics() [all …]
|
/external/chromium/app/sql/ |
D | meta_table.cc | 30 bool MetaTable::Init(Connection* db, int version, int compatible_version) { in Init() argument 42 SetVersionNumber(version); in Init() 104 void MetaTable::SetVersionNumber(int version) { in SetVersionNumber() argument 105 SetValue(kVersionKey, version); in SetVersionNumber() 109 int version = 0; in GetVersionNumber() local 110 if (!GetValue(kVersionKey, &version)) in GetVersionNumber() 112 return version; in GetVersionNumber() 115 void MetaTable::SetCompatibleVersionNumber(int version) { in SetCompatibleVersionNumber() argument 116 SetValue(kCompatibleVersionKey, version); in SetCompatibleVersionNumber() 120 int version = 0; in GetCompatibleVersionNumber() local [all …]
|
/external/llvm/autoconf/ |
D | mkinstalldirs | 38 --version) 77 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 86 test -d ./--version && rmdir ./--version 90 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && 91 test ! -d ./--version; then 96 for d in ./-m ./-p ./--version "./$dirmode";
|
/external/llvm/projects/sample/autoconf/ |
D | mkinstalldirs | 38 --version) 77 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then 86 test -d ./--version && rmdir ./--version 90 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && 91 test ! -d ./--version; then 96 for d in ./-m ./-p ./--version "./$dirmode";
|
/external/chromium_org/ppapi/generators/test_version/ |
D | versions.idl | 19 [version=0.0] 24 [version=0.0] int32_t Bar([in] int32_t x); 28 [version=2.0] int32_t Bar([in] int32_t x, [in] int32_t y, [in] int32_t z); 33 [version=0.0] 38 [version=0.0] iFoo x; 42 [version=0.0] 47 [version=0.0] iFoo x; 51 [version=1.0] int32_t y; 58 typedef int32_t callback_t([in] int32_t x, [in, version=2.0] int32_t y); 65 int32_t Bar([in, version=1.0] callback_t cb);
|
/external/chromium_org/native_client_sdk/src/tools/ |
D | getos.py | 69 version = None 75 version = value.strip() 79 if revision == None or version == None: 84 version = int(version) 88 return (version, revision) 204 def ParseVersion(version): argument 205 if '.' in version: 206 version = version.split('.') 208 version = (version, '0') 211 return tuple(int(x) for x in version) [all …]
|