HomeSort by relevance Sort by last modified time
    Searched refs:out_ (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/tools/gn/
ninja_action_target_writer.cc 46 out_ << std::endl;
59 out_ << "build";
62 path_output_.WriteFiles(out_, output_files);
64 out_ << ": " << custom_rule_name;
68 out_ << " | ";
69 path_output_.WriteFile(out_, input_dep);
71 out_ << std::endl;
73 out_ << " depfile = ";
75 out_ << std::endl;
78 out_ << std::endl
    [all...]
ninja_binary_target_writer.cc 96 out_ << kSubstitutionNinjaNames[SUBSTITUTION_DEFINES] << " =";
98 target_, &ConfigValues::defines, DefineWriter(), out_);
99 out_ << std::endl;
104 out_ << kSubstitutionNinjaNames[SUBSTITUTION_INCLUDE_DIRS] << " =";
109 IncludeWriter(include_path_output), out_);
110 out_ << std::endl;
117 out_ << kSubstitutionNinjaNames[subst_enum] << " ="; \
119 flag_escape_options, out_); \
120 out_ << std::endl; \
152 out_ << "build"
    [all...]
ninja_target_writer.cc 30 out_(out),
88 out_ << kSubstitutionNinjaNames[SUBSTITUTION_LABEL] << " = "
97 out_ << kSubstitutionNinjaNames[SUBSTITUTION_ROOT_GEN_DIR] << " = "
106 out_ << kSubstitutionNinjaNames[SUBSTITUTION_ROOT_OUT_DIR] << " = "
115 out_ << kSubstitutionNinjaNames[SUBSTITUTION_TARGET_GEN_DIR] << " = "
124 out_ << kSubstitutionNinjaNames[SUBSTITUTION_TARGET_OUT_DIR] << " = "
133 out_ << kSubstitutionNinjaNames[SUBSTITUTION_TARGET_OUTPUT_NAME] << " = "
143 out_ << std::endl;
182 out_ << "build ";
183 path_output_.WriteFile(out_, input_stamp_file)
    [all...]
ninja_toolchain_writer.cc 34 out_(out),
77 out_ << std::endl;
83 out_ << "rule " << rule_prefix << Toolchain::ToolTypeToName(type)
101 out_ << kIndent << "deps = gcc" << std::endl;
105 out_ << kIndent << "deps = msvc" << std::endl;
111 out_ << kIndent << "pool = link_pool\n";
114 out_ << kIndent << "restat = 1" << std::endl;
122 out_ << kIndent << name << " = ";
123 SubstitutionWriter::WriteWithNinjaVariables(pattern, options, out_);
124 out_ << std::endl
    [all...]
ninja_copy_target_writer.cc 57 out_ << std::endl;
103 out_ << "build ";
104 path_output_.WriteFile(out_, output_file);
105 out_ << ": " << tool_name << " ";
106 path_output_.WriteFile(out_, input_file);
107 out_ << std::endl;
ninja_build_writer.cc 86 out_(out),
132 out_ << "rule gn\n";
133 out_ << " command = " << GetSelfInvocationCommand(build_settings_) << "\n";
134 out_ << " description = Regenerating ninja files\n\n";
137 out_ << "build build.ninja: gn\n"
156 out_ << std::endl;
160 out_ << "pool link_pool\n"
167 out_ << "subninja ";
168 path_output_.WriteFile(out_, GetNinjaFileForToolchain(all_settings_[i]));
169 out_ << std::endl
    [all...]
ninja_target_writer.h 52 std::ostream& out_; member in class:NinjaTargetWriter
ninja_build_writer.h 52 std::ostream& out_; member in class:NinjaBuildWriter
ninja_toolchain_writer.h 54 std::ostream& out_; member in class:NinjaToolchainWriter
  /art/compiler/
buffered_output_stream.cc 24 : OutputStream(out->GetLocation()), out_(out), used_(0) {}
29 return out_->WriteFully(buffer, byte_count);
46 success = out_->WriteFully(&buffer_[0], used_);
56 return out_->Seek(offset, whence);
buffered_output_stream.h 31 delete out_;
43 OutputStream* const out_; member in class:art::BufferedOutputStream
  /external/chromium_org/sdch/open-vcdiff/src/
jsonwriter_test.cc 32 : output_string_(&out_) {
39 string out_; member in class:open_vcdiff::__anon15279::JSONWriterTest
47 EXPECT_EQ("", out_);
55 EXPECT_EQ("[]", out_);
65 EXPECT_EQ("[\"123\",]", out_);
74 EXPECT_EQ("[3,5,]", out_);
83 EXPECT_EQ("[\"aaa\",]", out_);
92 EXPECT_EQ("[\"\\n\\b\\r\",]", out_);
103 EXPECT_EQ("[\"abc\",3,5,\"defghij\",]", out_);
111 EXPECT_EQ("[\"abc\",", out_);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiledata.h 139 bool enabled() const { return out_ >= 0; }
167 int out_; // fd for output file. member in class:ProfileData
profiledata.cc 83 out_(-1),
126 out_ = fd;
191 DumpProcSelfMaps(out_);
206 close(out_);
216 out_ = -1;
328 FDWrite(out_, buf, bytes);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiledata.h 139 bool enabled() const { return out_ >= 0; }
167 int out_; // fd for output file. member in class:ProfileData
profiledata.cc 83 out_(-1),
126 out_ = fd;
191 DumpProcSelfMaps(out_);
206 close(out_);
216 out_ = -1;
328 FDWrite(out_, buf, bytes);
  /external/chromium_org/chrome/test/logging/win/
log_file_printer.cc 126 std::ostream* out_; member in class:__anon10610::EventPrinter
131 : out_(out) {
144 *out_ << std::setfill('0')
159 *out_ << '[' << event->Header.ProcessId << ':'
163 *out_ << ':' << level;
165 *out_ << ':' << context;
166 *out_ << "] ";
174 *out_ << error << " (class=" << guid << ", type="
195 *out_ << "Log captured from Windows "
210 *out_ << message << std::endl
    [all...]
  /external/chromium_org/base/test/launcher/
test_results_tracker.cc 56 TestResultsTracker::TestResultsTracker() : iteration_(-1), out_(NULL) {
62 if (!out_)
64 fprintf(out_, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
65 fprintf(out_, "<testsuites name=\"AllTests\" tests=\"\" failures=\"\""
83 fprintf(out_, " <testsuite name=\"%s\" tests=\"%" PRIuS "\" failures=\"\""
88 fprintf(out_, " <testcase name=\"%s\" status=\"run\" time=\"%.3f\""
94 fprintf(out_, " <failure message=\"\" type=\"\"></failure>\n");
95 fprintf(out_, " </testcase>\n");
97 fprintf(out_, " </testsuite>\n");
99 fprintf(out_, "</testsuites>\n")
    [all...]
test_results_tracker.h 116 FILE* out_; member in class:base::TestResultsTracker
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/src/org/chromium/
IRCProxyWebSocket.java 40 OutputStreamWriter out_; field in class:IRCProxyWebSocket.ChatWebSocket
60 out_ = new OutputStreamWriter(socket_.getOutputStream());
78 out_.write(data);
79 out_.flush();
  /external/chromium_org/net/quic/crypto/
crypto_server_test.cc 124 ASSERT_EQ(kREJ, out_.tag());
131 ASSERT_TRUE(out_.GetStringPiece(kSourceAddressTokenTag, &srct));
135 ASSERT_TRUE(out_.GetStringPiece(kSCFG, &scfg));
234 &params_, &out_, &error_details);
276 QuicErrorCode error_code = out_.GetTaglist(kRREJ, &reject_reasons,
303 CryptoHandshakeMessage out_; member in class:net::test::CryptoServerTest
363 EXPECT_TRUE(out_.GetStringPiece(kCertificateTag, &cert));
364 EXPECT_TRUE(out_.GetStringPiece(kPROF, &proof));
461 ASSERT_EQ(kREJ, out_.tag());
482 ASSERT_EQ(kREJ, out_.tag())
    [all...]
crypto_framer.cc 33 out_.reset(new CryptoHandshakeMessage(message));
38 CryptoHandshakeMessage* release() { return out_.release(); }
41 scoped_ptr<CryptoHandshakeMessage> out_; member in class:net::__anon14055::OneShotVisitor
  /external/chromium_org/sync/engine/
get_commit_ids.cc 269 syncable::Directory::Metahandles* out_; member in class:syncer::__anon15372::Traversal
281 : out_(out),
444 return out_->size() >= max_entries_;
453 out_->insert(out_->end(), handles.begin(), handles.end());
458 out_->push_back(metahandle);
492 if (out_->size() > max_entries_)
493 out_->resize(max_entries_);
526 if (deletion_list.size() + out_->size() > max_entries_)
537 if (out_->size() > max_entries_
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
system_delay_unittest.cc 52 float out_[kSamplesPerChunk]; member in class:__anon20511::SystemDelayTest
62 memset(out_, 0, sizeof(out_));
108 out_,
273 out_,
327 out_,
  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.cc 22 ExceptionConverter(PP_Var* out) : out_(out) {
26 *out_ = exception_.Detach();
32 PP_Var* out_; member in class:pp::deprecated::__anon14595::ExceptionConverter

Completed in 1096 milliseconds

1 2