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

  /external/chromium/chrome/browser/history/
history_unittest_base.h 18 // Executes the sql from the file |sql_path| in the database at |db_path|.
19 // |sql_path| is the SQL script file name with full path.
21 static void ExecuteSQLScript(const FilePath& sql_path,
history_unittest_base.cc 17 void HistoryUnitTestBase::ExecuteSQLScript(const FilePath& sql_path,
20 ASSERT_TRUE(file_util::ReadFileToString(sql_path, &sql));
  /external/chromium_org/chrome/browser/history/
history_unittest_base.h 21 // Executes the sql from the file |sql_path| in the database at |db_path|.
22 // |sql_path| is the SQL script file name with full path.
24 static void ExecuteSQLScript(const base::FilePath& sql_path,
history_unittest_base.cc 19 void HistoryUnitTestBase::ExecuteSQLScript(const base::FilePath& sql_path,
22 ASSERT_TRUE(base::ReadFileToString(sql_path, &sql));
shortcuts_database_unittest.cc 261 base::FilePath sql_path; local
262 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &sql_path));
263 sql_path = sql_path.AppendASCII("History").AppendASCII("Shortcuts.v1.sql");
267 ASSERT_TRUE(sql::test::CreateDatabaseFromSQL(db_path, sql_path));
top_sites_database_unittest.cc 38 base::FilePath sql_path; local
39 if (!PathService::Get(chrome::DIR_TEST_DATA, &sql_path))
41 sql_path = sql_path.AppendASCII("History").AppendASCII(ascii_path);
42 return sql::test::CreateDatabaseFromSQL(db_path, sql_path);
thumbnail_database_unittest.cc 55 base::FilePath sql_path; local
56 if (!PathService::Get(chrome::DIR_TEST_DATA, &sql_path))
58 sql_path = sql_path.AppendASCII("History").AppendASCII(ascii_path);
59 return sql::test::CreateDatabaseFromSQL(db_path, sql_path);
938 base::FilePath sql_path; local
    [all...]
  /external/chromium_org/sql/test/
test_helpers.h 73 // at |sql_path|. Returns false if |db_path| already exists, or if
74 // sql_path does not exist or cannot be read, or if there is an error
77 const base::FilePath& sql_path) WARN_UNUSED_RESULT;
test_helpers.cc 219 const base::FilePath& sql_path) {
220 if (base::PathExists(db_path) || !base::PathExists(sql_path))
224 if (!base::ReadFileToString(sql_path, &sql))

Completed in 606 milliseconds