Searched refs:FunctionLiteral (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/v8/src/
H A Dfunc-name-inferrer.h17 class FunctionLiteral;
50 void AddFunction(FunctionLiteral* func_to_infer) {
105 ZoneList<FunctionLiteral*> funcs_to_infer_;
H A Dprettyprinter.h24 const char* PrintExpression(FunctionLiteral* program);
25 const char* PrintProgram(FunctionLiteral* program);
53 void PrintFunctionLiteral(FunctionLiteral* function);
67 const char* PrintProgram(FunctionLiteral* program);
H A Dparser.h365 typedef v8::internal::FunctionLiteral* FunctionLiteral; typedef in struct:v8::internal::ParserTraits::Type
429 FunctionLiteral* func_to_infer) {
526 static FunctionLiteral* EmptyFunctionLiteral() { return NULL; }
587 FunctionLiteral* ParseFunctionLiteral(
590 int function_token_position, FunctionLiteral::FunctionType type,
591 FunctionLiteral::ArityRestriction arity_restriction, bool* ok);
674 FunctionLiteral* ParseProgram();
676 FunctionLiteral* ParseLazy();
677 FunctionLiteral* ParseLaz
[all...]
H A Dpreparser.h49 // typedef FunctionLiteral;
67 typedef typename Traits::Type::FunctionLiteral FunctionLiteralT;
1079 FunctionLiteral::ParameterFlag has_duplicate_parameters,
1080 FunctionLiteral::FunctionType function_type,
1081 FunctionLiteral::IsFunctionFlag is_function,
1082 FunctionLiteral::IsParenthesizedFlag is_parenthesized, FunctionKind kind,
1130 typedef PreParserExpression FunctionLiteral; typedef in struct:v8::internal::PreParserTraits::Type
1389 int function_token_position, FunctionLiteral::FunctionType type,
1390 FunctionLiteral::ArityRestriction arity_restriction, bool* ok);
1524 FunctionLiteral
[all...]
H A Dpreparser.cc113 int function_token_position, FunctionLiteral::FunctionType type,
114 FunctionLiteral::ArityRestriction arity_restriction, bool* ok) {
353 pos, FunctionLiteral::DECLARATION,
354 FunctionLiteral::NORMAL_ARITY, CHECK_OK);
826 FunctionLiteral::FunctionType function_type,
827 FunctionLiteral::ArityRestriction arity_restriction, bool* ok) {
849 bool done = arity_restriction == FunctionLiteral::GETTER_ARITY ||
851 arity_restriction != FunctionLiteral::SETTER_ARITY);
869 if (arity_restriction == FunctionLiteral::SETTER_ARITY) break;
H A Dast.cc132 bool FunctionLiteral::AllowsLazyCompilation() {
137 bool FunctionLiteral::AllowsLazyCompilationWithoutContext() {
142 int FunctionLiteral::start_position() const {
147 int FunctionLiteral::end_position() const {
152 StrictMode FunctionLiteral::strict_mode() const {
157 void FunctionLiteral::InitializeSharedInfo(
195 FunctionLiteral* value,
1068 REGULAR_NODE(FunctionLiteral)
H A Dliveedit.h46 explicit LiveEditFunctionTracker(Isolate* isolate, FunctionLiteral* fun);
49 FunctionLiteral* lit, Zone* zone);
H A Dparser.cc744 FunctionLiteral* ParserTraits::ParseFunctionLiteral(
747 int function_token_position, FunctionLiteral::FunctionType type,
748 FunctionLiteral::ArityRestriction arity_restriction, bool* ok) {
792 FunctionLiteral* Parser::ParseProgram() {
817 FunctionLiteral* result;
861 FunctionLiteral* Parser::DoParseProgram(CompilationInfo* info, Scope** scope,
866 FunctionLiteral* result = NULL;
932 FunctionLiteral::kNoDuplicateParameters,
933 FunctionLiteral::ANONYMOUS_EXPRESSION, FunctionLiteral
[all...]
H A Dcompiler.h23 ONLY_SINGLE_FUNCTION_LITERAL // Only a single FunctionLiteral expression.
105 FunctionLiteral* function() const { return function_; }
224 void SetFunction(FunctionLiteral* literal) {
437 FunctionLiteral* function_;
701 static Handle<SharedFunctionInfo> BuildFunctionInfo(FunctionLiteral* node,
H A Dprettyprinter.cc285 void PrettyPrinter::VisitFunctionLiteral(FunctionLiteral* node) {
483 const char* PrettyPrinter::PrintExpression(FunctionLiteral* program) {
492 const char* PrettyPrinter::PrintProgram(FunctionLiteral* program) {
635 void PrettyPrinter::PrintFunctionLiteral(FunctionLiteral* function) {
725 const char* AstPrinter::PrintProgram(FunctionLiteral* program) {
981 void AstPrinter::VisitFunctionLiteral(FunctionLiteral* node) {
H A Dast.h78 V(FunctionLiteral) \
540 FunctionLiteral* fun() const { return fun_; }
550 FunctionLiteral* fun,
561 FunctionLiteral* fun_;
1483 ObjectLiteralProperty(Zone* zone, bool is_getter, FunctionLiteral* value,
2309 class FunctionLiteral FINAL : public Expression {
2338 DECLARE_NODE_TYPE(FunctionLiteral)
2447 FunctionLiteral(Zone* zone, const AstRawString* name, function in class:v8::internal::FINAL
3092 FunctionLiteral* fun,
3344 FunctionLiteral* valu
[all...]
H A Dcodegen.cc173 FunctionLiteral* function = info->function();
H A Drewriter.cc231 FunctionLiteral* function = info->function();
H A Dfull-codegen.h575 void SetFunctionPosition(FunctionLiteral* fun);
576 void SetReturnPosition(FunctionLiteral* fun);
603 FunctionLiteral* function() { return info_->function(); }
H A Dcompiler.cc577 FunctionLiteral* lit,
663 FunctionLiteral* lit = info->function();
1031 FunctionLiteral* lit = info->function();
1247 FunctionLiteral* literal, Handle<Script> script,
H A Dfull-codegen.cc181 void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
803 void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
808 void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
1530 void FullCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
1531 Comment cmnt(masm_, "[ FunctionLiteral");
H A Dliveedit.cc706 void FunctionStarted(FunctionLiteral* fun) {
2053 FunctionLiteral* fun)
2069 Handle<SharedFunctionInfo> info, FunctionLiteral* lit,
H A Dtyping.cc350 void AstTyper::VisitFunctionLiteral(FunctionLiteral* expr) {
H A Dhydrogen-instructions.h101 V(FunctionLiteral) \
2007 FunctionLiteral* function,
2025 FunctionLiteral* function() const { return function_; }
2041 FunctionLiteral* function, InliningKind inlining_kind,
2060 FunctionLiteral* function_;
7480 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral)
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.h81 V(FunctionLiteral) \
2569 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
2570 DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.h85 V(FunctionLiteral) \
2570 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
2571 DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.h81 V(FunctionLiteral) \
2529 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
2530 DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
/external/chromium_org/v8/src/mips64/
H A Dlithium-mips64.h81 V(FunctionLiteral) \
2513 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
2514 DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.h81 V(FunctionLiteral) \
2551 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
2552 DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.h86 V(FunctionLiteral) \
2586 DECLARE_CONCRETE_INSTRUCTION(FunctionLiteral, "function-literal")
2587 DECLARE_HYDROGEN_ACCESSOR(FunctionLiteral)

Completed in 477 milliseconds

12