Lines Matching refs:c_str
30 Args::ExpandEscapedCharacters(m_current_value.c_str(), in DumpValue()
33 strm.Printf("%s", expanded_escape_value.c_str()); in DumpValue()
35 strm.Printf("\"%s\"", expanded_escape_value.c_str()); in DumpValue()
38 strm.Printf("%s", m_current_value.c_str()); in DumpValue()
40 strm.Printf("\"%s\"", m_current_value.c_str()); in DumpValue()
72 error = m_validator(value_str.c_str(), m_validator_baton); in SetValueFromString()
84 Args::EncodeEscapeSequences(value_str.c_str(), str); in SetValueFromString()
90 error = m_validator(new_value.c_str(), m_validator_baton); in SetValueFromString()
106 error = m_validator(value_str.c_str(), m_validator_baton); in SetValueFromString()
112 Args::EncodeEscapeSequences(value_str.c_str(), m_current_value); in SetValueFromString()
128 Status error(m_validator(value.str().c_str(), m_validator_baton)); in SetCurrentValue()