Home
last modified time | relevance | path

Searched refs:appMatches (Results 1 - 4 of 4) sorted by relevance

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_sceneview.cpp80 std::smatch appMatches; in GetResourceId() local
81 if (std::regex_match(uri, appMatches, MODEL_APP_RES_ID_REGEX) && appMatches.size() == MODEL_RESOURCE_MATCH_SIZE) { in GetResourceId()
82 resId = static_cast<uint32_t>(std::stoul(appMatches[1].str())); in GetResourceId()
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Drosen_media_player.cpp340 std::smatch appMatches; in GetResourceId() local
341 if (std::regex_match(path, appMatches, MEDIA_APP_RES_ID_REGEX) && appMatches.size() == MEDIA_RESOURCE_MATCH_SIZE) { in GetResourceId()
342 resId = static_cast<uint32_t>(std::stoul(appMatches[1].str())); in GetResourceId()
/foundation/arkui/ace_engine/frameworks/core/image/
H A Dimage_loader.cpp570 std::smatch appMatches; in GetResourceId() local
571 if (std::regex_match(uri, appMatches, MEDIA_APP_RES_ID_REGEX) && appMatches.size() == MEDIA_RESOURCE_MATCH_SIZE) { in GetResourceId()
572 resId = static_cast<uint32_t>(std::stoul(appMatches[1].str())); in GetResourceId()
/foundation/arkui/ace_engine/frameworks/core/components/video/
H A Dvideo_element.cpp453 std::smatch appMatches; in GetResourceId() local
454 if (std::regex_match(path, appMatches, MEDIA_APP_RES_ID_REGEX) && appMatches.size() == MEDIA_RESOURCE_MATCH_SIZE) { in GetResourceId()
455 resId = static_cast<uint32_t>(std::stoul(appMatches[1].str())); in GetResourceId()

Completed in 7 milliseconds