HomeSort by relevance Sort by last modified time
    Searched full:filepath (Results 26 - 50 of 5063) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc 32 #include <gtest/internal/gtest-filepath.h>
57 // Returns a copy of the FilePath with the case-insensitive extension removed.
58 // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns
59 // FilePath("dir/file"). If a case-insensitive extension is not
60 // found, returns a copy of the original FilePath.
61 FilePath FilePath::RemoveExtension(const char* extension) const {
64 return FilePath(String(pathname_.c_str(), pathname_.GetLength() - 4));
69 // Returns a copy of the FilePath with the directory part removed.
70 // Example: FilePath("path/to/file").RemoveDirectoryName() return
    [all...]
  /external/chromium_org/base/android/
path_utils.h 14 class FilePath;
19 // application. The result is placed in the FilePath pointed to by 'result'.
22 BASE_EXPORT bool GetDataDirectory(FilePath* result);
26 BASE_EXPORT bool GetDatabaseDirectory(FilePath* result);
29 // the FilePath pointed to by 'result'. This method is dedicated for
32 BASE_EXPORT bool GetCacheDirectory(FilePath* result);
35 // in the FilePath pointed to by 'result'.
36 BASE_EXPORT bool GetDownloadsDirectory(FilePath* result);
40 // the FilePath pointed to by 'result'.
41 BASE_EXPORT bool GetNativeLibraryDirectory(FilePath* result)
    [all...]
  /external/chromium_org/chrome/browser/
icon_loader_android.cc 10 const base::FilePath& filepath) {
15 bool IconLoader::IsIconMutableFromFilepath(const base::FilePath&) {
  /external/chromium_org/content/browser/indexed_db/
indexed_db_internals_ui.h 35 const base::FilePath& context_path);
37 const base::FilePath& path);
43 const base::FilePath& partition_path,
46 void OnDownloadDataReady(const base::FilePath& partition_path,
48 const base::FilePath temp_path,
49 const base::FilePath zip_path,
51 void OnDownloadStarted(const base::FilePath& partition_path,
53 const base::FilePath& temp_path,
60 const base::FilePath& partition_path,
63 void OnForcedClose(const base::FilePath& partition_path
    [all...]
  /external/chromium/base/
value_conversions.h 9 // This file contains methods to convert a |FilePath| to a |Value| and back.
13 class FilePath;
20 BASE_API StringValue* CreateFilePathValue(const FilePath& in_value);
21 BASE_API bool GetValueAsFilePath(const Value& value, FilePath* file_path);
file_util.cc 22 const FilePath::CharType kExtensionSeparator = FILE_PATH_LITERAL('.');
28 bool EndsWithSeparator(const FilePath& path) {
29 FilePath::StringType value = path.value();
33 return FilePath::IsSeparator(value[value.size() - 1]);
36 bool EnsureEndsWithSeparator(FilePath* path) {
43 FilePath::StringType& path_str =
44 const_cast<FilePath::StringType&>(path->value());
45 path_str.append(&FilePath::kSeparators[0], 1);
50 FilePath::StringType GetFileExtensionFromPath(const FilePath& path)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_creator.h 18 class FilePath;
29 bool Run(const FilePath& extension_dir,
30 const FilePath& crx_path,
31 const FilePath& private_key_path,
32 const FilePath& private_key_output_path);
43 bool InitializeInput(const FilePath& extension_dir,
44 const FilePath& private_key_path,
45 const FilePath& private_key_output_path);
48 crypto::RSAPrivateKey* ReadInputKey(const FilePath& private_key_path);
52 crypto::RSAPrivateKey* GenerateKey(const FilePath& private_key_path)
    [all...]
  /external/chromium/chrome/browser/
icon_manager_win.cc 9 IconGroupID IconManager::GetGroupIDFromFilepath(const FilePath& filepath) {
10 std::wstring extension = filepath.Extension();
14 return filepath.value();
  /external/chromium/chrome/browser/importer/
firefox_importer_utils_linux.cc 9 FilePath GetProfilesINI() {
10 FilePath ini_file;
13 FilePath home = file_util::GetHomeDir();
20 return FilePath();
  /external/chromium/chrome/common/extensions/
extension_resource.cc 15 const FilePath& extension_root,
16 const FilePath& relative_path)
24 const FilePath& ExtensionResource::GetFilePath() const {
40 FilePath ExtensionResource::GetFilePath(
41 const FilePath& extension_root, const FilePath& relative_path) {
44 FilePath clean_extension_root(extension_root);
46 return FilePath();
48 FilePath full_path = clean_extension_root.Append(relative_path);
63 return FilePath();
    [all...]
  /external/chromium/net/test/
python_utils.h 11 class FilePath;
17 void AppendToPythonPath(const FilePath& dir);
20 bool GetPyProtoPath(FilePath* dir);
23 bool GetPythonRunTime(FilePath* path) WARN_UNUSED_RESULT;
  /external/chromium_org/chrome/browser/component_updater/test/
component_patcher_mock.h 13 class FilePath;
20 const base::FilePath& input_file,
21 const base::FilePath& patch_file,
22 const base::FilePath& output_file,
  /external/chromium_org/chrome/common/importer/
firefox_importer_utils_mac.mm 14 base::FilePath GetProfilesINI() {
15 base::FilePath app_data_path;
17 return base::FilePath();
19 base::FilePath ini_file =
22 return base::FilePath();
27 base::FilePath GetFirefoxDylibPath() {
34 return base::FilePath();
43 return base::FilePath();
44 return base::FilePath(buf);
  /external/chromium_org/chrome/test/mini_installer_test/
installer_path_provider.h 24 bool GetFullInstaller(base::FilePath* path);
25 bool GetDiffInstaller(base::FilePath* path);
26 bool GetMiniInstaller(base::FilePath* path);
27 bool GetPreviousInstaller(base::FilePath* path);
28 bool GetStandaloneInstaller(base::FilePath* path);
29 bool GetSignedStandaloneInstaller(base::FilePath* path);
37 base::FilePath PathFromExeDir(const base::FilePath::StringType& name);
39 bool GetInstaller(const std::string& pattern, base::FilePath* path);
  /external/chromium_org/chromeos/
chromeos_constants.cc 11 const base::FilePath::CharType kDriveCacheDirname[] = FPL("GCache");
12 const base::FilePath::CharType kNssCertDbPath[] = FPL(".pki/nssdb/cert9.db");
13 const base::FilePath::CharType kNssDirPath[] = FPL(".pki");
14 const base::FilePath::CharType kNssKeyDbPath[] = FPL(".pki/nssdb/key4.db");
chromeos_constants.h 15 CHROMEOS_EXPORT extern const base::FilePath::CharType kDriveCacheDirname[];
16 CHROMEOS_EXPORT extern const base::FilePath::CharType kNssCertDbPath[];
17 CHROMEOS_EXPORT extern const base::FilePath::CharType kNssDirPath[];
18 CHROMEOS_EXPORT extern const base::FilePath::CharType kNssKeyDbPath[];
  /external/chromium_org/chrome/common/
chrome_constants.h 18 extern const base::FilePath::CharType kBrowserProcessExecutableName[];
19 extern const base::FilePath::CharType kHelperProcessExecutableName[];
20 extern const base::FilePath::CharType kBrowserProcessExecutablePath[];
21 extern const base::FilePath::CharType kHelperProcessExecutablePath[];
22 extern const base::FilePath::CharType kBrowserProcessExecutableNameChromium[];
23 extern const base::FilePath::CharType kHelperProcessExecutableNameChromium[];
24 extern const base::FilePath::CharType kBrowserProcessExecutablePathChromium[];
25 extern const base::FilePath::CharType kHelperProcessExecutablePathChromium[];
27 extern const base::FilePath::CharType kFrameworkName[];
37 extern const base::FilePath::CharType* const kHelperFlavorSuffixes[]
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
dummy_file_system.h 20 const base::FilePath& local_src_file_path,
21 const base::FilePath& remote_dest_file_path,
23 virtual void OpenFile(const base::FilePath& file_path,
27 virtual void Copy(const base::FilePath& src_file_path,
28 const base::FilePath& dest_file_path,
31 virtual void Move(const base::FilePath& src_file_path,
32 const base::FilePath& dest_file_path,
35 virtual void Remove(const base::FilePath& file_path,
39 const base::FilePath& directory_path,
43 virtual void CreateFile(const base::FilePath& file_path
    [all...]
  /external/chromium_org/
WATCHLISTS 8 # IMPORTANT: The regular expression filepath is tested against each path using
14 'filepath': 'ash/accelerators/accelerator_table\.cc' \
18 'filepath': 'chrome/browser/accessibility/' \
29 'filepath': 'chrome/browser/extensions/activity_log/' \
33 'filepath': 'build/android/' \
38 'filepath': 'android_webview/',
41 'filepath': 'chrome/browser/ui/app_list'\
47 'filepath': 'apps/app_shim/'\
53 'filepath': 'appcache/',
56 'filepath': '^apps/'
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
path_util_unittest.cc 17 base::FilePath path;
21 base::FilePath::FromUTF8Unsafe("/special/drive"),
23 EXPECT_EQ(base::FilePath::FromUTF8Unsafe("/special/drive/root"), path);
27 base::FilePath::FromUTF8Unsafe("/special/drive/a/b"),
29 EXPECT_EQ(base::FilePath::FromUTF8Unsafe("/special/drive/root/a/b"), path);
34 base::FilePath::FromUTF8Unsafe("/special/drive/root/a/b"),
43 const base::FilePath kDownloads = GetDownloadsFolderForProfile(&profile);
45 base::FilePath path;
49 base::FilePath::FromUTF8Unsafe("/home/chronos/user/Downloads"),
55 base::FilePath::FromUTF8Unsafe("/home/chronos/user/Downloads/a/b")
    [all...]
  /external/chromium_org/chrome/browser/policy/
policy_path_parser_unittest.cc 14 void CheckForSubstitution(base::FilePath::StringType test_string,
15 base::FilePath::StringType var_name) {
16 base::FilePath::StringType var(test_string);
17 base::FilePath::StringType var_result =
19 ASSERT_EQ(var_result.find(var_name), base::FilePath::StringType::npos);
31 base::FilePath::StringType no_vars(FILE_PATH_LITERAL("//$C/shares"));
32 base::FilePath::StringType no_vars_result =
37 base::FilePath::StringType unknown_vars(FILE_PATH_LITERAL("//$C/${buggy}"));
38 base::FilePath::StringType unknown_vars_result =
43 base::FilePath::StringType no_quotes(FILE_PATH_LITERAL("//$C/\"a\"/$path"))
    [all...]
  /external/chromium_org/extensions/common/
extension_resource.cc 17 const base::FilePath& extension_root,
18 const base::FilePath& relative_path)
31 const base::FilePath& ExtensionResource::GetFilePath() const {
49 base::FilePath ExtensionResource::GetFilePath(
50 const base::FilePath& extension_root,
51 const base::FilePath& relative_path,
55 base::FilePath clean_extension_root(
58 return base::FilePath();
60 base::FilePath full_path = clean_extension_root.Append(relative_path);
65 std::vector<base::FilePath::StringType> components
    [all...]
  /external/chromium/chrome/browser/net/
url_request_mock_http_job.h 15 class FilePath;
19 URLRequestMockHTTPJob(net::URLRequest* request, const FilePath& file_path);
29 static void AddUrlHandler(const FilePath& base_path);
32 static GURL GetMockUrl(const FilePath& path);
36 static GURL GetMockViewSourceUrl(const FilePath& path);
41 static FilePath GetOnDiskPath(const FilePath& base_path,
50 static FilePath base_path_;
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_messaging_test_util.h 9 class FilePath;
17 void CreateTestNativeHostManifest(base::FilePath manifest_path);
  /external/chromium_org/chrome/browser/ui/app_list/test/
fake_profile_store.h 16 explicit FakeProfileStore(const base::FilePath& user_data_dir);
25 const base::FilePath& path,
27 virtual Profile* GetProfileByPath(const base::FilePath& path) OVERRIDE;
28 virtual base::FilePath GetUserDataDir() OVERRIDE;
29 virtual bool IsProfileManaged(const base::FilePath& path) OVERRIDE;
32 base::FilePath user_data_dir_;
33 typedef std::map<base::FilePath, base::Callback<void(Profile*)> >
37 typedef std::map<base::FilePath, Profile*> ProfilesByPath;

Completed in 1293 milliseconds

12 3 4 5 6 7 8 91011>>