Searched defs:printer (Results 1 - 9 of 9) sorted by relevance

/external/bison/src/
H A Dsymtab.h59 /* Its %type and associated printer and destructor. */
68 const char *printer; member in struct:symbol
118 void symbol_printer_set (symbol *sym, const char *printer, location loc);
H A Dsymtab.c59 res->printer = NULL;
94 SYMBOL_ATTR_PRINT (printer);
156 symbol_printer_set (symbol *sym, const char *printer, location loc) argument
158 if (printer)
160 if (sym->printer)
161 redeclaration (sym, "%printer", sym->destructor_location, loc);
162 sym->printer = printer;
339 if (orig->printer || alias->printer)
[all...]
/external/junit/src/junit/textui/
H A DTestRunner.java54 public TestRunner(ResultPrinter printer) { argument
55 fPrinter= printer;
202 public void setPrinter(ResultPrinter printer) { argument
203 fPrinter= printer;
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc378 RetainerProfilePrinter printer; local
379 ret_profile.DebugPrintStats(&printer);
380 const char* retainers_of_a = printer.GetRetainers("A");
388 CHECK_EQ("(global property);2", printer.GetRetainers("B"));
389 CHECK_EQ("(global property);1", printer.GetRetainers("C"));
/external/tcpdump/
H A Dtcpdump.c133 struct printer { struct
138 static struct printer printers[] = {
277 struct printer *p;
294 if_printer printer; member in struct:print_info
987 printinfo.printer = lookup_printer(type);
988 if (printinfo.printer == NULL) {
1244 hdrlen = (*print_info->printer)(h, sp);
/external/v8/src/
H A Dheap-profiler.cc167 // A printer interface implementation for the Retainers profile.
210 explicit SimpleRetainerTreePrinter(RetainerHeapProfile::Printer* printer) argument
211 : printer_(printer) {}
259 RetainerHeapProfile::Printer* printer)
260 : coarser_(coarser), printer_(printer) {}
565 RetainerHeapProfile::Printer* printer) {
568 AggregatingRetainerTreePrinter agg_printer(&coarser_, printer);
574 SimpleRetainerTreePrinter s_printer(printer);
580 RetainersPrinter printer; local
581 DebugPrintStats(&printer);
258 AggregatingRetainerTreePrinter(ClustersCoarser* coarser, RetainerHeapProfile::Printer* printer) argument
564 DebugPrintStats( RetainerHeapProfile::Printer* printer) argument
[all...]
H A Dscopes.cc420 static void PrintVar(PrettyPrinter* printer, int indent, Variable* var) { argument
426 if (var->rewrite() != NULL) PrintF("%s, ", printer->Print(var->rewrite()));
437 static void PrintMap(PrettyPrinter* printer, int indent, VariableMap* map) { argument
440 PrintVar(printer, indent, var);
493 PrettyPrinter printer; local
496 PrintVar(&printer, n1, function_);
501 PrintVar(&printer, n1, temps_[i]);
505 PrintMap(&printer, n1, &variables_);
509 PrintMap(&printer, n1, dynamics_->GetMap(Variable::DYNAMIC));
510 PrintMap(&printer, n
[all...]
H A Dprettyprinter.cc436 PrettyPrinter printer; local
437 PrintF("%s", printer.Print(node));
/external/gtest/src/
H A Dgtest.cc2409 // A result printer that never prints anything. Used in the child process
3073 // TODO(wan): There is also value in printing properties with the plain printer.
3510 // Deletes the current test result printer.
3629 UnitTestEventListenerInterface * const printer = result_printer(); local
3655 printer->OnUnitTestStart(parent_);
3662 printer->OnGlobalSetUpStart(parent_);
3664 printer->OnGlobalSetUpEnd(parent_);
3673 printer->OnGlobalTearDownStart(parent_);
3675 printer->OnGlobalTearDownEnd(parent_);
3682 printer
[all...]

Completed in 90 milliseconds