Searched refs:AstPrinter (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/v8/src/ |
D | prettyprinter.cc | 641 IndentedScope(AstPrinter* printer, const char* txt) in IndentedScope() 653 AstPrinter* ast_printer_; 660 AstPrinter::AstPrinter(Isolate* isolate) : PrettyPrinter(isolate), indent_(0) { in AstPrinter() function in v8::internal::AstPrinter 664 AstPrinter::~AstPrinter() { in ~AstPrinter() 669 void AstPrinter::PrintIndented(const char* txt) { in PrintIndented() 677 void AstPrinter::PrintLiteralIndented(const char* info, in PrintLiteralIndented() 687 void AstPrinter::PrintLiteralWithModeIndented(const char* info, in PrintLiteralWithModeIndented() 702 void AstPrinter::PrintLabelsIndented(ZoneStringList* labels) { in PrintLabelsIndented() 710 void AstPrinter::PrintIndentedVisit(const char* s, AstNode* node) { in PrintIndentedVisit() 716 const char* AstPrinter::PrintProgram(FunctionLiteral* program) { in PrintProgram() [all …]
|
D | prettyprinter.h | 83 class AstPrinter: public PrettyPrinter { 85 explicit AstPrinter(Isolate* isolate); 86 virtual ~AstPrinter();
|
D | codegen.cc | 97 AstPrinter(info->isolate()).PrintProgram(info->function())); in MakeCodePrologue()
|
/external/v8/src/ |
D | prettyprinter.cc | 616 explicit IndentedScope(AstPrinter* printer) : ast_printer_(printer) { in IndentedScope() 620 IndentedScope(AstPrinter* printer, const char* txt, AstNode* node = NULL) in IndentedScope() 632 AstPrinter* ast_printer_; 639 AstPrinter::AstPrinter() : indent_(0) { in AstPrinter() function in v8::internal::AstPrinter 643 AstPrinter::~AstPrinter() { in ~AstPrinter() 648 void AstPrinter::PrintIndented(const char* txt) { in PrintIndented() 656 void AstPrinter::PrintLiteralIndented(const char* info, in PrintLiteralIndented() 666 void AstPrinter::PrintLiteralWithModeIndented(const char* info, in PrintLiteralWithModeIndented() 681 void AstPrinter::PrintLabelsIndented(const char* info, ZoneStringList* labels) { in PrintLabelsIndented() 694 void AstPrinter::PrintIndentedVisit(const char* s, AstNode* node) { in PrintIndentedVisit() [all …]
|
D | prettyprinter.h | 81 class AstPrinter: public PrettyPrinter { 83 AstPrinter(); 84 virtual ~AstPrinter();
|
D | codegen.cc | 90 AstPrinter().PrintProgram(info->function())); in MakeCodePrologue()
|
D | full-codegen.cc | 440 AstPrinter printer; in PrepareForBailoutForId()
|