Lines Matching defs:value_sp
260 OptionValueSP value_sp = target_sp->GetDebugger().GetPropertyValue(
262 if (value_sp && value_sp->GetType() == OptionValue::eTypeRegex) {
263 OptionValueRegex *re = value_sp->GetAsRegex();
829 lldb::OptionValueSP value_sp;
836 value_sp = ReadDictionary(in_file, out_stream);
837 if (!value_sp) {
844 value_sp = ReadArray(in_file, out_stream, data_type);
845 if (!value_sp) {
853 value_sp = std::make_shared<OptionValueUInt64>(0, 0);
854 value_sp->SetValueFromString(value);
859 value_sp = std::make_shared<OptionValueString>(value.c_str(), "");
869 option_value_sp->GetAsDictionary()->SetValueForKey(key, value_sp,
922 OptionValueSP value_sp = data_dictionary->GetValueForKey(description_key);
924 if (!value_sp) {
930 SetDescription(value_sp->GetValueAs<llvm::StringRef>().value_or(""));
932 value_sp = data_dictionary->GetValueForKey(triple_key);
933 if (!value_sp) {
941 llvm::Triple(value_sp->GetValueAs<llvm::StringRef>().value_or("")));