HomeSort by relevance Sort by last modified time
    Searched refs:yield_count (Results 1 - 3 of 3) sorted by null

  /external/v8/src/ast/
prettyprinter.cc 653 Print(" %d\n", program->yield_count());
805 Print(" %d\n", node->yield_count());
815 Print(" %d\n", node->yield_count());
825 Print(" %d\n", node->yield_count());
837 Print(" %d\n", node->yield_count());
847 Print(" %d\n", node->yield_count());
    [all...]
ast.h 566 int yield_count() const { return yield_count_; } function in class:v8::internal::IterationStatement
568 void set_yield_count(int yield_count) { yield_count_ = yield_count; }
2685 int yield_count() { return yield_count_; } function in class:v8::internal::final
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc 635 generator_resume_points_(info->literal()->yield_count(), info->zone()),
797 // Recall that stmt->yield_count() is always zero inside ordinary
799 if (stmt->yield_count() == 0) {
807 DCHECK_LE(first_yield + stmt->yield_count(),
809 for (size_t id = first_yield; id < first_yield + stmt->yield_count();
826 stmt->yield_count(), generator_resume_points_);
    [all...]

Completed in 483 milliseconds