Searched refs:m_comp_err (Results 1 – 2 of 2) sorted by relevance
28 RegularExpression::RegularExpression() : m_re(), m_comp_err(1), m_preg() { in RegularExpression()37 : m_re(), m_comp_err(1), m_preg() { in RegularExpression()79 m_comp_err = ::regcomp(&m_preg, m_re.c_str(), DEFAULT_COMPILE_FLAGS); in Compile()80 return m_comp_err == 0; in Compile()92 if (m_comp_err == 0) { in Execute()161 bool RegularExpression::IsValid() const { return m_comp_err == 0; } in IsValid()172 if (m_comp_err == 0) { in Free()176 m_comp_err = 1; in Free()182 if (m_comp_err == 0) { in GetErrorAsCString()188 return ::regerror(m_comp_err, &m_preg, err_str, err_str_max_len); in GetErrorAsCString()
200 m_comp_err = 1; in Clear()203 int GetErrorCode() const { return m_comp_err; } in GetErrorCode()212 int m_comp_err; ///< Status code for the regular expression compilation variable