Home
last modified time | relevance | path

Searched refs:pformat (Results 1 – 10 of 10) sorted by relevance

/openbsd/bin/date/
H A Ddate.c65 const char *pformat = NULL; in main() local
74 pformat = optarg; in main()
111 setthetime(*argv, pformat); in main()
140 setthetime(char *p, const char *pformat) in setthetime() argument
159 if (pformat) { in setthetime()
161 if (strptime(p, pformat, &tm) == NULL) { in setthetime()
162 fprintf(stderr, "trouble %s %s\n", p, pformat); in setthetime()
226 if (pformat != NULL && strstr(pformat, "%s") != NULL) in setthetime()
/openbsd/regress/sys/dev/video/
H A Dvideotest.c648 static char pformat[8]; in print_pixelformat() local
650 memset(pformat, 0, sizeof(pformat)); in print_pixelformat()
655 memcpy(pformat, "mjpeg", 5); in print_pixelformat()
657 memcpy(pformat, "MJPEG", 5); in print_pixelformat()
661 memcpy(pformat, "yuyv", 4); in print_pixelformat()
663 memcpy(pformat, "YUYV", 4); in print_pixelformat()
666 memcpy(pformat, "unknown", 7); in print_pixelformat()
670 return (pformat); in print_pixelformat()
/openbsd/gnu/llvm/libcxx/utils/libcxx/sym_check/
H A Dutil.py9 from pprint import pformat
55 out_str += pformat(sym, width=100000) + '\n'
/openbsd/gnu/llvm/libcxx/utils/
H A Dgenerate_abi_list.py36 lines = [pprint.pformat(sym, width=99999) for sym in symbols]
/openbsd/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py796 difflib.ndiff(pprint.pformat(seq1).splitlines(),
797 pprint.pformat(seq2).splitlines()))
919 pprint.pformat(d1).splitlines(),
920 pprint.pformat(d2).splitlines())))
/openbsd/regress/sbin/slaacd/
H A DSlaacctl.py53 return (pprint.pformat(rep, indent=4))
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dgdbarch.sh394 …t floatformat *:float_format:::::default_float_format (current_gdbarch)::pformat (current_gdbarch-…
396 …floatformat *:double_format:::::default_double_format (current_gdbarch)::pformat (current_gdbarch-…
398 …format *:long_double_format:::::default_double_format (current_gdbarch)::pformat (current_gdbarch-…
1184 pformat (const struct floatformat *format)
H A Dgdbarch.c66 pformat (const struct floatformat *format) in pformat() function
1024 pformat (current_gdbarch->double_format)); in gdbarch_dump()
1103 pformat (current_gdbarch->float_format)); in gdbarch_dump()
1257 pformat (current_gdbarch->long_double_format)); in gdbarch_dump()
H A DChangeLog2477 * gdbarch.sh (pformat): New function.
2479 members. Use pformat when printing.
/openbsd/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_case.py1085 diff = '\n'.join(difflib.ndiff(pprint.pformat(seq1).splitlines(),
1086 pprint.pformat(seq2).splitlines()))