Lines Matching defs:nesting
67 // Sort according to the block nesting structure.
129 // Initialize the nesting stack with the function range.
660 std::vector<size_t> nesting;
662 // Use sorted list to reconstruct function nesting.
687 // this corresponds to the nesting order. In the case of the script tag
689 // out, embedders started to rely on functions being reported in nesting
693 // that it follows the invariant that nesting order is descending count
695 while (!nesting.empty() && functions->at(nesting.back()).end <= start) {
696 nesting.pop_back();
726 (!nesting.empty() && functions->at(nesting.back()).count != 0);
736 nesting.push_back(functions->size());