/external/v8/src/regexp/ |
D | regexp-dotprinter.cc | 20 explicit DotPrinterImpl(std::ostream& os) : os_(os) {} in DotPrinterImpl() 29 std::ostream& os_; member in v8::internal::DotPrinterImpl 33 os_ << "digraph G {\n graph [label=\""; in PrintNode() 37 os_ << "\\\\"; in PrintNode() 40 os_ << "\""; in PrintNode() 43 os_ << label[i]; in PrintNode() 47 os_ << "\"];\n"; in PrintNode() 49 os_ << "}" << std::endl; in PrintNode() 59 os_ << " n" << from << " -> n" << on_failure << " [style=dotted];\n"; in PrintOnFailure() 66 : os_(os), first_(true) {} in AttributePrinter() [all …]
|
D | regexp-ast.cc | 141 RegExpUnparser(std::ostream& os, Zone* zone) : os_(os), zone_(zone) {} in RegExpUnparser() 147 std::ostream& os_; member in v8::internal::RegExpUnparser 153 os_ << "(|"; in VisitDisjunction() 155 os_ << " "; in VisitDisjunction() 158 os_ << ")"; in VisitDisjunction() 164 os_ << "(:"; in VisitAlternative() 166 os_ << " "; in VisitAlternative() 169 os_ << ")"; in VisitAlternative() 175 os_ << AsUC32(that.from()); in VisitCharacterRange() 177 os_ << "-" << AsUC32(that.to()); in VisitCharacterRange() [all …]
|
/external/v8/src/compiler/ |
D | graph-visualizer.cc | 274 : os_(os), in JSONGraphNodeWriter() 285 os_ << "\n"; in Print() 292 os_ << ",\n"; in PrintNode() 298 os_ << "{\"id\":" << SafeId(node) << ",\"label\":\"" << JSONEscaped(label) in PrintNode() 305 os_ << ",\"rankInputs\":[0," << NodeProperties::FirstControlIndex(node) in PrintNode() 307 os_ << ",\"rankWithInput\":[" << NodeProperties::FirstControlIndex(node) in PrintNode() 311 os_ << ",\"rankInputs\":[" << NodeProperties::FirstControlIndex(node) in PrintNode() 315 os_ << ",\"rankInputs\":[0]"; in PrintNode() 320 os_ << ", \"sourcePosition\" : " << AsJSON(position); in PrintNode() 326 os_ << ", \"origin\" : " << AsJSON(origin); in PrintNode() [all …]
|
/external/stressapptest/src/ |
D | sat.cc | 150 memory_threads_ = os_->num_cpus(); in CheckEnvironment() 156 size_mb_ = os_->FindFreeMemSize() / kMegabyte; in CheckEnvironment() 162 list<string> locations = os_->FindFileDevices(); in CheckEnvironment() 203 if (!os_->IsSupported()) { in CheckEnvironment() 222 bool result = os_->AllocateTestMem(size_, paddr_base_); in AllocateMemory() 264 pe->addr = os_->PrepareTestMem(pe->offset, page_length_); // Map it. in GetValid() 267 pe->ts = os_->GetTimestamp(); in GetValid() 277 os_->ReleaseTestMem(pe->addr, pe->offset, page_length_); // Unmap the page. in PutValid() 303 pe->addr = os_->PrepareTestMem(pe->offset, page_length_); // Map it. in GetEmpty() 311 os_->ReleaseTestMem(pe->addr, pe->offset, page_length_); // Unmap the page. in PutEmpty() [all …]
|
D | error_diag.cc | 138 os_ = 0; in ErrorDiag() 151 os_ = os; in set_os() 198 os_->ErrorReport(dimm_string.c_str(), "miscompare", count); in AddMiscompareError() 227 string src_dimm = AddressToDimmString(os_, src_addr, offset); in AddHDDMiscompareError() 228 string dst_dimm = AddressToDimmString(os_, dst_addr, offset); in AddHDDMiscompareError() 258 os_->ErrorReport(devicename.c_str(), "miscompare", 1); in AddHDDMiscompareError() 281 string src_dimm = AddressToDimmString(os_, src_addr, offset); in AddHDDSectorTagError() 282 string dst_dimm = AddressToDimmString(os_, dst_addr, offset); in AddHDDSectorTagError() 312 os_->ErrorReport(devicename.c_str(), "sector", 1); in AddHDDSectorTagError()
|
D | worker.cc | 259 if (!os_->normal_mem()) in GetMemoryCopiedData() 290 os_ = os_init; in InitThread() 578 os_->Flush(error->vaddr); in ProcessError() 594 error->paddr = os_->VirtualToPhysical(error->vbyteaddr); in ProcessError() 597 os_->FindDimm(error->paddr, dimm_string, sizeof(dimm_string)); in ProcessError() 602 os_->error_diagnoser_->AddMiscompareError(dimm_string, in ProcessError() 624 os_->Flush(error->vaddr); in ProcessError() 636 os_->Flush(error->vaddr); in ProcessError() 652 error->paddr = os_->VirtualToPhysical(error->vbyteaddr); in ProcessError() 655 os_->FindDimm(error->paddr, dimm_string, sizeof(dimm_string)); in ProcessError() [all …]
|
D | error_diag.h | 161 OsLayer *os_; // Platform handle. variable
|
D | sat.h | 291 class OsLayer *os_; // Os abstraction: put hacks here. variable
|
D | worker.h | 394 class OsLayer *os_; // Os abstraction: put hacks here. variable
|
/external/v8/src/torque/ |
D | utils.cc | 335 : os_(os), d_(std::move(d)) { in IfDefScope() 336 os_ << "#ifdef " << d_ << "\n"; in IfDefScope() 338 IfDefScope::~IfDefScope() { os_ << "#endif // " << d_ << "\n"; } in ~IfDefScope() 342 : os_(os), d_(std::move(namespaces)) { in NamespaceScope() 344 os_ << "namespace " << s << " {\n"; in NamespaceScope() 349 os_ << "} // namespace " << *i << "\n"; in ~NamespaceScope() 354 : os_(os), in IncludeGuardScope() 357 os_ << "#ifndef " << d_ << "\n"; in IncludeGuardScope() 358 os_ << "#define " << d_ << "\n\n"; in IncludeGuardScope() 360 IncludeGuardScope::~IncludeGuardScope() { os_ << "#endif // " << d_ << "\n"; } in ~IncludeGuardScope() [all …]
|
D | utils.h | 376 std::ostream& os_; 389 std::ostream& os_; 401 std::ostream& os_; 413 std::ostream& os_;
|
/external/flatbuffers/grpc/src/compiler/ |
D | java_generator.h | 36 std::ostream* os_; variable 39 LogHelper(std::ostream* os) : os_(os) {} in LogHelper() 48 *os_ << std::endl; in ~LogHelper() 54 std::ostream& get_os() const { return *os_; } in get_os()
|
/external/v8/src/logging/ |
D | log-utils.cc | 53 os_(output_handle_ == nullptr ? stdout : output_handle_), in Log() 188 OFStream& os = log_->os_; in AppendSymbolName() 203 OFStream& os = log_->os_; in AppendSymbolNameDetails() 237 void Log::MessageBuilder::AppendRawCharacter(char c) { log_->os_ << c; } in AppendRawCharacter() 240 log_->os_ << std::endl; in WriteToLogFile() 252 OFStream& os = log_->os_;
|
D | log-utils.h | 82 log_->os_ << value; 128 OFStream os_; variable
|
/external/vixl/src/aarch32/ |
D | disasm-aarch32.h | 248 std::ostream& os_; variable 254 : os_(os), in DisassemblerStream() 258 std::ostream& os() const { return os_; } in os() 276 os_ << value; 280 os_ << string; 284 os_ << cond; 288 os_ << cond; 292 os_ << size; 296 os_ << imm; 300 os_ << imm; [all …]
|
/external/bcc/src/cc/frontends/clang/ |
D | tp_frontend_action.cc | 240 : os_(os), rewriter_(new Rewriter) { in TracepointFrontendAction() 244 rewriter_->getEditBuffer(rewriter_->getSourceMgr().getMainFileID()).write(os_); in EndSourceFileAction() 245 os_.flush(); in EndSourceFileAction()
|
D | tp_frontend_action.h | 78 llvm::raw_ostream &os_;
|
D | b_frontend_action.h | 175 llvm::raw_ostream &os_;
|
D | b_frontend_action.cc | 1355 : os_(os), in BFrontendAction() 1413 rewriter_->getEditBuffer(rewriter_->getSourceMgr().getMainFileID()).write(os_); in EndSourceFileAction() 1414 os_.flush(); in EndSourceFileAction()
|
/external/v8/src/base/debug/ |
D | stack_trace_posix.cc | 283 explicit StreamBacktraceOutputHandler(std::ostream* os) : os_(os) {} in StreamBacktraceOutputHandler() 288 void HandleOutput(const char* output) override { (*os_) << output; } in HandleOutput() 291 std::ostream* os_; member in v8::base::debug::__anon25413c9a0111::StreamBacktraceOutputHandler
|
/external/google-breakpad/src/common/ |
D | module.h | 281 string os() const { return os_; } in os() 296 string name_, os_, architecture_, id_; variable
|
D | module.cc | 54 os_(os), in Module() 233 stream << "MODULE " << os_ << " " << architecture_ << " " in Write()
|
/external/libchrome/base/debug/ |
D | stack_trace_posix.cc | 439 explicit StreamBacktraceOutputHandler(std::ostream* os) : os_(os) { in StreamBacktraceOutputHandler() 442 void HandleOutput(const char* output) override { (*os_) << output; } in HandleOutput() 445 std::ostream* os_; member in base::debug::__anon988cd1aa0111::StreamBacktraceOutputHandler
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | ChangeLog | 1739 wrapper functions defined in os.h and implemented in os_*.c to make
|