HomeSort by relevance Sort by last modified time
    Searched refs:FunctionLiteral (Results 1 - 25 of 30) sorted by null

1 2

  /external/v8/src/
prettyprinter.h 24 const char* PrintExpression(FunctionLiteral* program);
25 const char* PrintProgram(FunctionLiteral* program);
53 void PrintFunctionLiteral(FunctionLiteral* function);
67 const char* PrintProgram(FunctionLiteral* program);
func-name-inferrer.h 17 class FunctionLiteral;
50 void AddFunction(FunctionLiteral* func_to_infer) {
105 ZoneList<FunctionLiteral*> funcs_to_infer_;
parser.h 365 typedef v8::internal::FunctionLiteral* FunctionLiteral;
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* ParseLazy(Utf16CharacterStream* source)
    [all...]
preparser.h 49 // typedef FunctionLiteral;
67 typedef typename Traits::Type::FunctionLiteral FunctionLiteralT;
    [all...]
preparser.cc 113 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;
ast.cc 132 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,
    [all...]
liveedit.h 46 explicit LiveEditFunctionTracker(Isolate* isolate, FunctionLiteral* fun);
49 FunctionLiteral* lit, Zone* zone);
parser.cc 744 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::kGlobalOrEval
    [all...]
compiler.h 23 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,
prettyprinter.cc 285 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) {
ast.h 78 V(FunctionLiteral) \
540 FunctionLiteral* fun() const { return fun_; }
550 FunctionLiteral* fun,
561 FunctionLiteral* fun_;
    [all...]
codegen.cc 173 FunctionLiteral* function = info->function();
rewriter.cc 231 FunctionLiteral* function = info->function();
full-codegen.h 575 void SetFunctionPosition(FunctionLiteral* fun);
576 void SetReturnPosition(FunctionLiteral* fun);
603 FunctionLiteral* function() { return info_->function(); }
    [all...]
compiler.cc 577 FunctionLiteral* lit,
663 FunctionLiteral* lit = info->function();
    [all...]
full-codegen.cc 181 void BreakableStatementChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
803 void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
808 void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
    [all...]
liveedit.cc 706 void FunctionStarted(FunctionLiteral* fun) {
    [all...]
typing.cc 350 void AstTyper::VisitFunctionLiteral(FunctionLiteral* expr) {
  /external/v8/src/arm/
lithium-arm.h 81 V(FunctionLiteral) \
    [all...]
  /external/v8/src/arm64/
lithium-arm64.h 84 V(FunctionLiteral) \
    [all...]
  /external/v8/src/ia32/
lithium-ia32.h 85 V(FunctionLiteral) \
    [all...]
  /external/v8/src/mips/
lithium-mips.h 81 V(FunctionLiteral) \
    [all...]
  /external/v8/src/mips64/
lithium-mips64.h 81 V(FunctionLiteral) \
    [all...]
  /external/v8/src/x64/
lithium-x64.h 81 V(FunctionLiteral) \
    [all...]
  /external/v8/src/x87/
lithium-x87.h 86 V(FunctionLiteral) \
    [all...]

Completed in 1528 milliseconds

1 2