Home
last modified time | relevance | path

Searched refs:display_str (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/lldb/unittests/Editline/
DEditlineTest.cpp211 char display_str[] = {0, 0, 0}; in ConsumeAllOutput() local
214 display_str[0] = '\\'; in ConsumeAllOutput()
215 display_str[1] = 't'; in ConsumeAllOutput()
218 display_str[0] = '\\'; in ConsumeAllOutput()
219 display_str[1] = 'n'; in ConsumeAllOutput()
222 display_str[0] = '\\'; in ConsumeAllOutput()
223 display_str[1] = 'r'; in ConsumeAllOutput()
226 display_str[0] = ch; in ConsumeAllOutput()
229 printf("<stdout> 0x%02x (%03d) (%s)\n", ch, ch, display_str); in ConsumeAllOutput()
/external/python/cpython3/Modules/_sqlite/
Dcache.c225 PyObject* display_str; in pysqlite_cache_display() local
242 display_str = PyUnicode_FromFormat("%S <- %S -> %S\n", in pysqlite_cache_display()
244 if (!display_str) { in pysqlite_cache_display()
247 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
248 Py_DECREF(display_str); in pysqlite_cache_display()
/external/python/cpython2/Modules/_sqlite/
Dcache.c222 PyObject* display_str; in pysqlite_cache_display() local
250 display_str = PyString_Format(template, fmt_args); in pysqlite_cache_display()
253 if (!display_str) { in pysqlite_cache_display()
256 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
257 Py_DECREF(display_str); in pysqlite_cache_display()
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_scope.cc111 void TFScope::Format(const std::vector<ScopeNode*> roots, string* display_str, in Format() argument
114 display_str->append(node->formatted_str); in Format()
117 Format(node->show_children, display_str, child); in Format()
Dtfprof_graph.cc149 void TFGraph::Format(const std::vector<GraphNode*> roots, string* display_str, in Format() argument
152 display_str->append(node->formatted_str); in Format()
155 Format(node->show_children, display_str, child); in Format()
Dtfprof_op.cc174 string display_str = FormatLegend(opts); in ShowInternal() local
176 display_str += FormatNode(node, root_.get(), opts); in ShowInternal()
180 root_->formatted_str = display_str; in ShowInternal()
Dtfprof_scope.h66 void Format(const std::vector<ScopeNode*> roots, string* display_str,
Dtfprof_graph.h76 void Format(const std::vector<GraphNode*> roots, string* display_str,
Dtfprof_code.h82 const Options& opts, string* display_str,
Dtfprof_code.cc529 const Options& opts, string* display_str, in Format() argument
540 display_str->append(node->formatted_str); in Format()
543 Format(node, node->show_children, opts, display_str, child, call_ids); in Format()
/external/rust/crates/zip/src/
Dcompression.rs172 let display_str = format!("{}", method); in to_display_fmt() localVariable
173 assert_eq!(debug_str, display_str); in to_display_fmt()