Lines Matching refs:c_str
28 Args::ExpandEscapedCharacters(m_current_value.c_str(), in DumpValue()
31 strm.Printf("%s", expanded_escape_value.c_str()); in DumpValue()
33 strm.Printf("\"%s\"", expanded_escape_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()
70 error = m_validator(value_str.c_str(), m_validator_baton); in SetValueFromString()
82 Args::EncodeEscapeSequences(value_str.c_str(), str); in SetValueFromString()
88 error = m_validator(new_value.c_str(), m_validator_baton); in SetValueFromString()
104 error = m_validator(value_str.c_str(), m_validator_baton); in SetValueFromString()
110 Args::EncodeEscapeSequences(value_str.c_str(), m_current_value); in SetValueFromString()
122 Status error(m_validator(value.str().c_str(), m_validator_baton)); in SetCurrentValue()