Lines Matching defs:object_sp
716 auto object_sp = StructuredData::ParseJSON(response.GetStringRef());
717 if (!object_sp || !object_sp->IsValid())
720 auto array_sp = object_sp->GetAsArray();
746 auto object_sp = dict->GetValueForKey("suppress");
747 if (object_sp && object_sp->IsValid())
748 suppress = object_sp->GetBooleanValue();
751 object_sp = dict->GetValueForKey("stop");
752 if (object_sp && object_sp->IsValid())
753 stop = object_sp->GetBooleanValue();
756 object_sp = dict->GetValueForKey("notify");
757 if (object_sp && object_sp->IsValid())
758 notify = object_sp->GetBooleanValue();
761 object_sp = dict->GetValueForKey("description");
762 if (object_sp && object_sp->IsValid())
763 description = std::string(object_sp->GetStringValue());