Home | History | Annotate | Download | only in parser

Lines Matching refs:IdentifierSet

402             IdentifierSet::iterator end = nestedScope->m_usedVariables.end();
403 for (IdentifierSet::iterator ptr = nestedScope->m_usedVariables.begin(); ptr != end; ++ptr) {
411 IdentifierSet::iterator end = nestedScope->m_writtenVariables.end();
412 for (IdentifierSet::iterator ptr = nestedScope->m_writtenVariables.begin(); ptr != end; ++ptr) {
422 void getUncapturedWrittenVariables(IdentifierSet& writtenVariables)
424 IdentifierSet::iterator end = m_writtenVariables.end();
425 for (IdentifierSet::iterator ptr = m_writtenVariables.begin(); ptr != end; ++ptr) {
431 void getCapturedVariables(IdentifierSet& capturedVariables)
437 for (IdentifierSet::iterator ptr = m_closedVariables.begin(); ptr != m_closedVariables.end(); ++ptr) {
448 void copyCapturedVariablesToVector(const IdentifierSet& capturedVariables, Vector<RefPtr<StringImpl> >& vector)
450 IdentifierSet::iterator end = capturedVariables.end();
451 for (IdentifierSet::iterator it = capturedVariables.begin(); it != end; ++it) {
494 IdentifierSet m_declaredVariables;
495 IdentifierSet m_usedVariables;
496 IdentifierSet m_closedVariables;
497 IdentifierSet m_writtenVariables;
659 IdentifierSet capturedVariables;