HomeSort by relevance Sort by last modified time
    Searched defs:current_version (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_component_installer.h 64 base::Version current_version() const { return current_version_; } function in class:component_updater::PnaclComponentInstaller
66 void set_current_version(const base::Version& current_version) {
67 current_version_ = current_version;
  /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/browser/prefs/
browser_prefs.cc 539 int current_version = local
544 if (!(current_version & DNS_PREFS)) {
551 current_version |= DNS_PREFS;
553 current_version);
557 if (!(current_version & WINDOWS_PREFS)) {
568 current_version |= WINDOWS_PREFS;
570 current_version);
573 if (!(current_version & GOOGLE_URL_TRACKER_PREFS)) {
591 current_version |= GOOGLE_URL_TRACKER_PREFS;
593 current_version);
    [all...]
  /external/chromium_org/components/webdata/common/
web_database.cc 133 int current_version = std::max(meta_table_.GetVersionNumber(), local
135 if (current_version > meta_table_.GetVersionNumber())
136 ChangeVersion(&meta_table_, current_version, false);
138 if (current_version < 20) {
149 LOG(WARNING) << "Web database version " << current_version
155 for (int next_version = current_version + 1;
  /external/chromium_org/content/browser/dom_storage/
dom_storage_database.cc 184 SchemaVersion current_version = DetectSchemaVersion(); local
186 if (current_version == V2) {
188 } else if (current_version == V1) {
  /external/qemu/android/emulation/
CpuAccelerator.cpp 137 // |current_version| is its current API version.
140 uint32_t current_version; member in struct:android::__anon32829::HaxModuleVersion
205 if (hax_version.current_version < HAX_MIN_VERSION) {
208 hax_version.current_version,
216 hax_version.current_version);
268 if (hax_version.current_version < hax_version.compat_version) {
272 hax_version.current_version,
279 if (hax_version.current_version < HAX_MIN_VERSION) {
282 hax_version.current_version,
290 hax_version.current_version);
    [all...]
  /external/chromium_org/chrome/browser/extensions/
chrome_extensions_browser_client.cc 217 std::string current_version = current_version_info.Version(); local
219 current_version);
225 return last_version.IsOlderThan(current_version);
crx_installer.h 202 const std::string& current_version() const { return current_version_; } function in class:extensions::CrxInstaller
  /external/chromium_org/chrome/browser/diagnostics/
recon_diagnostics.cc 366 std::string current_version = version_info.Version(); variable
367 if (current_version.empty()) {
374 current_version += " " + version_modifier;
376 current_version += " GCB";
378 RecordSuccess(current_version); variable
  /external/chromium_org/sync/engine/
syncer_proto_util.cc 258 const int current_version = local
260 msg->set_protocol_version(current_version);
  /external/chromium_org/chrome/browser/performance_monitor/
performance_monitor.cc 309 std::string current_version = version.Version(); local
313 // We should never have a current_version which is older than the
315 DCHECK(current_version >= previous_version);
321 if (current_version > previous_version) {
322 database_->AddStateValue(kStateChromeVersion, current_version);
325 base::Time::Now(), previous_version, current_version);
performance_monitor_browsertest.cc 585 std::string current_version; local
589 ASSERT_TRUE(value->GetString("currentVersion", &current_version));
590 ASSERT_EQ(version_string, current_version);
  /external/chromium_org/chrome/installer/util/
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_org/chrome/browser/devtools/device/
port_forwarding_controller.cc 244 ParsedVersion current_version = browser->GetParsedVersion(); local
245 if (IsPortForwardingSupported(current_version) &&
246 IsVersionLower(newest_version, current_version)) {
248 newest_version = current_version;
  /external/chromium_org/chrome/installer/test/
alternate_version_generator.cc 308 ChromeVersion current_version; member in struct:__anon10280::VisitResourceContext
333 // Replace all occurrences of current_version with new_version
339 ctx.current_version.high(), ctx.current_version.low()
407 ctx->new_version.set_value(ctx->current_version.value() + incrementer);
424 if (!GetSetupExeVersion(work_dir, &ctx.current_version)) {
427 ctx.current_version_str = ctx.current_version.ToString();
658 if (!GetFileVersion(original_file, &ctx.current_version)) {
663 ctx.current_version_str = ctx.current_version.ToString();
688 if (!GetFileVersion(target_file, &ctx.current_version)) {
    [all...]
  /external/llvm/include/llvm/Support/
MachO.h 628 uint32_t current_version; member in struct:llvm::MachO::dylib
    [all...]

Completed in 393 milliseconds