Home
last modified time | relevance | path

Searched refs:out_ (Results 1 – 25 of 101) sorted by relevance

12345

/third_party/gn/src/gn/
Dninja_create_bundle_target_writer.cc99 out_ << "build "; in Run()
101 out_, in Run()
104 out_ << ": phony " << target_->dependency_output_file().value(); in Run()
105 out_ << std::endl; in Run()
117 out_ << "rule " << custom_rule_name << std::endl; in WriteCodeSigningRuleDefinition()
118 out_ << " command = "; in WriteCodeSigningRuleDefinition()
119 path_output_.WriteFile(out_, settings_->build_settings()->python_path()); in WriteCodeSigningRuleDefinition()
120 out_ << " "; in WriteCodeSigningRuleDefinition()
121 path_output_.WriteFile(out_, target_->bundle_data().code_signing_script()); in WriteCodeSigningRuleDefinition()
128 out_ << " "; in WriteCodeSigningRuleDefinition()
[all …]
Dninja_action_target_writer.cc54 out_ << std::endl; in Run()
67 out_ << "build"; in Run()
70 path_output_.WriteFiles(out_, output_files); in Run()
72 out_ << ": " << custom_rule_name; in Run()
76 out_ << " |"; in Run()
77 path_output_.WriteFiles(out_, input_deps); in Run()
79 out_ << std::endl; in Run()
87 out_ << " pool = "; in Run()
88 out_ << target_->action_values().pool().ptr->GetNinjaName( in Run()
90 out_ << std::endl; in Run()
[all …]
Dninja_target_writer.cc38 out_(out), in NinjaTargetWriter()
131 out_ << type->ninja_name << " = "; in WriteEscapedSubstitution()
133 out_, SubstitutionWriter::GetTargetSubstitution(target_, type), opts); in WriteEscapedSubstitution()
134 out_ << std::endl; in WriteEscapedSubstitution()
191 out_ << std::endl; in WriteSharedVars()
200 out_ << " "; in WriteCCompilerVars()
201 out_ << CSubstitutionDefines.ninja_name << " ="; in WriteCCompilerVars()
204 DefineWriter(), out_); in WriteCCompilerVars()
205 out_ << std::endl; in WriteCCompilerVars()
213 out_ << " "; in WriteCCompilerVars()
[all …]
Dninja_rust_binary_target_writer.cc219 WriteCrateVars(target_, tool_, opts, out_); in WriteCompilerVars()
242 out_ << " sources ="; in WriteSourcesAndInputs()
244 out_ << " "; in WriteSourcesAndInputs()
245 path_output_.WriteFile(out_, in WriteSourcesAndInputs()
249 out_ << " "; in WriteSourcesAndInputs()
250 path_output_.WriteFile(out_, OutputFile(settings_->build_settings(), data)); in WriteSourcesAndInputs()
252 out_ << std::endl; in WriteSourcesAndInputs()
264 out_ << " --extern "; in WriteExternsAndDeps()
265 out_ << crate_name; in WriteExternsAndDeps()
266 out_ << "="; in WriteExternsAndDeps()
[all …]
Dninja_c_binary_target_writer.cc253 out_ << substitution->ninja_name << " = -Xclang "; in WriteModuleDepsSubstitution()
254 EscapeStringToStream(out_, "-fmodules-embed-all-files", options); in WriteModuleDepsSubstitution()
258 out_ << " "; in WriteModuleDepsSubstitution()
259 EscapeStringToStream(out_, "-fmodule-file=", options); in WriteModuleDepsSubstitution()
260 path_output_.WriteFile(out_, module_dep.pcm); in WriteModuleDepsSubstitution()
264 out_ << std::endl; in WriteModuleDepsSubstitution()
356 out_ << " " << flag_type->ninja_name << " ="; in WriteGCCPCHCommand()
365 out_); in WriteGCCPCHCommand()
369 opts, out_); in WriteGCCPCHCommand()
373 opts, out_); in WriteGCCPCHCommand()
[all …]
Dninja_toolchain_writer.cc35 out_(out), in NinjaToolchainWriter()
53 out_ << std::endl; in Run()
56 out_ << pair.second; in Run()
83 out_ << "rule " << rule_prefix << tool->name() << std::endl; in WriteToolRule()
101 out_ << kIndent << "deps = gcc" << std::endl; in WriteToolRule()
105 out_ << kIndent << "deps = msvc" << std::endl; in WriteToolRule()
109 out_ << kIndent << "deps = gcc" << std::endl; in WriteToolRule()
116 out_ << kIndent << "pool = " << pool_name << std::endl; in WriteToolRule()
120 out_ << kIndent << "restat = 1" << std::endl; in WriteToolRule()
128 out_ << kIndent << name << " = "; in WriteRulePattern()
[all …]
Dxml_element_writer.cc31 : out_(out), in XmlElementWriter()
45 out_ << " />" << std::endl; in ~XmlElementWriter()
48 out_ << std::string(indent_, ' '); in ~XmlElementWriter()
49 out_ << "</" << tag_ << '>' << std::endl; in ~XmlElementWriter()
55 out_ << content; in Text()
67 return std::make_unique<XmlElementWriter>(out_, tag, attributes, indent_ + 2); in SubElement()
72 out_ << '>'; in StartContent()
76 out_ << std::endl; in StartContent()
81 return out_; in StartContent()
Dninja_binary_target_writer.cc44 NinjaRustBinaryTargetWriter writer(target_, out_); in Run()
49 NinjaCBinaryTargetWriter writer(target_, out_); in Run()
90 out_ << "build "; in WriteInputsStampAndGetDep()
91 path_output_.WriteFile(out_, stamp_file); in WriteInputsStampAndGetDep()
92 out_ << ": " << GetNinjaRulePrefixForToolchain(settings_) in WriteInputsStampAndGetDep()
97 out_ << " "; in WriteInputsStampAndGetDep()
98 path_output_.WriteFile(out_, *input); in WriteInputsStampAndGetDep()
101 out_ << std::endl; in WriteInputsStampAndGetDep()
280 out_ << "build"; in WriteCompilerBuildLine()
281 path_output_.WriteFiles(out_, outputs); in WriteCompilerBuildLine()
[all …]
Dninja_copy_target_writer.cc56 out_ << std::endl; in Run()
113 out_ << "build "; in WriteCopyRules()
114 path_output_.WriteFile(out_, output_file); in WriteCopyRules()
115 out_ << ": " << tool_name << " "; in WriteCopyRules()
116 path_output_.WriteFile(out_, input_file); in WriteCopyRules()
118 out_ << " ||"; in WriteCopyRules()
119 path_output_.WriteFiles(out_, input_deps); in WriteCopyRules()
120 path_output_.WriteFiles(out_, data_outs); in WriteCopyRules()
122 out_ << std::endl; in WriteCopyRules()
Dninja_build_writer.cc208 out_(out), in NinjaBuildWriter()
290 out_ << "ninja_required_version = " in WriteNinjaRules()
292 out_ << "rule gn\n"; in WriteNinjaRules()
293 out_ << " command = " << GetSelfInvocationCommand(build_settings_) << "\n"; in WriteNinjaRules()
295 out_ << " pool = console\n"; in WriteNinjaRules()
296 out_ << " description = Regenerating ninja files\n\n"; in WriteNinjaRules()
299 out_ << "build build.ninja: gn\n" in WriteNinjaRules()
338 out_ << std::endl; in WriteNinjaRules()
372 out_ << "pool " << name << std::endl in WriteAllPools()
408 out_ << "subninja "; in WriteSubninjas()
[all …]
/third_party/node/src/
Djson_utils.h20 : out_(out), compact_(compact) {} in JSONWriter()
27 for (int i = 0; i < indent_; i++) out_ << ' '; in advance()
31 out_ << ' '; in write_one_space()
35 out_ << '\n'; in write_new_line()
40 if (state_ == kAfterValue) out_ << ','; in json_start()
43 out_ << '{'; in json_start()
52 out_ << '}'; in json_end()
57 if (state_ == kAfterValue) out_ << ','; in json_objectstart()
61 out_ << ':'; in json_objectstart()
63 out_ << '{'; in json_objectstart()
[all …]
/third_party/boost/libs/beast/include/boost/beast/core/impl/
Dflat_buffer.hpp44 , out_(nullptr) in basic_flat_buffer()
58 , out_(nullptr) in basic_flat_buffer()
72 , out_(nullptr)
89 , out_(nullptr)
103 , out_(boost::exchange(other.out_, nullptr))
122 out_ = nullptr;
132 out_ = other.out_;
133 last_ = other.out_; // invalidate
141 other.out_ = nullptr;
154 , out_(nullptr)
[all …]
Dmulti_buffer.hpp468 , out_(list_.end()) in basic_multi_buffer()
477 , out_(list_.end()) in basic_multi_buffer()
488 , out_(list_.end()) in basic_multi_buffer()
500 , out_(list_.end()) in basic_multi_buffer()
517 other.out_ == other.list_.end(); in basic_multi_buffer()
519 out_ = at_end ? list_.end() : other.out_; in basic_multi_buffer()
520 other.out_ = other.list_.end(); in basic_multi_buffer()
534 out_ = list_.end(); in basic_multi_buffer()
540 other.out_ == other.list_.end(); in basic_multi_buffer()
542 out_ = at_end ? list_.end() : other.out_; in basic_multi_buffer()
[all …]
Dflat_static_buffer.ipp26 begin_ in_ out_ last_ end_
36 out_ = begin_;
45 if(n <= dist(out_, end_))
47 last_ = out_ + n;
48 return {out_, n};
57 out_ = in_ + len;
58 last_ = out_ + n;
59 return {out_, n};
69 out_ = in_;
81 out_ = begin_;
/third_party/boost/boost/beast/core/impl/
Dflat_buffer.hpp44 , out_(nullptr) in basic_flat_buffer()
58 , out_(nullptr) in basic_flat_buffer()
72 , out_(nullptr)
89 , out_(nullptr)
103 , out_(boost::exchange(other.out_, nullptr))
122 out_ = nullptr;
132 out_ = other.out_;
133 last_ = other.out_; // invalidate
141 other.out_ = nullptr;
154 , out_(nullptr)
[all …]
Dmulti_buffer.hpp468 , out_(list_.end()) in basic_multi_buffer()
477 , out_(list_.end()) in basic_multi_buffer()
488 , out_(list_.end()) in basic_multi_buffer()
500 , out_(list_.end()) in basic_multi_buffer()
517 other.out_ == other.list_.end(); in basic_multi_buffer()
519 out_ = at_end ? list_.end() : other.out_; in basic_multi_buffer()
520 other.out_ = other.list_.end(); in basic_multi_buffer()
534 out_ = list_.end(); in basic_multi_buffer()
540 other.out_ == other.list_.end(); in basic_multi_buffer()
542 out_ = at_end ? list_.end() : other.out_; in basic_multi_buffer()
[all …]
Dflat_static_buffer.ipp26 begin_ in_ out_ last_ end_
36 out_ = begin_;
45 if(n <= dist(out_, end_))
47 last_ = out_ + n;
48 return {out_, n};
57 out_ = in_ + len;
58 last_ = out_ + n;
59 return {out_, n};
69 out_ = in_;
81 out_ = begin_;
/third_party/skia/third_party/externals/tint/src/writer/spirv/
Dbinary_writer.cc33 out_.reserve(builder->total_size()); in WriteBuilder()
43 out_.push_back(spv::MagicNumber); in WriteHeader()
44 out_.push_back(0x00010300); // Version 1.3 in WriteHeader()
45 out_.push_back(kGeneratorId); in WriteHeader()
46 out_.push_back(bound); in WriteHeader()
47 out_.push_back(0); in WriteHeader()
51 out_.push_back(inst.word_length() << 16 | in process_instruction()
61 out_.push_back(0); in process_op()
63 uint8_t* ptr = reinterpret_cast<uint8_t*>(out_.data() + (out_.size() - 1)); in process_op()
66 out_.push_back(op.to_i()); in process_op()
[all …]
/third_party/boost/boost/spirit/home/support/detail/lexer/
Dstring_token.hpp142 static void escape_char (const CharT ch_, string &out_) in escape_char()
147 out_ += '\\'; in escape_char()
148 out_ += '0'; in escape_char()
151 out_ += '\\'; in escape_char()
152 out_ += 'a'; in escape_char()
155 out_ += '\\'; in escape_char()
156 out_ += 'b'; in escape_char()
159 out_ += '\\'; in escape_char()
160 out_ += 'x'; in escape_char()
161 out_ += '1'; in escape_char()
[all …]
/third_party/skia/third_party/externals/spirv-tools/tools/cfg/
Dbin_to_dot.cpp35 : name_mapper_(std::move(name_mapper)), out_(*out) {} in DotConverter()
39 out_ << "digraph {\n"; in Begin()
41 out_ << "legend_merge_src [shape=plaintext, label=\"\"];\n" in Begin()
51 void End() const { out_ << "}\n"; } in End()
79 std::ostream& out_; member in __anon30e34da90111::DotConverter
132 out_ << current_block_id_; in FlushBlock()
134 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\nFn " in FlushBlock()
137 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\"];\n"; in FlushBlock()
141 out_ << current_block_id_ << " -> " << successor << ";\n"; in FlushBlock()
145 out_ << current_block_id_ << " -> " << merge_ << " [" << kMergeStyle in FlushBlock()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/cfg/
Dbin_to_dot.cpp35 : name_mapper_(std::move(name_mapper)), out_(*out) {} in DotConverter()
39 out_ << "digraph {\n"; in Begin()
41 out_ << "legend_merge_src [shape=plaintext, label=\"\"];\n" in Begin()
51 void End() const { out_ << "}\n"; } in End()
79 std::ostream& out_; member in __anon80db81150111::DotConverter
132 out_ << current_block_id_; in FlushBlock()
134 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\nFn " in FlushBlock()
137 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\"];\n"; in FlushBlock()
141 out_ << current_block_id_ << " -> " << successor << ";\n"; in FlushBlock()
145 out_ << current_block_id_ << " -> " << merge_ << " [" << kMergeStyle in FlushBlock()
[all …]
/third_party/spirv-tools/tools/cfg/
Dbin_to_dot.cpp35 : name_mapper_(std::move(name_mapper)), out_(*out) {} in DotConverter()
39 out_ << "digraph {\n"; in Begin()
41 out_ << "legend_merge_src [shape=plaintext, label=\"\"];\n" in Begin()
51 void End() const { out_ << "}\n"; } in End()
79 std::ostream& out_; member in __anon30c88e940111::DotConverter
132 out_ << current_block_id_; in FlushBlock()
134 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\nFn " in FlushBlock()
137 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\"];\n"; in FlushBlock()
141 out_ << current_block_id_ << " -> " << successor << ";\n"; in FlushBlock()
145 out_ << current_block_id_ << " -> " << merge_ << " [" << kMergeStyle in FlushBlock()
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/tools/cfg/
Dbin_to_dot.cpp35 : name_mapper_(std::move(name_mapper)), out_(*out) {} in DotConverter()
39 out_ << "digraph {\n"; in Begin()
41 out_ << "legend_merge_src [shape=plaintext, label=\"\"];\n" in Begin()
51 void End() const { out_ << "}\n"; } in End()
79 std::ostream& out_; member in __anoneb56309e0111::DotConverter
132 out_ << current_block_id_; in FlushBlock()
134 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\nFn " in FlushBlock()
137 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\"];\n"; in FlushBlock()
141 out_ << current_block_id_ << " -> " << successor << ";\n"; in FlushBlock()
145 out_ << current_block_id_ << " -> " << merge_ << " [" << kMergeStyle in FlushBlock()
[all …]
/third_party/boost/boost/thread/concurrent_queues/
Dsync_bounded_queue.hpp98 size_type out_; member in boost::concurrent::sync_bounded_queue
109 return in_ == out_; in empty()
113 return in_ == out_; in empty()
117 return (inc(in_) == out_); in full()
121 return (inc(in_) == out_); in full()
130 return ((in_+capacity(lk)-out_) % capacity(lk)); in size()
178 elem = boost::move(data_[out_]); in pull()
179 out_ = inc(out_); in pull()
184 value_type elem = boost::move(data_[out_]); in pull()
185 out_ = inc(out_); in pull()
[all …]
/third_party/boost/libs/contract/test/detail/
Dout_inlined.hpp15 namespace out_ { namespace
19 std::string out() { return out_::out; } in out()
22 if(text == "") out_::out = ""; in out()
24 out_::out = out_::out + text; in out()

12345