/third_party/node/deps/v8/src/regexp/ |
D | regexp-dotprinter.cc | 19 explicit DotPrinterImpl(std::ostream& os) : os_(os) {} in DotPrinterImpl() 28 std::ostream& os_; member in v8::internal::DotPrinterImpl 32 os_ << "digraph G {\n graph [label=\""; in PrintNode() 36 os_ << "\\\\"; in PrintNode() 39 os_ << "\""; in PrintNode() 42 os_ << label[i]; in PrintNode() 46 os_ << "\"];\n"; in PrintNode() 48 os_ << "}" << std::endl; in PrintNode() 58 os_ << " n" << from << " -> n" << on_failure << " [style=dotted];\n"; in PrintOnFailure() 64 explicit AttributePrinter(std::ostream& os) : os_(os), first_(true) {} in AttributePrinter() [all …]
|
D | regexp-ast.cc | 144 RegExpUnparser(std::ostream& os, Zone* zone) : os_(os), zone_(zone) {} in RegExpUnparser() 150 std::ostream& os_; member in v8::internal::__anona04f0b350211::RegExpUnparser 157 os_ << "(|"; in VisitDisjunction() 159 os_ << " "; in VisitDisjunction() 162 os_ << ")"; in VisitDisjunction() 168 os_ << "(:"; in VisitAlternative() 170 os_ << " "; in VisitAlternative() 173 os_ << ")"; in VisitAlternative() 179 os_ << AsUC32(that.from()); in VisitCharacterRange() 181 os_ << "-" << AsUC32(that.to()); in VisitCharacterRange() [all …]
|
/third_party/node/deps/v8/src/maglev/ |
D | maglev-graph-printer.cc | 178 : std::ostream(this), os_(os), targets_(targets), padding_size_(0) {} in MaglevPrintingVisitorOstream() 192 std::ostream& os_; member in v8::internal::maglev::__anon73fe35f20111::MaglevPrintingVisitorOstream 202 PrintVerticalArrows(os_, *targets_); in overflow() 203 PrintPadding(os_, padding_size_); in overflow() 205 os_.rdbuf()->sputc(c); in overflow() 213 : os_(os), in MaglevPrintingVisitor() 215 new MaglevPrintingVisitorOstream(os_, &targets_)) {} in MaglevPrintingVisitor() 219 os_ << "Graph (param count: " << compilation_unit->parameter_count() in PreProcessGraph() 293 os_ << c; in PreProcessBasicBlock() 295 os_ << (saw_start ? "►" : " "); in PreProcessBasicBlock() [all …]
|
D | maglev-graph-printer.h | 41 std::ostream& os_;
|
/third_party/node/deps/v8/src/compiler/ |
D | graph-visualizer.cc | 274 : os_(os), in JSONGraphWriter() 283 os_ << "{\"name\":\"" << phase_name << "\",\"type\":\"graph\",\"data\":"; in PrintPhase() 285 os_ << "},\n"; in PrintPhase() 296 os_ << "{\n\"nodes\":["; in Print() 298 os_ << "\n"; in Print() 299 os_ << "],\n\"edges\":["; in Print() 301 os_ << "\n"; in Print() 302 os_ << "]}"; in Print() 310 os_ << ",\n"; in PrintNode() 316 os_ << "{\"id\":" << SafeId(node) << ",\"label\":\"" << JSONEscaped(label) in PrintNode() [all …]
|
D | graph-visualizer.h | 119 std::ostream& os_;
|
/third_party/node/deps/v8/src/torque/ |
D | utils.cc | 346 : os_(os), d_(std::move(d)) { in IfDefScope() 347 os_ << "#ifdef " << d_ << "\n"; in IfDefScope() 349 IfDefScope::~IfDefScope() { os_ << "#endif // " << d_ << "\n"; } in ~IfDefScope() 353 : os_(os), d_(std::move(namespaces)) { in NamespaceScope() 355 os_ << "namespace " << s << " {\n"; in NamespaceScope() 360 os_ << "} // namespace " << *i << "\n"; in ~NamespaceScope() 365 : os_(os), in IncludeGuardScope() 368 os_ << "#ifndef " << d_ << "\n"; in IncludeGuardScope() 369 os_ << "#define " << d_ << "\n\n"; in IncludeGuardScope() 371 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_;
|
/third_party/node/deps/v8/src/logging/ |
D | log-utils.cc | 56 os_(output_handle_ == nullptr ? stdout : output_handle_), in Log() 195 OFStream& os = log_->os_; in AppendSymbolName() 210 OFStream& os = log_->os_; in AppendSymbolNameDetails() 244 void Log::MessageBuilder::AppendRawCharacter(char c) { log_->os_ << c; } in AppendRawCharacter() 247 log_->os_ << std::endl; in WriteToLogFile() 259 OFStream& os = log_->os_;
|
D | log-utils.h | 78 log_->os_ << value; 124 OFStream os_; variable
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
D | iostream_state_saver.h | 54 : os_(os), in ostream_state_saver() 63 os_.precision(precision_); in ~ostream_state_saver() 64 os_.fill(fill_); in ~ostream_state_saver() 65 os_.flags(flags_); in ~ostream_state_saver() 69 ostream_type& os_;
|
/third_party/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 …]
|
/third_party/node/deps/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::__anon15eeba710111::StreamBacktraceOutputHandler
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/ |
D | BUILD.gn | 97 "$WPA_ROOT_DIR/src/utils/os_${CONFIG_OS}.c", 289 "$WPA_ROOT_DIR/src/utils/os_${CONFIG_OS}.c", 1068 "$WPA_ROOT_DIR/src/utils/os_${CONFIG_OS}.c", 1160 "$WPA_ROOT_DIR/src/utils/os_${CONFIG_OS}.c",
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-test.cc | 978 explicit FileOutputStream(const char* filename) : os_(filename) {} in FileOutputStream() 979 ~FileOutputStream() override { os_.close(); } in ~FileOutputStream() 982 os_.write(data, size); in WriteAsciiChunk() 986 void EndOfStream() override { os_.close(); } in EndOfStream() 989 std::ofstream os_; member in v8::internal::FileOutputStream
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | ChangeLog | 1739 wrapper functions defined in os.h and implemented in os_*.c to make
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | ChangeLog | 1792 wrapper functions defined in os.h and implemented in os_*.c to make
|
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/ |
D | hdr-rgb-riverwalk.hdr | 7349 …�ԨsO���u���u�t�������h���v�Ɖw�o��r��to�m�����֧���͏锵㊒��Tv�Δ�����w�v~�������os_�k���|�d~�q�ana����…
|
/third_party/NuttX/ |
D | ReleaseNotes | 21823 static functions to begin with nx_ vs os_. From Gregory Nutt.
|
/third_party/chromium/patch/ |
D | 0003-ohos-1115.patch | 1199 + explicit StreamBacktraceOutputHandler(std::ostream* os) : os_(os) { 1202 + void HandleOutput(const char* output) override { (*os_) << output; } 1205 + std::ostream* os_;
|