Lines Matching refs:value_sp
255 OptionValueSP value_sp = target_sp->GetDebugger().GetPropertyValue( in ElideMixedSourceAndDisassemblyLine() local
257 if (value_sp && value_sp->GetType() == OptionValue::eTypeRegex) { in ElideMixedSourceAndDisassemblyLine()
258 OptionValueRegex *re = value_sp->GetAsRegex(); in ElideMixedSourceAndDisassemblyLine()
808 lldb::OptionValueSP value_sp; in ReadDictionary() local
815 value_sp = ReadDictionary(in_file, out_stream); in ReadDictionary()
816 if (!value_sp) { in ReadDictionary()
823 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary()
824 if (!value_sp) { in ReadDictionary()
832 value_sp = std::make_shared<OptionValueUInt64>(0, 0); in ReadDictionary()
833 value_sp->SetValueFromString(value); in ReadDictionary()
838 value_sp = std::make_shared<OptionValueString>(value.c_str(), ""); in ReadDictionary()
849 option_value_sp->GetAsDictionary()->SetValueForKey(const_key, value_sp, in ReadDictionary()
905 OptionValueSP value_sp = data_dictionary->GetValueForKey(description_key); in TestEmulation() local
907 if (!value_sp) { in TestEmulation()
913 SetDescription(value_sp->GetStringValue()); in TestEmulation()
915 value_sp = data_dictionary->GetValueForKey(triple_key); in TestEmulation()
916 if (!value_sp) { in TestEmulation()
923 arch.SetTriple(llvm::Triple(value_sp->GetStringValue())); in TestEmulation()