HomeSort by relevance Sort by last modified time
    Searched refs:cur_version (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/chrome/browser/history/
archived_database.cc 113 int cur_version = meta_table_.GetVersionNumber(); local
114 if (cur_version == 1) {
119 ++cur_version;
120 meta_table_.SetVersionNumber(cur_version);
122 std::min(cur_version, kCompatibleVersionNumber));
125 if (cur_version == 2) {
127 ++cur_version;
128 meta_table_.SetVersionNumber(cur_version);
131 if (cur_version == 3) {
138 ++cur_version;
    [all...]
history_database.cc 322 int cur_version = meta_table_.GetVersionNumber(); local
326 if (cur_version == 15) {
331 ++cur_version;
332 meta_table_.SetVersionNumber(cur_version);
334 std::min(cur_version, kCompatibleVersionNumber));
337 if (cur_version == 16) {
347 ++cur_version;
348 meta_table_.SetVersionNumber(cur_version);
351 if (cur_version == 17) {
354 ++cur_version;
    [all...]
thumbnail_database.cc 307 sql::InitStatus ThumbnailDatabase::CantUpgradeToVersion(int cur_version) {
309 cur_version << ".";
357 int cur_version = meta_table_.GetVersionNumber(); local
358 if (cur_version == 2) {
359 ++cur_version;
361 return CantUpgradeToVersion(cur_version);
364 if (cur_version == 3) {
365 ++cur_version;
367 return CantUpgradeToVersion(cur_version);
378 if (cur_version == 4)
    [all...]
history_unittest.cc 305 int cur_version = HistoryDatabase::GetCurrentVersion(); local
306 ASSERT_LT(22, cur_version);
310 EXPECT_EQ(cur_version, s.ColumnInt(0));
386 int cur_version = HistoryDatabase::GetCurrentVersion(); local
387 ASSERT_LT(23, cur_version);
391 EXPECT_EQ(cur_version, s.ColumnInt(0));
476 int cur_version = HistoryDatabase::GetCurrentVersion(); local
477 ASSERT_LE(26, cur_version);
482 EXPECT_EQ(cur_version, s.ColumnInt(0));
538 int cur_version = HistoryDatabase::GetCurrentVersion() local
603 int cur_version = HistoryDatabase::GetCurrentVersion(); local
    [all...]
thumbnail_database.h 332 sql::InitStatus CantUpgradeToVersion(int cur_version);
history_backend_unittest.cc 1264 int cur_version = HistoryDatabase::GetCurrentVersion(); local
2507 int cur_version = HistoryDatabase::GetCurrentVersion(); local
    [all...]
  /external/chromium/chrome/browser/history/
archived_database.cc 102 int cur_version = meta_table_.GetVersionNumber(); local
103 if (cur_version == 1) {
108 ++cur_version;
109 meta_table_.SetVersionNumber(cur_version);
111 std::min(cur_version, kCompatibleVersionNumber));
114 if (cur_version == 2) {
116 ++cur_version;
117 meta_table_.SetVersionNumber(cur_version);
124 LOG_IF(WARNING, cur_version < kCurrentVersionNumber) <<
125 "Archived database version " << cur_version << " is too old to handle."
    [all...]
history_database.cc 262 int cur_version = meta_table_.GetVersionNumber(); local
266 if (cur_version == 15) {
272 ++cur_version;
273 meta_table_.SetVersionNumber(cur_version);
275 std::min(cur_version, kCompatibleVersionNumber));
278 if (cur_version == 16) {
288 ++cur_version;
289 meta_table_.SetVersionNumber(cur_version);
292 if (cur_version == 17) {
295 ++cur_version;
    [all...]
thumbnail_database.cc 96 int cur_version = meta_table_.GetVersionNumber(); local
97 if (cur_version == 2) {
103 ++cur_version;
106 if (cur_version == 3) {
112 ++cur_version;
115 LOG_IF(WARNING, cur_version < kCurrentVersionNumber) <<
116 "Thumbnail database version " << cur_version << " is too old to handle.";
history_unittest.cc 776 int cur_version = HistoryDatabase::GetCurrentVersion(); local
786 EXPECT_EQ(cur_version, file_version);
history_backend_unittest.cc 806 int cur_version = HistoryDatabase::GetCurrentVersion(); local
813 EXPECT_EQ(cur_version, file_version);
    [all...]
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 297 int cur_version = meta_table_.GetVersionNumber(); local
298 if (cur_version == 2) {
308 ++cur_version;
309 meta_table_.SetVersionNumber(cur_version);
311 std::min(cur_version, kCompatibleVersionNumber));
315 if (cur_version == 3) {
344 ++cur_version;
345 meta_table_.SetVersionNumber(cur_version);
353 LOG_IF(WARNING, cur_version < kCurrentVersionNumber) <<
354 "Cookie database version " << cur_version << " is too old to handle."
    [all...]
  /external/chromium_org/chrome/browser/net/
sqlite_server_bound_cert_store.cc 291 int cur_version = meta_table_.GetVersionNumber(); local
292 if (cur_version == 1) {
309 ++cur_version;
310 meta_table_.SetVersionNumber(cur_version);
312 std::min(cur_version, kCompatibleVersionNumber));
316 if (cur_version <= 3) {
321 if (cur_version == 2) {
360 if (cur_version == 2) {
388 cur_version = 4;
389 meta_table_.SetVersionNumber(cur_version);
    [all...]
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store.cc 745 int cur_version = meta_table_.GetVersionNumber(); local
746 if (cur_version == 2) {
756 ++cur_version;
757 meta_table_.SetVersionNumber(cur_version);
759 std::min(cur_version, kCompatibleVersionNumber));
763 if (cur_version == 3) {
792 ++cur_version;
793 meta_table_.SetVersionNumber(cur_version);
797 if (cur_version == 4) {
809 ++cur_version;
    [all...]
  /external/chromium_org/chrome/test/install_test/
chrome_installer_win.py 29 def IsVersionNewer(cur_version, new_version):
33 cur_version: Current version of Chrome.
39 if cur_version == new_version:
41 cur = cur_version.split('.')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 333 cur_version = get_python_version()
334 if self.target_version and self.target_version != cur_version:
338 if self.target_version > cur_version:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 333 cur_version = get_python_version()
334 if self.target_version and self.target_version != cur_version:
338 if self.target_version > cur_version:
  /external/chromium_org/net/base/
net_util_win.cc 215 DWORD cur_version = 0; local
217 DWORD result = wlanapi.open_handle_func(kMaxClientVersion, NULL, &cur_version,
  /external/qemu/target-i386/
hax-interface.h 336 uint32_t cur_version; member in struct:hax_module_version
343 uint32_t cur_version; member in struct:hax_qemu_version
hax-all.c 167 if ( (hax_lest_version > version.cur_version) ||
382 qversion.cur_version = hax_cur_version;

Completed in 795 milliseconds