/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/ |
D | main.py | 80 def print_(*value, **kwargs): function 121 print_("Benchmarking %r..." % filename, end=" ") 140 print_("(%.1f KiB)" % (struct[-1]['size'] / 1024.0,)) 145 print_(" FAILED %s" % (name,)) 148 print_(" Timing %s%s... (%5.1f KiB %s)" % ( 172 print_("%8.2f ms" % times[-1], end=" ") 175 print_() 177 print_("(factor: %s)" % (', '.join([ 183 print_()
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/bench/ |
D | main.py | 82 def print_(*value, **kwargs): function 123 print_("Benchmarking %r..." % filename, end=" ") 142 print_("(%.1f KiB)" % (struct[-1]['size'] / 1024.0,)) 147 print_(" FAILED %s" % (name,)) 150 print_(" Timing %s%s... (%5.1f KiB %s)" % ( 174 print_("%8.2f ms" % times[-1], end=" ") 177 print_() 179 print_("(factor: %s)" % (', '.join([ 185 print_()
|
/external/libevent/test/ |
D | tinytest_macros.h | 120 printf_type print_; \ 125 print1_ = print_; \ 128 print2_ = print_; \ 132 print_ = print1_; \ 134 print_ = print2_; \ 145 {print_=value_;},{},die_on_fail) 149 {print_=value_?value_:"<NULL>";},{},die_on_fail) 193 { print_ = tinytest_format_hex_(value_, (len)); }, \ 194 { if (print_) free(print_); }, \
|
/external/python/cpython3/Lib/ |
D | sre_compile.py | 624 def print_(*args, to=None): function 646 print_(op) 653 print_(op, '%#02x (%r)' % (arg, chr(arg))) 659 print_(op, arg[3:]) 665 print_(op, arg[9:]) 668 print_(op, skip, to=i+skip) 674 print_(op, '%#02x %#02x (%r-%r)' % (lo, hi, chr(lo), chr(hi))) 676 print_(op, _hex_code(code[i: i + 256//_CODEBITS])) 683 print_(op, arg, mapping) 694 print_(op, arg) [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | disassemble.cpp | 52 print_(spvIsInBitfield(SPV_BINARY_TO_TEXT_OPTION_PRINT, options)), in Disassembler() 59 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler() 95 if (color_) out_.get() << spvtools::clr::reset{print_}; in ResetColor() 99 if (color_) out_.get() << spvtools::clr::grey{print_}; in SetGrey() 103 if (color_) out_.get() << spvtools::clr::blue{print_}; in SetBlue() 107 if (color_) out_.get() << spvtools::clr::yellow{print_}; in SetYellow() 111 if (color_) out_.get() << spvtools::clr::red{print_}; in SetRed() 115 if (color_) out_.get() << spvtools::clr::green{print_}; in SetGreen() 119 const bool print_; // Should we also print to the standard output stream? member in __anonc69a88420111::Disassembler 381 if (!print_) { in SaveTextResult()
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | disassemble.cpp | 52 print_(spvIsInBitfield(SPV_BINARY_TO_TEXT_OPTION_PRINT, options)), in Disassembler() 59 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler() 95 if (color_) out_.get() << spvtools::clr::reset{print_}; in ResetColor() 99 if (color_) out_.get() << spvtools::clr::grey{print_}; in SetGrey() 103 if (color_) out_.get() << spvtools::clr::blue{print_}; in SetBlue() 107 if (color_) out_.get() << spvtools::clr::yellow{print_}; in SetYellow() 111 if (color_) out_.get() << spvtools::clr::red{print_}; in SetRed() 115 if (color_) out_.get() << spvtools::clr::green{print_}; in SetGreen() 119 const bool print_; // Should we also print to the standard output stream? member in __anon707ed5080111::Disassembler 381 if (!print_) { in SaveTextResult()
|
/external/mesa3d/bin/ |
D | commit_in_branch.py | 8 def print_(args: argparse.Namespace, success: bool, message: str) -> None: function 131 print_(args, True, 'Commit ' + args.commit + ' is in branch ' + branch) 136 print_(args, True, 140 print_(args, False, 'Commit ' + args.commit + ' is NOT in branch ' + branch)
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/ |
D | disassemble.cpp | 52 print_(spvIsInBitfield(SPV_BINARY_TO_TEXT_OPTION_PRINT, options)), in Disassembler() 59 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler() 95 if (color_) out_.get() << spvtools::clr::reset{print_}; in ResetColor() 99 if (color_) out_.get() << spvtools::clr::grey{print_}; in SetGrey() 103 if (color_) out_.get() << spvtools::clr::blue{print_}; in SetBlue() 107 if (color_) out_.get() << spvtools::clr::yellow{print_}; in SetYellow() 111 if (color_) out_.get() << spvtools::clr::red{print_}; in SetRed() 115 if (color_) out_.get() << spvtools::clr::green{print_}; in SetGreen() 119 const bool print_; // Should we also print to the standard output stream? member in __anona619db950111::Disassembler 393 if (!print_) { in SaveTextResult()
|
/external/python/six/ |
D | test_six.py | 657 six.print_("Hello,", "person!") 662 six.print_("Hello,", "person!", file=out) 665 six.print_("Hello,", "person!", file=out, end="") 668 six.print_("Hello,", "person!", file=out, sep="X") 671 six.print_(six.u("Hello,"), six.u("person!"), file=out) 675 six.print_("Hello", file=None) # This works. 677 six.print_(None, file=out) 686 six.print_("Hello", file=out) 688 six.print_("Hello", file=out, flush=True) 699 six.print_(six.u("\u053c"), end="", file=out) [all …]
|
D | six.py | 740 print_ = getattr(moves.builtins, "print", None) variable 741 if print_ is None: 742 def print_(*args, **kwargs): function 796 _print = print_ 798 def print_(*args, **kwargs): function
|
/external/llvm-project/lldb/third_party/Python/module/six/ |
D | six.py | 740 print_ = getattr(moves.builtins, "print", None) variable 741 if print_ is None: 742 def print_(*args, **kwargs): function 796 _print = print_ 798 def print_(*args, **kwargs): function
|
/external/python/parse_type/tasks/_vendor/ |
D | six.py | 721 print_ = getattr(moves.builtins, "print", None) variable 722 if print_ is None: 723 def print_(*args, **kwargs): function 777 _print = print_ 779 def print_(*args, **kwargs): function
|
/external/python/setuptools/pkg_resources/_vendor/ |
D | six.py | 721 print_ = getattr(moves.builtins, "print", None) variable 722 if print_ is None: 723 def print_(*args, **kwargs): function 777 _print = print_ 779 def print_(*args, **kwargs): function
|
/external/python/setuptools/setuptools/_vendor/ |
D | six.py | 721 print_ = getattr(moves.builtins, "print", None) variable 722 if print_ is None: 723 def print_(*args, **kwargs): function 777 _print = print_ 779 def print_(*args, **kwargs): function
|
/external/scapy/scapy/modules/ |
D | six.py | 744 print_ = getattr(moves.builtins, "print", None) variable 745 if print_ is None: 746 def print_(*args, **kwargs): function 800 _print = print_ 802 def print_(*args, **kwargs): function
|
/external/iproute2/include/ |
D | json_print.h | 51 static inline void print_##type_name(enum output_type t, \
|
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Netscape/ |
D | Required_suite.py | 36 def print_(self, _object, _attributes={}, **_arguments): member in Required_suite_Events
|
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Explorer/ |
D | Required_Suite.py | 36 def print_(self, _object, _attributes={}, **_arguments): member in Required_Suite_Events
|
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | __init__.py | 59 from tensorflow.python.autograph.operators.py_builtins import print_
|
D | py_builtins.py | 320 def print_(*objects, **kwargs): function 356 six.print_(*vals, **override_kwargs) 656 'print': print_,
|
/external/libabigail/tests/ |
D | mockfedabipkgdiff.in | 49 six.print_('mock is required to run tests. Please install before running'
|
/external/ply/ply/example/GardenSnake/ |
D | GardenSnake.py | 769 def print_(*args): function 772 globals()["print"] = print_
|
/external/libabigail/tools/ |
D | fedabipkgdiff | 1190 six.print_(stderr, file=sys.stderr) 1585 six.print_('Unknown arguments. Please refer to --help.', file=sys.stderr) 1598 six.print_('Terminate by user', file=sys.stderr) 1609 six.print_(str(e), file=sys.stderr)
|
/external/strace/tests-m32/ |
D | nlattr_ifla_af_spec.c | 82 print_##family_##_msg(const unsigned int msg_len) \
|
/external/strace/tests-mx32/ |
D | nlattr_ifla_af_spec.c | 82 print_##family_##_msg(const unsigned int msg_len) \
|