/external/chromium_org/chrome/common/ |
chrome_version_info.cc | 101 std::string current_version; local 103 current_version += Version(); 105 current_version += " ("; 106 current_version += l10n_util::GetStringUTF8(IDS_ABOUT_VERSION_UNOFFICIAL); 107 current_version += " "; 108 current_version += LastChange(); 109 current_version += " "; 110 current_version += OSType(); 111 current_version += ")"; 115 current_version += " " + modifier [all...] |
/external/chromium_org/chrome/common/extensions/manifest_handlers/ |
minimum_chrome_version_checker.cc | 43 Version current_version(current_version_info.Version()); 44 if (!current_version.IsValid()) { 49 if (current_version.CompareTo(minimum_version) < 0) {
|
/external/chromium_org/components/webdata/common/ |
web_database.cc | 127 int current_version = std::max(meta_table_.GetVersionNumber(), local 129 if (current_version > meta_table_.GetVersionNumber()) 130 ChangeVersion(&meta_table_, current_version, false); 132 if (current_version < 20) { 143 LOG(WARNING) << "Web database version " << current_version << 149 for (int next_version = current_version + 1;
|
/external/chromium_org/chrome/browser/component_updater/pnacl/ |
pnacl_component_installer.h | 73 base::Version current_version() const { return current_version_; } function in class:PnaclComponentInstaller 75 void set_current_version(const base::Version& current_version) { 76 current_version_ = current_version;
|
pnacl_component_installer.cc | 71 void CheckVersionCompatiblity(const base::Version& current_version) { 75 current_version.IsOlderThan(kMinPnaclVersion)); 269 if (current_version().CompareTo(version) > 0) { 300 if (current_version().Equals(Version(kNullVersion))) 304 current_version().GetString()).AppendASCII(file); 310 pnacl_component.version = current_version(); 321 void FinishPnaclUpdateRegistration(const Version& current_version, 325 pci->set_current_version(current_version); 326 CheckVersionCompatiblity(current_version); 350 Version current_version(kNullVersion) [all...] |
/external/chromium_org/chrome/browser/extensions/ |
chrome_extensions_browser_client.cc | 133 std::string current_version = current_version_info.Version(); local 135 current_version); 141 return last_version.IsOlderThan(current_version);
|
/external/chromium_org/chrome/browser/performance_monitor/ |
performance_monitor_util.cc | 75 const std::string& current_version) { 80 event.current_version = current_version;
|
performance_monitor_util.h | 49 const std::string& current_version);
|
/external/llvm/runtime/libprofile/ |
Makefile | 29 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
|
/external/chromium_org/chrome/browser/prefs/ |
browser_prefs.cc | 507 int current_version = local 512 if (!(current_version & DNS_PREFS)) { 519 current_version |= DNS_PREFS; 521 current_version); 525 if (!(current_version & WINDOWS_PREFS)) { 544 current_version |= WINDOWS_PREFS; 546 current_version); 549 if (!(current_version & GOOGLE_URL_TRACKER_PREFS)) { 567 current_version |= GOOGLE_URL_TRACKER_PREFS; 569 current_version); [all...] |
/external/chromium_org/chrome/tools/build/win/ |
create_installer_archive.py | 173 def Readconfig(input_file, current_version): 180 current_version) 192 def CreateArchiveFile(options, staging_dir, current_version, prev_version): 232 current_version + '_from_' + prev_version + \ 246 def PrepareSetupExec(options, current_version, prev_version): 259 setup_file = SETUP_PATCH_FILE_PREFIX + '_' + current_version + \ 430 def DoComponentBuildTasks(staging_dir, build_dir, target_arch, current_version): 433 version_dir = os.path.join(chrome_dir, current_version) 489 '%s.manifest' % current_version, 498 current_version = BuildVersion(options.build_dir [all...] |
/bionic/libc/tools/zoneinfo/ |
update-tzdata.py | 173 current_version = GetCurrentTzDataVersion() 174 current_filename = '%s.tar.gz' % current_version 184 print 'You already have the latest tzdata (%s)!' % current_version
|
/external/chromium/chrome/browser/prefs/ |
browser_prefs.cc | 168 int current_version = local 171 if ((current_version & WINDOWS_PREFS) == 0) { 193 current_version | WINDOWS_PREFS);
|
/external/chromium/chrome/browser/webdata/ |
web_database.cc | 146 int current_version = meta_table_.GetVersionNumber(); local 147 switch (current_version) { 157 LOG(WARNING) << "Web database version " << current_version <<
|
/external/chromium_org/chrome/installer/util/ |
product_unittest.cc | 111 Version current_version(kCurrentVersion); 113 UTF8ToWide(current_version.GetString()).c_str()); 121 EXPECT_TRUE(chrome_state->version().Equals(current_version));
|
installer_state.cc | 507 scoped_ptr<Version> current_version; local 550 current_version.reset(new Version(*version)); 553 return current_version.release(); 557 const Version* current_version, 559 DCHECK(current_version == NULL || current_version->IsValid()); 562 (current_version == NULL || 563 (current_version->CompareTo(critical_update_version_) < 0)) && 634 scoped_ptr<Version> current_version(GetCurrentVersion(machine_state)); 635 if (!current_version) [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
about_chrome_dialog.cc | 106 std::string current_version = version_info.Version(); local 108 current_version += " ("; 109 current_version += version_info.LastChange(); 110 current_version += ")"; 114 current_version += " " + channel; 154 GtkWidget* version_label = gtk_label_new(current_version.c_str());
|
/external/chromium_org/chrome/installer/setup/ |
install_worker.h | 83 // |current_version| can be NULL to indicate no Chrome is currently installed. 86 const base::Version* current_version, 102 // |current_version| can be NULL to indicate no Chrome is currently installed. 109 const base::Version* current_version,
|
install.cc | 171 // current_version: returns the current active version (if any) 188 scoped_ptr<Version>* current_version) { 189 DCHECK(current_version); 193 current_version->reset(installer_state.GetCurrentVersion(original_state)); 202 current_version->get(), 214 base::PathExists(new_chrome_exe) && current_version->get() && 215 new_version.Equals(*current_version->get()) ? 228 if (!current_version->get()) { 233 if (new_version.Equals(**current_version)) { 238 if (new_version.CompareTo(**current_version) > 0) [all...] |
/external/e2fsprogs/lib/ |
Makefile.darwin-lib | 26 $(Q) (cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \
|
/external/chromium_org/chrome/browser/ui/find_bar/ |
find_tab_helper.h | 77 void RequestFindMatchRects(int current_version);
|
/external/chromium_org/chrome_frame/ |
dll_redirector.cc | 246 scoped_ptr<Version> current_version; local 248 current_version.reset( 250 DCHECK(current_version->IsValid()); 253 return current_version.release();
|
/external/clang/tools/libclang/ |
Makefile | 45 LLVMLibsOptions += -Wl,-current_version \
|
/external/icu4c/config/ |
mh-darwin | 32 LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir $(MIDDLE_SO_TARGET)) 34 LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(notdir $(MIDDLE_SO_TARGET))
|
/external/llvm/tools/lto/ |
Makefile | 36 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
|