Home
last modified time | relevance | path

Searched refs:CharType (Results 1 – 25 of 81) sorted by relevance

1234

/external/chromium/chrome/common/
Dchrome_constants.h19 extern const FilePath::CharType kBrowserProcessExecutableName[];
20 extern const FilePath::CharType kHelperProcessExecutableName[];
21 extern const FilePath::CharType kBrowserProcessExecutablePath[];
22 extern const FilePath::CharType kHelperProcessExecutablePath[];
24 extern const FilePath::CharType kFrameworkName[];
37 extern const FilePath::CharType kExtensionFileExtension[];
38 extern const FilePath::CharType kExtensionKeyFileExtension[];
41 extern const FilePath::CharType kArchivedHistoryFilename[];
42 extern const FilePath::CharType kCacheDirname[];
43 extern const FilePath::CharType kMediaCacheDirname[];
[all …]
Dchrome_constants.cc28 const FilePath::CharType kBrowserProcessExecutableName[] = FPL("chrome.exe");
29 const FilePath::CharType kHelperProcessExecutableName[] = FPL("chrome.exe");
31 const FilePath::CharType kBrowserProcessExecutableName[] = FPL("chrome");
34 const FilePath::CharType kHelperProcessExecutableName[] = FPL("exe");
36 const FilePath::CharType kBrowserProcessExecutableName[] = FPL(PRODUCT_STRING);
37 const FilePath::CharType kHelperProcessExecutableName[] =
41 const FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome.exe");
42 const FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome.exe");
44 const FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome");
45 const FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome");
[all …]
Dauto_start_linux.cc16 const FilePath::CharType kAutostart[] = "autostart";
17 const FilePath::CharType kConfig[] = ".config";
Dchrome_paths.cc24 const FilePath::CharType kInternalFlashPluginFileName[] =
34 const FilePath::CharType kInternalPDFPluginFileName[] =
44 const FilePath::CharType kInternalNaClPluginFileName[] =
/external/chromium/chrome/browser/importer/
Dfirefox_profile_lock.cc57 const FilePath::CharType* FirefoxProfileLock::kLockFileName =
59 const FilePath::CharType* FirefoxProfileLock::kOldLockFileName =
63 const FilePath::CharType* FirefoxProfileLock::kLockFileName =
65 const FilePath::CharType* FirefoxProfileLock::kOldLockFileName =
68 const FilePath::CharType* FirefoxProfileLock::kLockFileName =
Dfirefox_profile_lock.h85 static const FilePath::CharType* kLockFileName;
86 static const FilePath::CharType* kOldLockFileName;
/external/chromium/chrome/browser/
Dbrowsing_data_local_storage_helper_browsertest.cc27 const FilePath::CharType kTestFile0[] =
30 const FilePath::CharType kTestFile1[] =
33 const FilePath::CharType kTestFileInvalid[] =
37 const FilePath::CharType kTestFileExtension[] = FILE_PATH_LITERAL(
45 const FilePath::CharType* kFilesToCreate[] = { in CreateLocalStorageFilesForTest()
141 const FilePath::CharType file1[] = in IN_PROC_BROWSER_TEST_F()
143 const FilePath::CharType file2[] = in IN_PROC_BROWSER_TEST_F()
165 const FilePath::CharType file[] = in IN_PROC_BROWSER_TEST_F()
Dbrowsing_data_indexed_db_helper_browsertest.cc32 const FilePath::CharType file1[] = in IN_PROC_BROWSER_TEST_F()
34 const FilePath::CharType file2[] = in IN_PROC_BROWSER_TEST_F()
57 const FilePath::CharType file[] = in IN_PROC_BROWSER_TEST_F()
Dbrowser_browsertest.cc60 const FilePath::CharType* kTitle1File = FILE_PATH_LITERAL("title1.html");
61 const FilePath::CharType* kTitle2File = FILE_PATH_LITERAL("title2.html");
63 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data");
333 static const FilePath::CharType* kEmptyFile = FILE_PATH_LITERAL("empty.html"); in IN_PROC_BROWSER_TEST_F()
461 static const FilePath::CharType* kFile = in IN_PROC_BROWSER_TEST_F()
470 static const FilePath::CharType* kIcon = in IN_PROC_BROWSER_TEST_F()
Dpopup_blocker_browsertest.cc22 static const FilePath::CharType* kTestDir = FILE_PATH_LITERAL("popup_blocker");
Dcrash_recovery_browsertest.cc60 const FilePath::CharType* kTitle2File = FILE_PATH_LITERAL("title2.html"); in IN_PROC_BROWSER_TEST_F()
/external/chromium/chrome/browser/chromeos/
Dboot_times_loader.cc35 static const FilePath::CharType kLogPath[] = FPL("/tmp");
37 static const FilePath::CharType kUptimePrefix[] = FPL("uptime-");
39 static const FilePath::CharType kDiskPrefix[] = FPL("disk-");
41 static const FilePath::CharType kChromeMain[] = FPL("chrome-main");
48 static const FilePath::CharType kLoginSuccess[] = FPL("login-success");
49 static const FilePath::CharType kChromeFirstRender[] =
60 static const FilePath::CharType kLoginTimes[] = FPL("login-times-sent");
136 static const FilePath::CharType kBootTimesSent[] = in SendBootTimesToUMA()
174 const FilePath::CharType kFirmwareBootTime[] = FPL("firmware-boot-time"); in GetBootTimes()
175 const FilePath::CharType kPreStartup[] = FPL("pre-startup"); in GetBootTimes()
[all …]
/external/chromium/base/
Dfile_path.h140 typedef StringType::value_type CharType; typedef
146 static const CharType kSeparators[];
149 static const CharType kCurrentDirectory[];
152 static const CharType kParentDirectory[];
155 static const CharType kExtensionSeparator;
179 static bool IsSeparator(CharType character);
Dcommand_line.cc26 typedef CommandLine::StringType::value_type CharType; typedef
28 const CharType kSwitchTerminator[] = FILE_PATH_LITERAL("--");
29 const CharType kSwitchValueSeparator[] = FILE_PATH_LITERAL("=");
33 const CharType* const kSwitchPrefixes[] = {L"--", L"-", L"/"};
36 const CharType* const kSwitchPrefixes[] = {"--", "-"};
Dfile_path.cc33 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
35 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
38 const FilePath::CharType FilePath::kCurrentDirectory[] = FILE_PATH_LITERAL(".");
39 const FilePath::CharType FilePath::kParentDirectory[] = FILE_PATH_LITERAL("..");
41 const FilePath::CharType FilePath::kExtensionSeparator = FILE_PATH_LITERAL('.');
198 bool FilePath::IsSeparator(CharType character) { in IsSeparator()
/external/chromium/chrome/browser/download/
Dsave_package_unittest.cc134 const FilePath::CharType* expected_name;
247 const FilePath::CharType* page_title;
248 const FilePath::CharType* expected_name;
289 const FilePath::CharType* page_title; in TEST_F()
290 const FilePath::CharType* expected_name; in TEST_F()
336 const FilePath::CharType* expected_name;
399 static const FilePath::CharType* kTestDir = FILE_PATH_LITERAL("save_page");
Ddownload_util_unittest.cc499 const FilePath::CharType* path;
501 const FilePath::CharType* expected_path;
/external/chromium/chrome/browser/policy/
Dprofile_policy_connector.cc24 const FilePath::CharType kPolicyDir[] = FILE_PATH_LITERAL("Device Management");
25 const FilePath::CharType kTokenCacheFile[] = FILE_PATH_LITERAL("Token");
26 const FilePath::CharType kPolicyCacheFile[] = FILE_PATH_LITERAL("Policy");
/external/chromium/net/test/
Dpython_utils_unittest.cc18 const FilePath::CharType kAppendDir1[] = in TEST()
20 const FilePath::CharType kAppendDir2[] = in TEST()
/external/chromium/chrome/browser/autofill/
Dform_structure_browsertest.cc21 const FilePath::CharType kTestName[] = FILE_PATH_LITERAL("heuristics");
22 const FilePath::CharType kFileNamePattern[] = FILE_PATH_LITERAL("*.html");
Dautofill_merge_unittest.cc23 const FilePath::CharType kTestName[] = FILE_PATH_LITERAL("merge");
24 const FilePath::CharType kFileNamePattern[] = FILE_PATH_LITERAL("*.in");
/external/chromium/testing/gmock/src/
Dgmock.cc126 template <typename CharType>
127 void InitGoogleMockImpl(int* argc, CharType** argv) { in InitGoogleMockImpl()
/external/chromium/net/base/
Dmime_util_unittest.cc13 const FilePath::CharType* extension; in TEST()
37 const FilePath::CharType* file_path; in TEST()
/external/chromium/chrome/browser/sync/util/
Duser_settings_unittest.cc22 const FilePath::CharType kV10UserSettingsDB[] =
24 const FilePath::CharType kV11UserSettingsDB[] =
26 const FilePath::CharType kOldStyleSyncDataDB[] =
/external/chromium/chrome/browser/sync/glue/
Dtheme_util_unittest.cc173 const FilePath::CharType kExtensionFilePath[] = FILE_PATH_LITERAL("c:\\foo");
175 const FilePath::CharType kExtensionFilePath[] = FILE_PATH_LITERAL("/oo");

1234