Home
last modified time | relevance | path

Searched refs:jroot (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/tests/
DJSONTest.cpp200 const auto& jroot = dom.root().as<ObjectValue>(); in DEF_TEST() local
201 REPORTER_ASSERT(reporter, jroot.is<ObjectValue>()); in DEF_TEST()
204 const auto& v = jroot["k1"]; in DEF_TEST()
216 const auto& v = jroot["k2"]; in DEF_TEST()
228 const auto& v = jroot["k3"]; in DEF_TEST()
240 const auto& v = jroot["k4"]; in DEF_TEST()
252 const auto& v = jroot["k5"]; in DEF_TEST()
264 const auto& v = jroot["k6"]; in DEF_TEST()
276 const auto& v = jroot["k7"]; in DEF_TEST()
292 const auto& v = jroot["k8"]; in DEF_TEST()
[all …]
/third_party/skia/modules/skottie/src/
DSkottie.cpp182 AnimationBuilder::AnimationInfo AnimationBuilder::parse(const skjson::ObjectValue& jroot) { in parse() argument
183 this->dispatchMarkers(jroot["markers"]); in parse()
185 this->parseAssets(jroot["assets"]); in parse()
186 this->parseFonts(jroot["fonts"], jroot["chars"]); in parse()
189 AutoPropertyTracker apt(this, jroot, PropertyObserver::NodeType::COMPOSITION); in parse()
190 auto root = CompositionBuilder(*this, fCompSize, jroot).build(*this); in parse()