Lines Matching refs:m_current_value
25 if (!m_current_value.empty() || m_value_was_set) { in DumpValue()
28 Args::ExpandEscapedCharacters(m_current_value.c_str(), in DumpValue()
36 strm.Printf("%s", m_current_value.c_str()); in DumpValue()
38 strm.Printf("\"%s\"", m_current_value.c_str()); in DumpValue()
78 std::string new_value(m_current_value); in SetValueFromString()
92 m_current_value.assign(new_value); in SetValueFromString()
110 Args::EncodeEscapeSequences(value_str.c_str(), m_current_value); in SetValueFromString()
126 m_current_value.assign(std::string(value)); in SetCurrentValue()
133 std::string new_value(m_current_value); in AppendToCurrentValue()
138 m_current_value.assign(new_value); in AppendToCurrentValue()
140 m_current_value.append(value); in AppendToCurrentValue()