Lines Matching refs:StructuredData
456 static StructuredData::ObjectSP CreatePlistValue(XMLNode node) { in CreatePlistValue()
459 std::shared_ptr<StructuredData::Array> array_sp( in CreatePlistValue()
460 new StructuredData::Array()); in CreatePlistValue()
468 std::shared_ptr<StructuredData::Dictionary> dict_sp( in CreatePlistValue()
469 new StructuredData::Dictionary()); in CreatePlistValue()
491 return StructuredData::ObjectSP(new StructuredData::Float(value)); in CreatePlistValue()
495 return StructuredData::ObjectSP(new StructuredData::UnsignedInteger(value)); in CreatePlistValue()
500 return StructuredData::ObjectSP( in CreatePlistValue()
501 new StructuredData::String(std::move(text))); in CreatePlistValue()
503 return StructuredData::ObjectSP(new StructuredData::Boolean(true)); in CreatePlistValue()
505 return StructuredData::ObjectSP(new StructuredData::Boolean(false)); in CreatePlistValue()
507 return StructuredData::ObjectSP(new StructuredData::Null()); in CreatePlistValue()
511 StructuredData::ObjectSP ApplePropertyList::GetStructuredData() { in GetStructuredData()
512 StructuredData::ObjectSP root_sp; in GetStructuredData()