Searched defs:base_dir (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium_org/chrome/test/remoting/
H A Dwebapp_javascript_unittest.cc15 base::FilePath base_dir; local
16 ASSERT_TRUE(PathService::Get(base::DIR_EXE, &base_dir));
21 base_dir = base::mac::GetAppBundlePath(base_dir).DirName();
25 base_dir.Append(FILE_PATH_LITERAL("remoting/unittests/unittest.html")));
/external/chromium_org/content/test/gpu/
H A Drun_gpu_test.py17 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
18 test_runner.config = environment.Environment([base_dir])
H A Drun_unittests23 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
26 run_tests.config = run_tests.Config(base_dir, [base_dir], progress_reporters)
/external/chromium_org/tools/chrome_proxy/
H A Drun_benchmark17 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
18 test_runner.config = environment.Environment([base_dir])
H A Drun_tests22 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
25 run_tests.config = run_tests.Config(base_dir, [base_dir], progress_reporters)
/external/chromium_org/tools/perf/
H A Drun_benchmark16 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
24 test_runner.config = environment.Environment([base_dir], test_aliases)
H A Drun_tests21 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
24 run_tests.config = run_tests.Config(base_dir, [base_dir], progress_reporters)
/external/chromium_org/tools/telemetry/
H A Drun_tests14 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
17 run_tests.config = run_tests.Config(base_dir, [base_dir], progress_reporters)
/external/chromium_org/chromecast/common/
H A Dcast_paths.cc33 base::FilePath base_dir; local
34 CHECK(PathService::Get(base::DIR_ANDROID_APP_DATA, &base_dir));
35 *result = base_dir.AppendASCII("cast_shell.log");
51 base::FilePath base_dir; local
53 CHECK(PathService::Get(base::DIR_ANDROID_APP_DATA, &base_dir));
54 *result = base_dir.Append("paks/cast_shell.pak");
56 CHECK(PathService::Get(base::DIR_MODULE, &base_dir));
57 *result = base_dir.Append("assets/cast_shell.pak");
/external/chromium_org/chrome/browser/component_updater/test/
H A Dcld_component_installer_unittest.cc93 const base::FilePath base_dir; local
95 CldComponentInstallerTraits::GetInstalledPath(base_dir);
/external/chromium_org/chrome/browser/extensions/api/developer_private/
H A Ddeveloper_private_apitest.cc16 base::FilePath base_dir = test_data_dir_.AppendASCII("developer"); local
17 LoadNamedExtension(base_dir, "hosted_app");
/external/chromium_org/chrome/browser/ui/webui/app_list/
H A Dstart_page_ui.cc32 void LoadModelData(const base::FilePath& base_dir, argument
38 base::ReadFileToString(base_dir.AppendASCII(path), &(data->data()));
/external/chromium_org/chrome/installer/util/
H A Dself_cleaning_temp_dir.cc15 // Populates |base_dir| with the topmost directory in the hierarchy of
17 // |base_dir| is cleared.
21 base::FilePath* base_dir) {
22 DCHECK(base_dir);
25 // Empty base_dir means that we didn't create any extra directories.
26 base_dir->clear();
30 *base_dir = parent_dir;
32 } while (parent_dir != *base_dir && !base::PathExists(parent_dir));
58 base::FilePath base_dir; local
59 GetTopDirToCreate(parent_dir, &base_dir);
19 GetTopDirToCreate( const base::FilePath& temp_parent_dir, base::FilePath* base_dir) argument
[all...]
H A Dself_cleaning_temp_dir_unittest.cc50 base::FilePath base_dir; local
51 SelfCleaningTempDir::GetTopDirToCreate(base::FilePath(L"C:\\"), &base_dir);
52 EXPECT_TRUE(base_dir.empty());
58 base::FilePath base_dir; local
61 SelfCleaningTempDir::GetTopDirToCreate(parent_dir, &base_dir);
62 EXPECT_EQ(parent_dir, base_dir);
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dmetadata_db_migration_util_unittest.cc69 base::ScopedTempDir base_dir; local
70 ASSERT_TRUE(base_dir.CreateUniqueTempDir());
75 storage::FilePathToString(base_dir.path().Append(kDatabaseName));
/external/chromium_org/content/browser/fileapi/
H A Dfile_system_operation_runner_unittest.cc47 base::FilePath base_dir = base_.path(); variable
49 CreateFileSystemContextForTesting(NULL, base_dir);
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_set.py51 self.serving_dirs.add(os.path.realpath(os.path.join(self.base_dir, sd)))
77 page_url, self, self.base_dir))
88 def base_dir(self): member in class:PageSet
100 os.path.join(self.base_dir, self.archive_data_file)))
/external/chromium_org/chrome/browser/component_updater/
H A Dswiftshader_component_installer.cc68 base::FilePath base_dir = GetSwiftShaderBaseDirectory(); local
71 base_dir, false, base::FileEnumerator::DIRECTORIES);
/external/chromium_org/components/component_updater/
H A Ddefault_component_installer.cc126 base::FilePath base_dir = installer_traits_->GetBaseDirectory(); local
127 if (!base::PathExists(base_dir) && !base::CreateDirectory(base_dir)) {
130 << base_dir.MaybeAsASCII() << ").";
139 base_dir, false, base::FileEnumerator::DIRECTORIES);
180 << base_dir.MaybeAsASCII() << ").";
/external/chromium_org/content/public/test/
H A Dsandbox_file_system_test_helper.cc45 void SandboxFileSystemTestHelper::SetUp(const base::FilePath& base_dir) { argument
46 SetUp(base_dir, NULL);
57 const base::FilePath& base_dir,
60 quota_manager_proxy, base_dir);
56 SetUp( const base::FilePath& base_dir, storage::QuotaManagerProxy* quota_manager_proxy) argument
/external/oprofile/gui/
H A Doprof_start_util.cpp285 * @param base_dir directory to start at
291 string const do_open_file_or_dir(string const & base_dir, bool dir_only) argument
296 result = QFileDialog::getExistingDirectory(base_dir.c_str(), 0,
299 result = QFileDialog::getOpenFileName(base_dir.c_str(), 0, 0,
/external/oprofile/libutil/
H A Dop_file.c116 char const * base_dir, char const * filter,
139 if (!(dir = opendir(base_dir)))
158 name = make_pathname_from_dirent(base_dir, ent,
173 name = make_pathname_from_dirent(base_dir, ent,
115 get_matching_pathnames(void * name_list, get_pathname_callback getpathname, char const * base_dir, char const * filter, enum recursion_type recursion) argument
/external/oprofile/libutil++/
H A Dfile_manip.cpp120 bool create_file_list(list<string> & file_list, string const & base_dir, argument
124 base_dir.c_str(), filter.c_str(),
/external/chromium_org/chrome/browser/component_updater/pnacl/
H A Dpnacl_component_installer.cc99 base::FilePath base_dir = pci->GetPnaclBaseDirectory(); local
102 base_dir, false, base::FileEnumerator::DIRECTORIES);
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsync_extension_helper.cc288 scoped_refptr<Extension> CreateExtension(const base::FilePath& base_dir, argument
326 if (!base::PathExists(base_dir) &&
327 !base::CreateDirectory(base_dir)) {
331 if (!base::CreateTemporaryDirInDir(base_dir, sub_dir.value(),

Completed in 716 milliseconds

12