| /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/ |
| pretty_printers.py | 1 # Pretty-printer commands. 26 """Internal utility to parse a pretty-printer command argv. 32 printer-name;subprinter-name. 77 def printer_enabled_p(printer): 78 """Internal utility to see if printer (or subprinter) is enabled.""" 79 if hasattr(printer, "enabled"): 80 return printer.enabled 88 Usage: info pretty-printer [OBJECT-REGEXP [NAME-REGEXP]] 94 NAME-REGEXP matches the name of the pretty-printer. 96 printer-name;subprinter-name."" [all...] |
| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/ |
| pretty_printers.py | 1 # Pretty-printer commands. 26 """Internal utility to parse a pretty-printer command argv. 32 printer-name;subprinter-name. 77 def printer_enabled_p(printer): 78 """Internal utility to see if printer (or subprinter) is enabled.""" 79 if hasattr(printer, "enabled"): 80 return printer.enabled 88 Usage: info pretty-printer [OBJECT-REGEXP [NAME-REGEXP]] 94 NAME-REGEXP matches the name of the pretty-printer. 96 printer-name;subprinter-name."" [all...] |
| /src/external/bsd/ppp/dist/pppd/plugins/pppoe/ |
| common.c | 166 pppoe_printpkt_hex(void (*printer)(void *, char *, ...), void *arg, unsigned char const *buf, int len) 173 printer(arg, "(PAP Authentication Frame -- Contents not dumped)\n"); 180 printer(arg, "%02x ", (unsigned) buf[i]); 182 printer(arg, " "); 185 printer(arg, " "); 189 printer(arg, "%c", buf[i]); 191 printer(arg, "."); 197 printer(arg, "\n"); 205 void (*printer)(void *, char *, ...), void *arg) 212 printer(arg, "PPPOE Discovery V%dT%d ", PPPOE_VER(packet->vertype) [all...] |
| /src/external/mit/isl/dist/ |
| libisl-gdb.py | 13 # printer for the pointer which would lead to an infinite loop. 16 printer = gdb.parse_and_eval("isl_printer_to_str(isl_" 19 printer = gdb.parse_and_eval("isl_printer_print_" 21 + str(printer) + ", " 24 + str(printer) + ")") 25 gdb.parse_and_eval("isl_printer_free(" + str(printer) + ")") 38 # printer for the pointer which would lead to an infinite loop. 43 printer = gdb.parse_and_eval("isl_printer_to_str(" 45 printer = gdb.parse_and_eval("isl_printer_print_isl_int(" 46 + str(printer) + ", [all...] |
| isl_output_private.h | 2 #include <isl/printer.h>
|
| /src/external/gpl2/groff/dist/src/libs/libdriver/ |
| printer.cpp | 1 /* $NetBSD: printer.cpp,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */ 5 // <groff_src_dir>/src/libs/libdriver/printer.cpp 87 printer::printer() function in class:printer 92 printer::~printer() 105 void printer::load_font(int n, const char *nm) 136 font *printer::find_font(const char *nm) 148 font *printer::make_font(const char *nm) 153 void printer::end_of_line( [all...] |
| /src/usr.sbin/lpr/common_source/ |
| common_vars.c | 46 char *printer; /* printer name */ variable
|
| fatal.c | 59 if (printer) 60 (void)printf("%s: ", printer);
|
| /src/external/gpl2/groff/lib/libdriver/ |
| Makefile | 10 SRCS= input.cpp printer.cpp
|
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/ |
| console_reporter.cc | 104 PrinterFn* printer = (output_options_ & OO_Color) ? local 108 printer(Out, name_color, "%-*s ", name_field_width_, 112 printer(Out, COLOR_RED, "ERROR OCCURRED: \'%s\'", 114 printer(Out, COLOR_DEFAULT, "\n"); 135 printer(Out, COLOR_YELLOW, "%10.2f %s %10.2f %s ", real_time, big_o.c_str(), 138 printer(Out, COLOR_YELLOW, "%10.0f %% %10.0f %% ", real_time * 100, 142 printer(Out, COLOR_YELLOW, "%10.0f %s %10.0f %s ", real_time, timeLabel, 147 printer(Out, COLOR_CYAN, "%10lld", result.iterations); 156 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str()); 158 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str()) [all...] |
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/ |
| console_reporter.cc | 119 PrinterFn* printer = (output_options_ & OO_Color) ? local 123 printer(Out, name_color, "%-*s ", name_field_width_, 127 printer(Out, COLOR_RED, "ERROR OCCURRED: \'%s\'", 129 printer(Out, COLOR_DEFAULT, "\n"); 141 printer(Out, COLOR_YELLOW, "%10.2f %-4s %10.2f %-4s ", real_time, big_o.c_str(), 144 printer(Out, COLOR_YELLOW, "%10.0f %-4s %10.0f %-4s ", real_time * 100, "%", 148 printer(Out, COLOR_YELLOW, "%s %-4s %s %-4s ", real_time_str.c_str(), timeLabel, 153 printer(Out, COLOR_CYAN, "%10lld", result.iterations); 162 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str()); 164 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str()) [all...] |
| /src/usr.sbin/lpr/lpq/ |
| lpq.c | 51 * -P used to identify printer as per lpr/lprm 100 case 'P': /* printer name */ 101 printer = optarg; 116 if (!aflag && printer == NULL && (printer = getenv("PRINTER")) == NULL) 117 printer = DEFLP; 142 printer = buf; 143 printf("%s:\n", printer);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.guile/ |
| scm-pretty-print.scm | 51 ;; Test returning a <gdb:value> from a printer. 53 (define (make-string-printer val) 54 (make-pretty-printer-worker 56 (lambda (printer) 61 ;; Test a printer with children. 63 (define (make-container-printer val) 66 ;; of at printer time. Done this way to explore the possibilities. 70 (make-pretty-printer-worker 72 (lambda (printer) 75 (lambda (printer) [all...] |
| scm-frame-args.scm | 18 (define (make-pp_s-printer val) 19 (make-pretty-printer-worker 21 (lambda (printer) 26 (define (make-pp_ss-printer val) 27 (make-pretty-printer-worker 29 (lambda (printer) "super struct") 30 (lambda (printer) 48 (define (make-pretty-printer-dict) 50 (hash-set! dict "struct s" make-pp_s-printer) 51 (hash-set! dict "s" make-pp_s-printer) [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/ |
| scm-pretty-print.scm | 51 ;; Test returning a <gdb:value> from a printer. 53 (define (make-string-printer val) 54 (make-pretty-printer-worker 56 (lambda (printer) 61 ;; Test a printer with children. 63 (define (make-container-printer val) 66 ;; of at printer time. Done this way to explore the possibilities. 70 (make-pretty-printer-worker 72 (lambda (printer) 75 (lambda (printer) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| BPFMCInstLower.h | 27 AsmPrinter &Printer; 30 BPFMCInstLower(MCContext &ctx, AsmPrinter &printer) 31 : Ctx(ctx), Printer(printer) {}
|
| /src/sys/rump/dev/lib/libulpt/ |
| Makefile | 7 COMMENT=USB printer driver
|
| /src/external/gpl2/groff/dist/src/include/ |
| printer.h | 1 /* $NetBSD: printer.h,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */ 5 // <groff_src_dir>/src/include/printer.h 34 The class `printer' performs the postprocessing. Each 35 postprocessor only needs to implement a derived class of `printer' and 37 Then the methods of class `printer' are called automatically by 63 class printer { class 65 printer(); 66 virtual ~printer(); 109 printer *make_printer();
|
| /src/usr.sbin/lpr/lprm/ |
| lprm.c | 108 printer = &arg[2]; 111 printer = *++argv; 150 if (printer == NULL && (printer = getenv("PRINTER")) == NULL) 151 printer = DEFLP;
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| gdbarch_types.py | 44 printer: Optional[str] = None, 57 self.printer = printer 101 printer: Optional[str] = None, 111 printer=printer, 129 printer: Optional[str] = None, 142 printer=printer,
|
| /src/external/gpl3/gdb/dist/gdb/ |
| gdbarch_types.py | 44 printer: Optional[str] = None, 57 self.printer = printer 101 printer: Optional[str] = None, 111 printer=printer, 129 printer: Optional[str] = None, 142 printer=printer,
|
| /src/usr.sbin/rpc.pcnfsd/ |
| pcnfsd_test.c | 26 char *printer; local 32 fprintf(stderr, "usage: %s server host printer user password [transport]\n", 39 printer = argv[3]; 64 test_v2_init(host_name, printer); 66 test_v2_start(host_name, printer, user_name, "foo", "foo"); 68 test_v2_start(host_name, printer, user_name, "bar", "bar"); 70 test_v2_start(host_name, printer, user_name, "bletch", "gack"); 72 test_v2_queue(printer, user_name, FALSE); 75 test_v2_cancel(host_name, printer, "nosuchuser", last_id); 77 test_v2_cancel(host_name, printer, user_name, last_id) [all...] |
| /src/usr.sbin/lpr/lpc/ |
| cmds.c | 44 * lpc -- line printer control program -- commands: 97 printf("Usage: abort {all | printer ...}\n"); 101 printer = prbuf; 114 printer = *++argv; 129 printf("%s:\n", printer); 220 printf("Usage: clean {all | printer ...}\n"); 224 printer = prbuf; 237 printer = *++argv; 289 printf("%s:\n", printer); 347 * Enable queuing to the printer (allow lpr's) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/ |
| MSP430MCInstLower.h | 28 AsmPrinter &Printer; 30 MSP430MCInstLower(MCContext &ctx, AsmPrinter &printer) 31 : Ctx(ctx), Printer(printer) {}
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyMCInstLower.h | 32 WebAssemblyAsmPrinter &Printer; 41 WebAssemblyMCInstLower(MCContext &ctx, WebAssemblyAsmPrinter &printer) 42 : Ctx(ctx), Printer(printer) {}
|