HomeSort by relevance Sort by last modified time
    Searched full:filepath (Results 1 - 25 of 4651) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/base/files/
file_path_constants.cc 10 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
12 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
15 const size_t FilePath::kSeparatorsLength = arraysize(kSeparators);
17 const FilePath::CharType FilePath::kCurrentDirectory[] = FILE_PATH_LITERAL(".");
18 const FilePath::CharType FilePath::kParentDirectory[] = FILE_PATH_LITERAL("..");
20 const FilePath::CharType FilePath::kExtensionSeparator = FILE_PATH_LITERAL('.')
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include "gtest/internal/gtest-filepath.h"
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
111 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
  /external/gtest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include "gtest/internal/gtest-filepath.h"
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
111 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include "gtest/internal/gtest-filepath.h"
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
111 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
  /external/protobuf/gtest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include <gtest/internal/gtest-filepath.h>
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
107 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
  /external/deqp/framework/delibs/decpp/
deFilePath.hpp 36 class FilePath
50 FilePath (void);
51 FilePath (const std::string& path);
52 FilePath (const char* path);
53 FilePath (const std::vector<std::string>& components);
54 ~FilePath (void);
64 static FilePath join (const FilePath& a, const FilePath& b);
65 FilePath& join (const FilePath& b)
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome_finder.cc 26 void GetApplicationDirs(std::vector<base::FilePath>* locations) {
27 std::vector<base::FilePath> installation_locations;
28 base::FilePath local_app_data, program_files, program_files_x86;
46 void GetApplicationDirs(std::vector<base::FilePath>* locations) {
47 locations->push_back(base::FilePath("/opt/google/chrome"));
48 locations->push_back(base::FilePath("/usr/local/bin"));
49 locations->push_back(base::FilePath("/usr/local/sbin"));
50 locations->push_back(base::FilePath("/usr/bin"));
51 locations->push_back(base::FilePath("/usr/sbin"));
52 locations->push_back(base::FilePath("/bin"))
    [all...]
chrome_finder_unittest.cc 15 bool PathIn(const std::vector<base::FilePath>& list,
16 const base::FilePath& path) {
24 void AssertFound(const base::FilePath& found,
25 const std::vector<base::FilePath>& existing_paths,
26 const std::vector<base::FilePath>& rel_paths,
27 const std::vector<base::FilePath>& locations) {
28 base::FilePath exe;
40 base::FilePath found =
41 base::FilePath().AppendASCII("exists").AppendASCII("exists");
42 std::vector<base::FilePath> existing_paths
    [all...]
chrome_finder.h 13 class FilePath;
17 bool FindChrome(base::FilePath* browser_exe);
22 const base::Callback<bool(const base::FilePath&)>& exists_func,
23 const std::vector<base::FilePath>& rel_paths,
24 const std::vector<base::FilePath>& locations,
25 base::FilePath* out_path);
  /external/chromium_org/chrome/installer/linux/
WATCHLISTS 4 'filepath': '(common|debian|rpm)/',
  /external/chromium_org/base/android/
path_utils.cc 17 bool GetDataDirectory(FilePath* result) {
21 FilePath data_path(ConvertJavaStringToUTF8(path));
26 bool GetDatabaseDirectory(FilePath* result) {
30 FilePath data_path(ConvertJavaStringToUTF8(path));
35 bool GetCacheDirectory(FilePath* result) {
39 FilePath cache_path(ConvertJavaStringToUTF8(path));
44 bool GetDownloadsDirectory(FilePath* result) {
48 FilePath downloads_path(ConvertJavaStringToUTF8(path));
53 bool GetNativeLibraryDirectory(FilePath* result) {
57 FilePath library_path(ConvertJavaStringToUTF8(path))
    [all...]
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/net/base/
test_data_directory.cc 13 const base::FilePath::CharType kCertificateRelativePath[] =
17 base::FilePath GetTestCertsDirectory() {
18 base::FilePath src_root;
23 base::FilePath GetTestClientCertsDirectory() {
25 return base::FilePath(kCertificateRelativePath);
31 base::FilePath GetWebSocketTestDataDirectory() {
32 base::FilePath data_dir(FILE_PATH_LITERAL("net/data/websocket"));
test_data_directory.h 12 // Returns the FilePath object representing the absolute path in the source
14 base::FilePath GetTestCertsDirectory();
16 // Returns the base::FilePath object representing the path to client
20 base::FilePath GetTestClientCertsDirectory();
22 // Returns the base::FilePath object representing the relative path containing
23 // resource files for testing WebSocket. Typically the FilePath will be used as
25 base::FilePath GetWebSocketTestDataDirectory();
  /external/chromium_org/chrome/common/
chrome_constants.cc 54 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] =
56 const base::FilePath::CharType kBrowserProcessExecutableName[] =
58 const base::FilePath::CharType kHelperProcessExecutableNameChromium[] =
60 const base::FilePath::CharType kHelperProcessExecutableName[] =
63 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] =
65 const base::FilePath::CharType kBrowserProcessExecutableName[] =
67 const base::FilePath::CharType kHelperProcessExecutableNameChromium[] =
69 const base::FilePath::CharType kHelperProcessExecutableName[] =
73 const base::FilePath::CharType kBrowserProcessExecutableName[] = FPL("chrome");
74 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[]
    [all...]
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[];
31 extern const base::FilePath::CharType kFrameworkName[];
41 extern const base::FilePath::CharType* const kHelperFlavorSuffixes[]
    [all...]
  /external/chromium_org/remoting/host/
ipc_constants.cc 15 const base::FilePath::CharType kHostBinaryName[] =
18 const base::FilePath::CharType kDesktopBinaryName[] =
21 bool GetInstalledBinaryPath(const base::FilePath::StringType& binary,
22 base::FilePath* full_path) {
23 base::FilePath dir_path;
29 base::FilePath path = dir_path.Append(binary);
  /external/chromium_org/webkit/browser/database/
vfs_backend.h 14 class FilePath;
21 static base::File OpenFile(const base::FilePath& file_path,
24 static base::File OpenTempFileInDirectory(const base::FilePath& dir_path,
27 static int DeleteFile(const base::FilePath& file_path, bool sync_dir);
29 static uint32 GetFileAttributes(const base::FilePath& file_path);
31 static int64 GetFileSize(const base::FilePath& file_path);
  /external/chromium_org/chrome/browser/local_discovery/storage/
path_util.h 12 base::FilePath NormalizeFilePath(const base::FilePath& path);
15 explicit ParsedPrivetPath(const base::FilePath& path);
  /external/chromium_org/chrome/common/mac/
app_mode_chrome_locator_unittest.mm 20 void GetChromeBundlePath(base::FilePath* chrome_bundle) {
21 base::FilePath path;
24 path = path.ReplaceExtension(base::FilePath::StringType("app"));
31 base::FilePath finder_bundle_path;
38 base::FilePath dummy;
46 base::FilePath executable_path;
48 base::FilePath version_path;
49 base::FilePath framework_path;
57 base::FilePath chrome_bundle_path;
61 base::FilePath executable_path
    [all...]
  /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_org/chrome/browser/safe_browsing/
path_sanitizer_unittest.cc 16 base::FilePath GetRootDirectory() {
17 base::FilePath dir_temp;
21 std::vector<base::FilePath::StringType> components;
24 return base::FilePath(components[0]).AsEndingWithSeparator();
37 base::FilePath path =
39 base::FilePath path_expected = path;
51 base::FilePath path = path_sanitizer.GetHomeDirectory().Append(
53 base::FilePath path_expected = base::FilePath(FILE_PATH_LITERAL("~")).Append(
  /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/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[];

Completed in 891 milliseconds

1 2 3 4 5 6 7 8 91011>>