HomeSort by: relevance | last modified time | path
    Searched refs:m_operations (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/elftosb/dist/common/
Operation.h 129 OperationSequence(Operation * soleElement) { m_operations.push_back(soleElement); }
136 inline iterator_t begin() { return m_operations.begin(); }
137 inline const_iterator_t begin() const { return m_operations.begin(); }
138 inline iterator_t end() { return m_operations.end(); }
139 inline const_iterator_t end() const { return m_operations.end(); }
142 inline Operation * operator [] (unsigned index) const { return m_operations[index]; }
147 inline unsigned getCount() const { return m_operations.size(); }
153 inline void append(Operation * op) { m_operations.push_back(op); }
163 operation_list_t m_operations; //!< The list of operations. member in class:elftosb::OperationSequence
Operation.cpp 61 m_operations.push_back(*it);
  /src/external/gpl3/gdb.old/dist/gdb/
parser-defs.h 208 m_operations.push_back (std::move (op));
215 m_operations.emplace_back (new T (std::forward<Arg> (args)...));
232 expr::operation_up result = std::move (m_operations.back ());
233 m_operations.pop_back ();
325 std::vector<expr::operation_up> m_operations; member in struct:parser_state
  /src/external/gpl3/gdb/dist/gdb/
parser-defs.h 208 m_operations.push_back (std::move (op));
215 m_operations.emplace_back (new T (std::forward<Arg> (args)...));
232 expr::operation_up result = std::move (m_operations.back ());
233 m_operations.pop_back ();
325 std::vector<expr::operation_up> m_operations; member in struct:parser_state

Completed in 19 milliseconds