/external/chromium_org/chrome/browser/extensions/api/storage/ |
leveldb_settings_storage_factory.cc | 13 const base::FilePath& base_path, 15 return new LeveldbValueStore(base_path.AppendASCII(extension_id));
|
leveldb_settings_storage_factory.h | 15 virtual ValueStore* Create(const base::FilePath& base_path,
|
settings_storage_factory.h | 24 // Creates a new ValueStore area for an extension under |base_path|. 26 virtual ValueStore* Create(const base::FilePath& base_path,
|
/external/chromium_org/content/public/test/ |
test_file_system_context.h | 23 const base::FilePath& base_path); 30 const base::FilePath& base_path); 34 const base::FilePath& base_path);
|
test_file_system_context.cc | 19 const base::FilePath& base_path) { 22 base::MessageLoopProxy::current().get(), base_path)); 24 quota_manager_proxy, additional_providers.Pass(), base_path); 30 const base::FilePath& base_path) { 38 base_path, 44 const base::FilePath& base_path) { 53 base_path,
|
/external/chromium/base/memory/ |
scoped_temp_dir.cc | 31 bool ScopedTempDir::CreateUniqueTempDirUnderPath(const FilePath& base_path) { 35 // If |base_path| does not exist, create it. 36 if (!file_util::CreateDirectory(base_path)) 39 // Create a new, uniquely named directory under |base_path|. 41 base_path,
|
/external/chromium_org/base/files/ |
scoped_temp_dir.cc | 32 bool ScopedTempDir::CreateUniqueTempDirUnderPath(const FilePath& base_path) { 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,
|
scoped_temp_dir_unittest.cc | 66 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/ |
profiler_ui.cc | 71 base::FilePath base_path; variable 72 PathService::Get(base::DIR_SOURCE_ROOT, &base_path); 73 base_path = base_path.AppendASCII("chrome"); 74 base_path = base_path.AppendASCII("browser"); 75 base_path = base_path.AppendASCII("resources"); 76 base_path = base_path.AppendASCII("profiler") [all...] |
/external/chromium/chrome/browser/net/ |
url_request_slow_http_job.h | 23 static void AddUrlHandler(const FilePath& base_path);
|
url_request_mock_http_job.h | 29 static void AddUrlHandler(const FilePath& base_path); 41 static FilePath GetOnDiskPath(const FilePath& base_path,
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/ |
version.rb | 23 MAJOR, MINOR, PATCH, REL = *File.read(base_path.join 'VERSION').split(".")
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
intro_data_source.py | 44 def get_from_base_path(base_path): 45 return self._cache.GetFromFile('%s/%s' % (base_path, path)).Get() 47 for base_path in base_paths: 49 return get_from_base_path(base_path)
|
server_instance.py | 37 base_path='/'): 53 |base_path| 66 assert base_path.startswith('/') and base_path.endswith('/') 67 self.base_path = base_path 132 base_path) 160 def ForTest(file_system=None, file_system_provider=None, base_path='/'): 177 base_path=base_path) [all...] |
appengine_url_fetcher.py | 35 def __init__(self, base_path=None): 36 assert base_path is None or not base_path.endswith('/') 37 self._base_path = base_path
|
/external/chromium_org/content/shell/app/ |
webkit_test_platform_support_linux.cc | 81 base::FilePath base_path; local 82 PathService::Get(base::DIR_MODULE, &base_path); 83 base::FilePath fonts_conf = base_path.Append(FILE_PATH_LITERAL("fonts.conf")); 122 base::FilePath ahem_font = base_path.Append("AHEM____.TTF");
|
/external/chromium_org/chrome/installer/util/ |
registry_test_data.h | 24 // 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_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/ |
common.py | 11 setup_modules.setup(base_path=client_dir,
|
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/page_cycler_dep/ |
common.py | 11 setup_modules.setup(base_path=client_dir,
|
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/perf_data_dep/ |
common.py | 11 setup_modules.setup(base_path=client_dir,
|
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/pyauto_dep/ |
common.py | 11 setup_modules.setup(base_path=client_dir,
|
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/telemetry_dep/ |
common.py | 11 setup_modules.setup(base_path=client_dir,
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/ |
gl-matrix.rb | 27 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}"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_import.py | 90 base_path = dirname(self.filename) 91 base_path = join(base_path, imp_name) 94 if not exists(join(dirname(base_path), "__init__.py")): 97 if exists(base_path + ext):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_import.py | 90 base_path = dirname(self.filename) 91 base_path = join(base_path, imp_name) 94 if not exists(join(dirname(base_path), "__init__.py")): 97 if exists(base_path + ext):
|