Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_sqlite/
Dcache.c219 PyObject* display_str; in pysqlite_cache_display() local
236 display_str = PyUnicode_FromFormat("%S <- %S -> %S\n", in pysqlite_cache_display()
238 if (!display_str) { in pysqlite_cache_display()
241 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
242 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.cc110 void TFScope::Format(const std::vector<ScopeNode*> roots, string* display_str, in Format() argument
113 display_str->append(node->formatted_str); in Format()
116 Format(node->show_children, display_str, child); in Format()
Dtfprof_graph.cc148 void TFGraph::Format(const std::vector<GraphNode*> roots, string* display_str, in Format() argument
151 display_str->append(node->formatted_str); in Format()
154 Format(node->show_children, display_str, child); in Format()
Dtfprof_op.cc177 string display_str = FormatLegend(opts); in ShowInternal() local
179 display_str += FormatNode(node, root_.get(), opts); in ShowInternal()
183 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.cc514 const Options& opts, string* display_str, in Format() argument
525 display_str->append(node->formatted_str); in Format()
528 Format(node, node->show_children, opts, display_str, child, call_ids); in Format()