Searched refs:base_path (Results 1 - 25 of 108) sorted by relevance

12345

/external/chromium_org/extensions/browser/api/storage/
H A Dleveldb_settings_storage_factory.cc15 base::FilePath GetDatabasePath(const base::FilePath& base_path, argument
17 return base_path.AppendASCII(extension_id);
23 const base::FilePath& base_path,
25 return new LeveldbValueStore(GetDatabasePath(base_path, extension_id));
29 const base::FilePath& base_path,
31 base::FilePath path = GetDatabasePath(base_path, extension_id);
22 Create( const base::FilePath& base_path, const std::string& extension_id) argument
28 DeleteDatabaseIfExists( const base::FilePath& base_path, const std::string& extension_id) argument
H A Dleveldb_settings_storage_factory.h15 virtual ValueStore* Create(const base::FilePath& base_path,
18 virtual void DeleteDatabaseIfExists(const base::FilePath& base_path,
H A Dsettings_storage_factory.h24 // Creates a new ValueStore area for an extension under |base_path|.
26 virtual ValueStore* Create(const base::FilePath& base_path,
32 virtual void DeleteDatabaseIfExists(const base::FilePath& base_path,
/external/chromium_org/mojo/services/network/
H A Dmain.cc26 base::FilePath base_path; variable
27 CHECK(PathService::Get(base::DIR_TEMP, &base_path));
28 base_path = base_path.Append(FILE_PATH_LITERAL("network_service"));
29 context_.reset(new mojo::NetworkContext(base_path));
H A Dnetwork_context.cc15 NetworkContext::NetworkContext(const base::FilePath& base_path) { argument
21 builder.set_transport_security_persister_path(base_path);
24 cache_params.path = base_path.Append(FILE_PATH_LITERAL("Cache"));
H A Dnetwork_context.h23 explicit NetworkContext(const base::FilePath& base_path);
/external/chromium_org/content/public/test/
H A Dtest_file_system_context.cc19 const base::FilePath& base_path) {
22 base::MessageLoopProxy::current().get(), base_path));
24 quota_manager_proxy, additional_providers.Pass(), base_path);
31 const base::FilePath& base_path) {
40 base_path,
48 const base::FilePath& base_path) {
57 base_path,
63 const base::FilePath& base_path) {
73 base_path,
17 CreateFileSystemContextForTesting( storage::QuotaManagerProxy* quota_manager_proxy, const base::FilePath& base_path) argument
28 CreateFileSystemContextWithAdditionalProvidersForTesting( storage::QuotaManagerProxy* quota_manager_proxy, ScopedVector<storage::FileSystemBackend> additional_providers, const base::FilePath& base_path) argument
44 CreateFileSystemContextWithAutoMountersForTesting( storage::QuotaManagerProxy* quota_manager_proxy, ScopedVector<storage::FileSystemBackend> additional_providers, const std::vector<storage::URLRequestAutoMountHandler>& auto_mounters, const base::FilePath& base_path) argument
61 CreateIncognitoFileSystemContextForTesting( storage::QuotaManagerProxy* quota_manager_proxy, const base::FilePath& base_path) argument
H A Dtest_file_system_context.h25 const base::FilePath& base_path);
33 const base::FilePath& base_path);
39 const base::FilePath& base_path);
43 const base::FilePath& base_path);
/external/chromium_org/content/shell/app/
H A Dwebkit_test_platform_support_linux.cc32 base::FilePath base_path; local
33 PathService::Get(base::DIR_MODULE, &base_path);
35 base_path.Append(FILE_PATH_LITERAL("fonts.conf"))))
45 if (!gfx::LoadFontIntoFontconfig(base_path.Append(kLocalFonts[i])))
/external/chromium_org/ui/ozone/platform/test/
H A Dtest_window.cc30 base::FilePath base_path = manager_->base_path(); local
31 if (base_path.empty() || base_path == base::FilePath("/dev/null"))
32 return base_path;
35 return base_path.Append(base::IntToString(widget_));
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dserver_instance.py34 base_path='/'):
50 |base_path|
64 assert base_path.startswith('/') and base_path.endswith('/')
65 self.base_path = base_path
77 self.base_path)
101 def ForTest(file_system=None, file_system_provider=None, base_path='/'):
119 base_path=base_path)
[all...]
H A Dappengine_url_fetcher.py36 def __init__(self, base_path=None):
37 assert base_path is None or not base_path.endswith('/'), base_path
38 self._base_path = base_path
H A Dsamples_model_test.py16 base_path = Server2Path('test_data', 'samples_data_source')
17 with open(os.path.join(base_path, filename), 'r') as f:
H A Dtemplate_renderer.py37 'base_path': self._server_instance.base_path,
39 'static': self._server_instance.base_path + 'static',
/external/chromium_org/base/files/
H A Dscoped_temp_dir.cc32 bool ScopedTempDir::CreateUniqueTempDirUnderPath(const FilePath& base_path) { argument
36 // If |base_path| does not exist, create it.
37 if (!base::CreateDirectory(base_path))
40 // Create a new, uniquely named directory under |base_path|.
41 if (!base::CreateTemporaryDirInDir(base_path,
H A Dscoped_temp_dir_unittest.cc66 FilePath base_path; local
68 &base_path));
73 EXPECT_TRUE(dir.CreateUniqueTempDirUnderPath(base_path));
76 EXPECT_TRUE(base_path.IsParent(test_path));
77 EXPECT_TRUE(test_path.value().find(base_path.value()) != std::string::npos);
80 base::DeleteFile(base_path, true);
/external/chromium_org/chrome/browser/ui/webui/
H A Dprofiler_ui.cc70 base::FilePath base_path; variable
71 PathService::Get(base::DIR_SOURCE_ROOT, &base_path);
72 base_path = base_path.AppendASCII("chrome");
73 base_path = base_path.AppendASCII("browser");
74 base_path = base_path.AppendASCII("resources");
75 base_path = base_path
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/
H A Dversion.rb23 MAJOR, MINOR, PATCH, REL = *File.read(base_path.join 'VERSION').split(".")
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
H A Dcommon.py11 setup_modules.setup(base_path=client_dir,
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/page_cycler_dep/
H A Dcommon.py11 setup_modules.setup(base_path=client_dir,
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/perf_data_dep/
H A Dcommon.py11 setup_modules.setup(base_path=client_dir,
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/pyauto_dep/
H A Dcommon.py11 setup_modules.setup(base_path=client_dir,
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/telemetry_dep/
H A Dcommon.py11 setup_modules.setup(base_path=client_dir,
/external/chromium_org/chrome/installer/util/
H A Dregistry_test_data.h24 // Resets this instance, deletes the key rooted at |base_path|, and then
25 // populates |base_path| with:
27 // \NonEmptyKey (default value = "|base_path|\NonEmptyKey")
29 bool Initialize(HKEY root_key, const wchar_t* base_path);
31 // Deletes the key rooted at base_path and clears all state.
39 const std::wstring& base_path() const { return base_path_; } function in class:RegistryTestData
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/
H A Dgl-matrix.rb27 File.expand_path GLMatrix.base_path.join('spec/jasmine.yml')
51 env = Sprockets::Environment.new base_path
52 env.append_path base_path.join('src')
56 def base_path method in class:GLMatrix
64 dest = base_path.join dest
72 puts "compiled #{source} to #{dest.relative_path_from base_path}"
81 puts "minified #{source} to #{dest.relative_path_from base_path}"

Completed in 2737 milliseconds

12345