MCPcopy Create free account
hub / github.com/Samsung/rlottie / NextArrayValue

Method NextArrayValue

src/lottie/lottieparser.cpp:450–471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

448}
449
450bool LottieParserImpl::NextArrayValue()
451{
452 if (st_ == kExitingArray) {
453 ParseNext();
454 return false;
455 }
456
457 /* SPECIAL CASE
458 * same as NextObjectKey()
459 */
460 if (st_ == kExitingObject) {
461 return false;
462 }
463
464 if (st_ == kError || st_ == kHasKey) {
465 RAPIDJSON_ASSERT(false);
466 st_ = kError;
467 return false;
468 }
469
470 return true;
471}
472
473int LottieParserImpl::GetInt()
474{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected