Lines Matching full:name

48 static const char* EXP_NAME = "name";
87 auto name = (jerry_char_t*)malloc(len * sizeof(jerry_char_t) + 1); in _name() local
88 jerry_string_to_buffer(arg0, JERRY_ENCODING_UTF8, name, len); in _name()
89 name[len] = '\0'; in _name()
91 return (char*) name; in _name()
97 auto name = _name(args); in _idByName() local
98 auto id = djb2Encode(name); in _idByName()
99 free(name); in _idByName()
317 //marker.key(name) in _buildLayer()
321 auto name = jerry_string_sz(layer->name); in _buildLayer() local
322 jerry_object_set_sz(context, EXP_NAME, name); in _buildLayer()
323 jerry_value_free(name); in _buildLayer()
330 //content("name"), #look for the named property from a layer in _buildLayer()
675 //layer name in _layer()
830 auto name = _name(args[0]); in _loopOutCommon() local
831 if (!strcmp(name, EXP_CYCLE)) exp->loop.mode = LottieExpression::LoopMode::OutCycle; in _loopOutCommon()
832 … else if (!strcmp(name, EXP_PINGPONG)) exp->loop.mode = LottieExpression::LoopMode::OutPingPong; in _loopOutCommon()
833 else if (!strcmp(name, EXP_OFFSET)) exp->loop.mode = LottieExpression::LoopMode::OutOffset; in _loopOutCommon()
834 … else if (!strcmp(name, EXP_CONTINUE)) exp->loop.mode = LottieExpression::LoopMode::OutContinue; in _loopOutCommon()
835 free(name); in _loopOutCommon()
882 auto name = _name(args[0]); in _loopInCommon() local
883 if (!strcmp(name, EXP_CYCLE)) exp->loop.mode = LottieExpression::LoopMode::InCycle; in _loopInCommon()
884 … else if (!strcmp(name, EXP_PINGPONG)) exp->loop.mode = LottieExpression::LoopMode::InPingPong; in _loopInCommon()
885 else if (!strcmp(name, EXP_OFFSET)) exp->loop.mode = LottieExpression::LoopMode::InOffset; in _loopInCommon()
886 … else if (!strcmp(name, EXP_CONTINUE)) exp->loop.mode = LottieExpression::LoopMode::InContinue; in _loopInCommon()
887 free(name); in _loopInCommon()
1095 //name in _buildProperty()
1097 //content("name"), #look for the named property from a layer in _buildProperty()
1233 //layer(index) / layer(name) / layer(otherLayer, reIndex) in buildComp()
1252 //marker.key(name) in buildComp()
1282 auto name = jerry_string((jerry_char_t*)comp->name, strlen(comp->name), JERRY_ENCODING_UTF8); in buildComp() local
1283 jerry_object_set_sz(thisComp, EXP_NAME, name); in buildComp()
1284 jerry_value_free(name); in buildComp()
1292 //comp(name) in buildGlobal()
1297 //footage(name) in buildGlobal()