Home
last modified time | relevance | path

Searched refs:current_version (Results 1 – 23 of 23) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/python24/
Dversioning_unittest.py36 def __init__(self, current_version): argument
43 version_info = current_version.split(".")
46 self.version = current_version + " Version details."
54 def _mock_sys(self, current_version): argument
55 return MockSys(current_version)
59 (comparison, current_version, min_version) = compare_version()
62 def compare_version(self, target_version, current_version=None): argument
64 if current_version is None:
65 current_version = "2.5.3"
66 mock_sys = self._mock_sys(current_version)
[all …]
Dversioning.py93 current_version = sysmodule.version.split()[0]
95 return (comparison, current_version, target_version)
120 (comparison, current_version, target_version) = \
131 % (current_version, target_version))
/external/chromium/chrome/browser/ui/gtk/
Dabout_chrome_dialog.cc106 std::string current_version = version_info.Version(); in ShowAboutDialogForProfile() local
108 current_version += " ("; in ShowAboutDialogForProfile()
109 current_version += version_info.LastChange(); in ShowAboutDialogForProfile()
110 current_version += ")"; in ShowAboutDialogForProfile()
114 current_version += " " + channel; in ShowAboutDialogForProfile()
154 GtkWidget* version_label = gtk_label_new(current_version.c_str()); in ShowAboutDialogForProfile()
/external/chromium/chrome/browser/diagnostics/
Drecon_diagnostics.cc172 std::string current_version = version_info.Version(); in ExecuteImpl() local
173 if (current_version.empty()) { in ExecuteImpl()
179 current_version += " " + version_modifier; in ExecuteImpl()
181 current_version += " GCB"; in ExecuteImpl()
183 RecordSuccess(ASCIIToUTF16(current_version)); in ExecuteImpl()
/external/chromium/chrome/browser/webdata/
Dweb_database.cc146 int current_version = meta_table_.GetVersionNumber(); in MigrateOldVersionsAsNeeded() local
147 switch (current_version) { in MigrateOldVersionsAsNeeded()
157 LOG(WARNING) << "Web database version " << current_version << in MigrateOldVersionsAsNeeded()
/external/chromium/chrome/browser/prefs/
Dbrowser_prefs.cc168 int current_version = in MigrateBrowserPrefs() local
171 if ((current_version & WINDOWS_PREFS) == 0) { in MigrateBrowserPrefs()
193 current_version | WINDOWS_PREFS); in MigrateBrowserPrefs()
/external/webkit/Tools/Scripts/
Dtest-webkitpy219 (comparison, current_version, minimum_version) = \
226 "to support." % (current_version, minimum_version))
/external/llvm/tools/edis/
DMakefile42 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version -Wl,$(EDIS_VERSION) \
/external/llvm/runtime/libprofile/
DMakefile34 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
/external/clang/tools/libclang/
DMakefile34 LLVMLibsOptions += -Wl,-current_version \
/external/chromium/chrome/browser/sync/util/
Duser_settings.cc97 int current_version) { in MigrateOldVersionsAsNeeded() argument
98 switch (current_version) { in MigrateOldVersionsAsNeeded()
105 LOG(WARNING) << "UserSettings database version " << current_version << in MigrateOldVersionsAsNeeded()
Duser_settings.h89 void MigrateOldVersionsAsNeeded(sqlite3* const handle, int current_version);
/external/llvm/tools/lto/
DMakefile43 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
/external/e2fsprogs/lib/
DMakefile.darwin-lib26 $(Q) (cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \
/external/chromium/chrome/browser/net/
Dpredictor_api.cc414 int current_version = in InitNetworkPredictor() local
416 if ((current_version & browser::DNS_PREFS) == 0) { in InitNetworkPredictor()
422 current_version | browser::DNS_PREFS); in InitNetworkPredictor()
/external/llvm/tools/llvm-shlib/
DMakefile45 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
/external/chromium/chrome/browser/extensions/
Dcrx_installer.cc423 scoped_ptr<Version> current_version( in CompleteInstall() local
425 if (current_version->CompareTo(*(extension_->version())) > 0) { in CompleteInstall()
/external/icu4c/config/
Dmh-darwin28 LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO…
/external/llvm/tools/llvmc/src/
DBase.td.in154 (parameter_option "current_version", (hidden),
369 (not_empty "current_version"), (forward "current_version"),
/external/libpcap/
DMakefile.in124 -current_version `cat VERSION`
/external/llvm/include/llvm/Support/
DMachO.h373 uint32_t current_version; member
/external/chromium/chrome/common/extensions/
Dextension.cc1791 scoped_ptr<Version> current_version( in InitFromValue() local
1793 if (!current_version.get()) { in InitFromValue()
1798 if (current_version->CompareTo(*minimum_version) < 0) { in InitFromValue()
/external/clang/include/clang/Driver/
DOptions.td230 def current__version : JoinedOrSeparate<"-current_version">;