/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) {
|
compiler.cc | 409 FunctionLiteral* lit = info->function(); 663 FunctionLiteral* lit = info->function(); 705 Handle<SharedFunctionInfo> Compiler::BuildFunctionInfo(FunctionLiteral* literal, 760 FunctionLiteral* lit,
|
rewriter.cc | 236 FunctionLiteral* function = info->function();
|
full-codegen.cc | 182 void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) { 674 void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) { 679 void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) { [all...] |
liveedit.cc | 797 void FunctionStarted(FunctionLiteral* fun) { [all...] |
hydrogen.h | 497 FunctionLiteral* function, 901 FunctionLiteral* function, [all...] |
hydrogen-instructions.h | 110 V(FunctionLiteral) \ [all...] |
hydrogen.cc | [all...] |
/external/v8/src/arm/ |
codegen-arm.h | 63 FunctionLiteral* lit,
|
lithium-arm.h | 99 V(FunctionLiteral) \ [all...] |
/external/v8/src/mips/ |
codegen-mips.h | 65 FunctionLiteral* lit,
|
lithium-mips.h | 99 V(FunctionLiteral) \ [all...] |
/external/v8/src/ia32/ |
lithium-ia32.h | 93 V(FunctionLiteral) \ [all...] |
/external/v8/src/x64/ |
lithium-x64.h | 99 V(FunctionLiteral) \ [all...] |
/external/v8/test/cctest/ |
test-parsing.cc | [all...] |