/external/chromium_org/v8/src/ |
prettyprinter.h | 47 const char* PrintExpression(FunctionLiteral* program); 48 const char* PrintProgram(FunctionLiteral* program); 75 void PrintFunctionLiteral(FunctionLiteral* function); 88 const char* PrintProgram(FunctionLiteral* program);
|
func-name-inferrer.h | 67 void AddFunction(FunctionLiteral* func_to_infer) { 122 ZoneList<FunctionLiteral*> funcs_to_infer_;
|
liveedit.h | 69 explicit LiveEditFunctionTracker(Isolate* isolate, FunctionLiteral* fun); 72 FunctionLiteral* lit, Zone* zone);
|
compiler.h | 45 ONLY_SINGLE_FUNCTION_LITERAL // Only a single FunctionLiteral expression. 75 FunctionLiteral* function() const { return function_; } 167 void SetFunction(FunctionLiteral* literal) { 389 FunctionLiteral* function_; 633 static Handle<SharedFunctionInfo> BuildFunctionInfo(FunctionLiteral* node, 638 FunctionLiteral* lit,
|
parser.h | 522 FunctionLiteral* ParseProgram(); 524 FunctionLiteral* ParseLazy(); 525 FunctionLiteral* ParseLazy(Utf16CharacterStream* source); 532 FunctionLiteral* DoParseProgram(CompilationInfo* info, 645 FunctionLiteral* ParseFunctionLiteral(Handle<String> var_name, 649 FunctionLiteral::FunctionType type,
|
parser.cc | 567 FunctionLiteral* Parser::ParseProgram() { 581 FunctionLiteral* result; 613 FunctionLiteral* Parser::DoParseProgram(CompilationInfo* info, 621 FunctionLiteral* result = NULL; 682 FunctionLiteral::kNoDuplicateParameters, 683 FunctionLiteral::ANONYMOUS_EXPRESSION, 684 FunctionLiteral::kGlobalOrEval, 685 FunctionLiteral::kNotParenthesized, 686 FunctionLiteral::kNotGenerator, 703 FunctionLiteral* Parser::ParseLazy() [all...] |
prettyprinter.cc | 307 void PrettyPrinter::VisitFunctionLiteral(FunctionLiteral* node) { 479 const char* PrettyPrinter::PrintExpression(FunctionLiteral* program) { 488 const char* PrettyPrinter::PrintProgram(FunctionLiteral* program) { 626 void PrettyPrinter::PrintFunctionLiteral(FunctionLiteral* function) { 716 const char* AstPrinter::PrintProgram(FunctionLiteral* program) { 972 void AstPrinter::VisitFunctionLiteral(FunctionLiteral* node) {
|
ast.cc | 164 bool FunctionLiteral::AllowsLazyCompilation() { 169 bool FunctionLiteral::AllowsLazyCompilationWithoutContext() { 174 int FunctionLiteral::start_position() const { 179 int FunctionLiteral::end_position() const { 184 LanguageMode FunctionLiteral::language_mode() const { 210 FunctionLiteral* value) { [all...] |
ast.h | 99 V(FunctionLiteral) \ 539 FunctionLiteral* fun() const { return fun_; } 548 FunctionLiteral* fun, 559 FunctionLiteral* fun_; [all...] |
codegen.cc | 136 FunctionLiteral* function = info->function();
|
/external/v8/src/ |
prettyprinter.h | 47 const char* PrintExpression(FunctionLiteral* program); 48 const char* PrintProgram(FunctionLiteral* program); 75 void PrintFunctionLiteral(FunctionLiteral* function); 86 const char* PrintProgram(FunctionLiteral* program);
|
func-name-inferrer.h | 67 void AddFunction(FunctionLiteral* func_to_infer) { 119 ZoneList<FunctionLiteral*> funcs_to_infer_;
|
liveedit.h | 69 explicit LiveEditFunctionTracker(Isolate* isolate, FunctionLiteral* fun); 72 FunctionLiteral* lit);
|
compiler.h | 61 FunctionLiteral* function() const { return function_; } 97 void SetFunction(FunctionLiteral* literal) { 231 FunctionLiteral* function_; 310 static Handle<SharedFunctionInfo> BuildFunctionInfo(FunctionLiteral* node, 315 FunctionLiteral* lit,
|
parser.h | 443 FunctionLiteral* ParseProgram(CompilationInfo* info); 444 FunctionLiteral* ParseLazy(CompilationInfo* info); 544 FunctionLiteral* ParseLazy(CompilationInfo* info, 552 FunctionLiteral* DoParseProgram(CompilationInfo* info, 670 FunctionLiteral* ParseFunctionLiteral(Handle<String> var_name, 673 FunctionLiteral::Type type,
|
ast.h | 95 V(FunctionLiteral) \ 501 FunctionLiteral* fun() const { return fun_; } 512 FunctionLiteral* fun, 522 FunctionLiteral* fun_; [all...] |
codegen.cc | 122 FunctionLiteral* function = info->function();
|
full-codegen.h | 426 FunctionLiteral* function); 528 void SetFunctionPosition(FunctionLiteral* fun); 529 void SetReturnPosition(FunctionLiteral* fun); 562 FunctionLiteral* function() { return info_->function(); }
|
parser.cc | 565 FunctionLiteral* Parser::ParseProgram(CompilationInfo* info) { 591 FunctionLiteral* Parser::DoParseProgram(CompilationInfo* info, 604 FunctionLiteral* result = NULL; 643 FunctionLiteral::kNoDuplicateParameters, 644 FunctionLiteral::ANONYMOUS_EXPRESSION, 645 FunctionLiteral::kGlobalOrEval); 662 FunctionLiteral* Parser::ParseLazy(CompilationInfo* info) { 676 FunctionLiteral* result = ParseLazy(info, &stream, &zone_scope); 682 FunctionLiteral* result = ParseLazy(info, &stream, &zone_scope); 688 FunctionLiteral* Parser::ParseLazy(CompilationInfo* info [all...] |
ast.cc | 154 bool FunctionLiteral::AllowsLazyCompilation() { 159 int FunctionLiteral::start_position() const { 164 int FunctionLiteral::end_position() const { 169 LanguageMode FunctionLiteral::language_mode() const { 194 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) { 1093 void AstConstructionVisitor::VisitFunctionLiteral(FunctionLiteral* node) { [all...] |
prettyprinter.cc | 273 void PrettyPrinter::VisitFunctionLiteral(FunctionLiteral* node) { 440 const char* PrettyPrinter::PrintExpression(FunctionLiteral* program) { 449 const char* PrettyPrinter::PrintProgram(FunctionLiteral* program) { 587 void PrettyPrinter::PrintFunctionLiteral(FunctionLiteral* function) { 700 const char* AstPrinter::PrintProgram(FunctionLiteral* program) { 932 void AstPrinter::VisitFunctionLiteral(FunctionLiteral* node) {
|
/external/v8/src/arm/ |
codegen-arm.h | 63 FunctionLiteral* lit,
|
/external/v8/src/mips/ |
codegen-mips.h | 65 FunctionLiteral* lit,
|
/external/chromium_org/v8/src/arm/ |
codegen-arm.h | 67 FunctionLiteral* lit,
|
/external/chromium_org/v8/src/mips/ |
codegen-mips.h | 69 FunctionLiteral* lit,
|