Searched refs:ix (Results 1 - 9 of 9) sorted by relevance
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/ |
H A D | scene_impl.cpp | 286 size_t ix = 0; variable 287 if (!RollOverPrefix(ix, name, ANIMATIONS_PREFIX)) { 293 auto subname = name.substr(ix); 302 CreateNode(name.substr(ix), false, SCENE_NS::ClassId::Animation.Id(), 316 size_t ix = 0; variable 317 if (!RollOverPrefix(ix, name, ANIMATIONS_PREFIX)) { 322 if (auto it = animations_.find(name.substr(ix)); it != animations_.end()) { 329 auto anim = interface_pointer_cast<META_NS::IAnimation>(CreateNode(name.substr(ix), false, 475 size_t ix = patchedPath.find('/', 1); in GetNodeRecursive() local 476 while (BASE_NS::string_view::npos != ix) { in GetNodeRecursive() 511 RollOverPrefix(size_t& ix, const BASE_NS::string_view& name, const BASE_NS::string_view& prefix) RollOverPrefix() argument 595 size_t ix = 0; global() variable 647 size_t ix = 0; global() variable [all...] |
H A D | shader_impl.cpp | 82 void SetIndex(size_t ix) override 84 ix_ = ix;
|
H A D | intf_node_private.h | 64 virtual SCENE_NS::ITextureInfo::Ptr GetTextureInfo(size_t ix) const = 0; 81 virtual void SetIndex(size_t ix) {} in SetIndex() argument
|
H A D | graphicsstate_impl.cpp | 108 void SetIndex(size_t ix) override 110 ix_ = ix;
|
H A D | ecs_listener.h | 119 size_t ix = 0; in RemoveEntity() local 124 ite->second.erase(ite->second.cbegin() + ix); in RemoveEntity() 128 ++ix; in RemoveEntity()
|
H A D | node_impl.cpp | 1071 size_t ix = 0; in CheckChildrenStatus() local 1072 while (ix < monitored_.size()) { in CheckChildrenStatus() 1073 if (monitored_[ix]->Valid()) { in CheckChildrenStatus() 1074 ix++; in CheckChildrenStatus() 1076 monitored_.erase(monitored_.begin() + ix); in CheckChildrenStatus() 1103 for (size_t ix = nodes.size(); ix != 0; ix--) { in GetGlobalTransform() 1104 ret = ret * META_NS::GetValue(interface_pointer_cast<INode>(nodes[ix - 1])->LocalMatrix()); in GetGlobalTransform() 1122 for (size_t ix in SetGlobalTransform() [all...] |
H A D | scene_holder.cpp | 1069 size_t ix = name.rfind(":"); in FindAnimation() local 1070 if (ix != BASE_NS::string_view::npos && ix != name.size() - 1) { in FindAnimation() 1072 auto entityId = strtoll(name.substr(ix + 1).data(), &dummy, 16); in FindAnimation() 1169 for (size_t ix = 0; ix < scene_->GetSubCollectionCount(); ix++) { in FindResource() 1170 if (const auto& subcollection = scene_->GetSubCollection(ix); subcollection->GetUri() == fullPath) { in FindResource() 1604 if (auto ix = scene_->GetSubCollectionIndexByRoot(children[0]->GetEntity()); ix ! in RenameEntity() 1967 auto ix = uri.find_last_of(extension); GetGraphicsState() local 2916 size_t ix = 0; SetVisibleCountMultimeshArray() local 2932 size_t ix = 0; GetNode() local 2957 size_t ix = 0; SetTransformation() local [all...] |
H A D | material_impl.cpp | 366 size_t ix = TEXTURE_PREFIX_SIZE; in BindTextureSlot() local 367 ix = propName.find('.', ix + 1); in BindTextureSlot() 370 if (ix == BASE_NS::string_view::npos) { in BindTextureSlot() 374 for (int ii = TEXTURE_PREFIX_SIZE; ii < ix; ii++) { in BindTextureSlot() 375 textureSlotId += (propName[ii] - '0') * pow(10, (ix - ii - 1)); // 10 exponent in BindTextureSlot() 398 BASE_NS::string textureSlotName(propName.substr(ix + 1)); in BindTextureSlot() 409 ix = propName.find('.', ix + 1); in BindTextureSlot() 411 BASE_NS::string propertyName(propName.substr(ix)); in BindTextureSlot() [all...] |
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/ |
H A D | rs_typeface_cache.cpp | 155 static bool EmptyAfterErase(std::vector<uint64_t>& vec, size_t ix) in EmptyAfterErase() argument 157 vec.erase(vec.begin() + ix); in EmptyAfterErase() 167 size_t ix = std::distance(ref.second.begin(), it); in RemoveHashQueue() local 168 if (EmptyAfterErase(ref.second, ix)) { in RemoveHashQueue() 228 size_t ix { 0 }; in PurgeMapWithPid() 233 ix++; in PurgeMapWithPid() 236 if (EmptyAfterErase(ref.second, ix)) { in PurgeMapWithPid()
|
Completed in 10 milliseconds