Lines Matching refs:m_variables
20 VariableList::VariableList() : m_variables() {} in VariableList()
26 m_variables.push_back(var_sp); in AddVariable()
31 m_variables.push_back(var_sp); in AddVariableIfUnique()
39 std::copy(variable_list->m_variables.begin(), // source begin in AddVariables()
40 variable_list->m_variables.end(), // source end in AddVariables()
41 back_inserter(m_variables)); // destination in AddVariables()
45 void VariableList::Clear() { m_variables.clear(); } in Clear()
49 if (idx < m_variables.size()) in GetVariableAtIndex()
50 var_sp = m_variables[idx]; in GetVariableAtIndex()
56 if (idx < m_variables.size()) { in RemoveVariableAtIndex()
57 var_sp = m_variables[idx]; in RemoveVariableAtIndex()
58 m_variables.erase(m_variables.begin() + idx); in RemoveVariableAtIndex()
64 iterator pos, end = m_variables.end(); in FindVariableIndex()
65 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariableIndex()
67 return std::distance(m_variables.begin(), pos); in FindVariableIndex()
75 iterator pos, end = m_variables.end(); in FindVariable()
76 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariable()
91 iterator pos, end = m_variables.end(); in FindVariable()
92 for (pos = m_variables.begin(); pos != end; ++pos) { in FindVariable()
105 iterator pos, end = m_variables.end(); in AppendVariablesIfUnique()
106 for (pos = m_variables.begin(); pos != end; ++pos) in AppendVariablesIfUnique()
115 iterator pos, end = m_variables.end(); in AppendVariablesIfUnique()
116 for (pos = m_variables.begin(); pos != end; ++pos) { in AppendVariablesIfUnique()
132 iterator pos, end = m_variables.end(); in AppendVariablesWithScope()
133 for (pos = m_variables.begin(); pos != end; ++pos) { in AppendVariablesWithScope()
148 const iterator begin = m_variables.begin(); in FindIndexForVariable()
149 const iterator end = m_variables.end(); in FindIndexForVariable()
150 for (pos = m_variables.begin(); pos != end; ++pos) { in FindIndexForVariable()
159 const_iterator pos, end = m_variables.end(); in MemorySize()
160 for (pos = m_variables.begin(); pos != end; ++pos) in MemorySize()
165 size_t VariableList::GetSize() const { return m_variables.size(); } in GetSize()
172 const_iterator pos, end = m_variables.end(); in Dump()
173 for (pos = m_variables.begin(); pos != end; ++pos) { in Dump()