OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FPL
(Results
1 - 6
of
6
) sorted by null
/external/chromium/base/
file_path_unittest.cc
13
#define
FPL
(x) FILE_PATH_LITERAL(x)
54
{
FPL
(""),
FPL
(".") },
55
{
FPL
("aa"),
FPL
(".") },
56
{
FPL
("/aa/bb"),
FPL
("/aa") },
57
{
FPL
("/aa/bb/"),
FPL
("/aa") },
58
{
FPL
("/aa/bb//"), FPL("/aa") }
[
all
...]
file_util_unittest.cc
34
#define
FPL
(x) FILE_PATH_LITERAL(x)
357
FilePath file_01 = temp_dir_.path().Append(
FPL
("The file 01.txt"));
363
FilePath subdir_path = temp_dir_.path().Append(
FPL
("Level2"));
366
FilePath file_02 = subdir_path.Append(
FPL
("The file 02.txt"));
372
FilePath subsubdir_path = subdir_path.Append(
FPL
("Level3"));
375
FilePath file_03 = subsubdir_path.Append(
FPL
("The file 03.txt"));
382
file_util::ComputeFilesSize(temp_dir_.path(),
FPL
("The file*"));
385
computed_size = file_util::ComputeFilesSize(temp_dir_.path(),
FPL
("bla*"));
392
FilePath file_a_path = temp_dir_.path().Append(
FPL
("file_a"));
393
FilePath dir_path = temp_dir_.path().Append(
FPL
("dir"))
[
all
...]
/external/chromium/chrome/browser/
shell_integration_unittest.cc
29
#define
FPL
FILE_PATH_LITERAL
144
{
FPL
("http___foo_.desktop"), "http://foo" },
145
{
FPL
("http___foo_bar_.desktop"), "http://foo/bar/" },
146
{
FPL
("http___foo_bar_a=b&c=d.desktop"), "http://foo/bar?a=b&c=d" },
149
{
FPL
("http___foo_.desktop"), "http://foo/bar/baz/../../../../../" },
150
{
FPL
("http___foo_.desktop"), "http://foo/bar/././../baz/././../" },
151
{
FPL
("http___.._.desktop"), "http://../../../../" },
/external/chromium/chrome/browser/download/
save_package_unittest.cc
19
#define
FPL
FILE_PATH_LITERAL
48
FilePath::StringType::size_type r_paren_index = filename.rfind(
FPL
(')'));
49
FilePath::StringType::size_type l_paren_index = filename.rfind(
FPL
('('));
142
FPL
("saved_resource") FPL_HTML_EXTENSION, true},
145
{"filename=1.css", "http://www.savepage.com",
FPL
("1.css"), false},
148
{"filename=1.js", "http://www.savepage.com",
FPL
("1.js"), false},
151
{"filename=1.css", "http://www.savepage.com",
FPL
("1(1).css"), false},
154
{"filename=1(1).js", "http://www.savepage.com",
FPL
("1(1).js"), false},
157
{"filename=1.css", "http://www.savepage.com",
FPL
("1(2).css"), false},
160
{"filename=1(1).css", "http://www.savepage.com",
FPL
("1(3).css"), false}
[
all
...]
/external/chromium/chrome/common/
chrome_constants.cc
9
#define
FPL
FILE_PATH_LITERAL
28
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);
38
FPL
(PRODUCT_STRING " Helper");
41
const FilePath::CharType kBrowserProcessExecutablePath[] =
FPL
("chrome.exe");
42
const FilePath::CharType kHelperProcessExecutablePath[] =
FPL
("chrome.exe");
44
const FilePath::CharType kBrowserProcessExecutablePath[] =
FPL
("chrome")
[
all
...]
/external/chromium/chrome/browser/chromeos/
boot_times_loader.cc
32
#define
FPL
(value) FILE_PATH_LITERAL(value)
35
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");
50
FPL
("chrome-first-render");
60
static const FilePath::CharType kLoginTimes[] =
FPL
("login-times-sent");
137
FPL
("/tmp/boot-times-sent");
174
const FilePath::CharType kFirmwareBootTime[] =
FPL
("firmware-boot-time")
[
all
...]
Completed in 557 milliseconds