/external/v8/src/regexp/ |
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 …]
|
D | jsregexp.cc | 4364 : os_(os), in DotPrinter() 4375 std::ostream& os_; member in v8::internal::DotPrinter 4381 os_ << "digraph G {\n graph [label=\""; in PrintNode() 4385 os_ << "\\\\"; in PrintNode() 4388 os_ << "\""; in PrintNode() 4391 os_ << label[i]; in PrintNode() 4395 os_ << "\"];\n"; in PrintNode() 4397 os_ << "}" << std::endl; in PrintNode() 4409 os_ << " n" << from << " -> n" << on_failure << " [style=dotted];\n"; in PrintOnFailure() 4417 : os_(os), in TableEntryBodyPrinter() [all …]
|
/external/v8/src/compiler/ |
D | graph-visualizer.cc | 264 : os_(os), in JSONGraphNodeWriter() 273 os_ << "\n"; in Print() 280 os_ << ",\n"; in PrintNode() 286 os_ << "{\"id\":" << SafeId(node) << ",\"label\":\"" << JSONEscaped(label) in PrintNode() 293 os_ << ",\"rankInputs\":[0," << NodeProperties::FirstControlIndex(node) in PrintNode() 295 os_ << ",\"rankWithInput\":[" << NodeProperties::FirstControlIndex(node) in PrintNode() 299 os_ << ",\"rankInputs\":[" << NodeProperties::FirstControlIndex(node) in PrintNode() 303 os_ << ",\"rankInputs\":[0]"; in PrintNode() 307 os_ << ", \"sourcePosition\" : " << AsJSON(position); in PrintNode() 312 os_ << ", \"origin\" : " << AsJSON(origin); in PrintNode() [all …]
|
/external/v8/tools/clang/blink_gc_plugin/ |
D | JsonWriter.h | 18 *os_ << "["; in OpenList() 23 *os_ << ":"; in OpenList() 27 *os_ << "]"; in CloseList() 32 *os_ << "{"; in OpenObject() 36 *os_ << "}\n"; in CloseObject() 41 *os_ << val; in Write() 45 *os_ << "\"" << val << "\""; in Write() 49 *os_ << "\"" << key << "\":" << val; in Write() 53 *os_ << "\"" << key << "\":\"" << val << "\""; in Write() 56 JsonWriter(std::unique_ptr<llvm::raw_ostream> os) : os_(std::move(os)) {} in JsonWriter() [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/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/ |
D | log-utils.cc | 39 os_(output_handle_ == nullptr ? stdout : output_handle_), in Log() 160 OFStream& os = log_->os_; in AppendSymbolName() 175 OFStream& os = log_->os_; in AppendSymbolNameDetails() 209 void Log::MessageBuilder::AppendRawCharacter(char c) { log_->os_ << c; } in AppendRawCharacter() 211 void Log::MessageBuilder::WriteToLogFile() { log_->os_ << std::endl; } in WriteToLogFile() 222 OFStream& os = log_->os_;
|
D | log-utils.h | 81 log_->os_ << value; 109 os_.write(msg, length); in WriteToFile() 110 DCHECK(!os_.bad()); in WriteToFile() 120 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 | 173 llvm::raw_ostream &os_;
|
D | b_frontend_action.cc | 1347 : os_(os), in BFrontendAction() 1405 rewriter_->getEditBuffer(rewriter_->getSourceMgr().getMainFileID()).write(os_); in EndSourceFileAction() 1406 os_.flush(); in EndSourceFileAction()
|
/external/v8/src/base/debug/ |
D | stack_trace_posix.cc | 283 explicit StreamBacktraceOutputHandler(std::ostream* os) : os_(os) {} in StreamBacktraceOutputHandler() 285 void HandleOutput(const char* output) override { (*os_) << output; } in HandleOutput() 288 std::ostream* os_; member in v8::base::debug::__anonf04b7f980111::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::__anon24131be80111::StreamBacktraceOutputHandler
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 105 std::ostream& os_; variable 110 : std::ostream(os.rdbuf()), os_(os), ros_(*this) {} in convertible_fwd_ostream()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | ChangeLog | 1641 wrapper functions defined in os.h and implemented in os_*.c to make
|