OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PathOutput
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/tools/gn/
path_output_unittest.cc
12
TEST(
PathOutput
, Basic) {
14
PathOutput
writer(build_dir, ESCAPE_NONE, false);
53
TEST(
PathOutput
, BasicInRoot) {
55
PathOutput
writer(build_dir, ESCAPE_NONE, false);
70
TEST(
PathOutput
, NinjaEscaping) {
72
PathOutput
writer(build_dir, ESCAPE_NINJA, false);
87
TEST(
PathOutput
, ShellEscaping) {
89
PathOutput
writer(build_dir, ESCAPE_SHELL, false);
114
TEST(
PathOutput
, SlashConversion) {
116
PathOutput
writer(build_dir, ESCAPE_NINJA, true)
[
all
...]
path_output.cc
12
PathOutput
::
PathOutput
(const SourceDir& current_dir,
18
"the source root. There needs to be some tweaks to
PathOutput
to make "
30
PathOutput
::~
PathOutput
() {
33
void
PathOutput
::WriteFile(std::ostream& out, const SourceFile& file) const {
37
void
PathOutput
::WriteDir(std::ostream& out,
80
void
PathOutput
::WriteFile(std::ostream& out, const OutputFile& file) const {
85
void
PathOutput
::WriteFile(std::ostream& out,
91
void
PathOutput
::WriteSourceRelativeString
[
all
...]
path_output.h
25
class
PathOutput
{
36
PathOutput
(const SourceDir& current_dir,
39
~
PathOutput
();
ninja_target_writer.h
48
PathOutput
path_output_;
ninja_toolchain_writer.h
45
PathOutput
path_output_;
ninja_build_writer.h
47
PathOutput
path_output_;
ninja_script_target_writer.h
78
PathOutput
path_output_no_escaping_;
gyp_target_writer.h
74
PathOutput
path_output_;
ninja_binary_target_writer.cc
44
IncludeWriter(
PathOutput
& path_output,
64
path_output_.WriteDir(out, d,
PathOutput
::DIR_NO_LAST_SLASH);
69
PathOutput
& path_output_;
70
bool old_inhibit_quoting_; // So we can put the
PathOutput
back.
262
PathOutput
lib_path_output(path_output_.current_dir(), ESCAPE_NINJA_SHELL,
267
PathOutput
::DIR_NO_LAST_SLASH);
gyp_script_target_writer.cc
48
path_output_.WriteDir(out_, ninja_dir,
PathOutput
::DIR_NO_LAST_SLASH);
Completed in 80 milliseconds