Home
last modified time | relevance | path

Searched refs:removeIndex (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/render_context/
H A Dcache_data.cpp440 size_t removeIndex = sizeRandIndex % (currentSize); in RandClean() local
441 if (!Clean(removeIndex)) { in RandClean()
448 size_t CacheData::Clean(const size_t removeIndex) in Clean() argument
450 if (removeIndex >= shaderPointers_.size()) { in Clean()
454 const ShaderPointer &shader(shaderPointers_[removeIndex]); in Clean()
457 shaderPointers_.erase(shaderPointers_.begin() + removeIndex); in Clean()
H A Dcache_data.h90 size_t Clean(const size_t removeIndex);
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/multinavigation/source/
H A Dmultinavigation.ets798 let removeIndex = 0;
800 removeIndex++;
801 if (index === removeIndex - 1) {
807 } else if (index > removeIndex - 1 && index < removeIndex + secondaryStackSize[i]) {
813 removeIndex += secondaryStackSize[i];
848 let removeIndex = 0;
850 removeIndex++;
851 if (index === removeIndex - 1) {
859 } else if (index > removeIndex - 1 && index < removeIndex + secondaryStackSize[i]) {
860 this.subStackList[i].secondaryStack.popToIndex(index - removeIndex);
[all …]
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/gridobjectsortcomponent/source/
H A DGridObjectSortComponent.ets562 getEditItemGridPosition(data: GridObjectSortComponentItem[], removeIndex: number): PositionXY {
566 const removeCol: number = Math.trunc(removeIndex % col);
579 let removeRow: number = Math.trunc(removeIndex / this.colNum);
581 const textShowAreaEditItem: boolean = !this.imageText && this.gridComState && removeIndex > 3;
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DjsEnumStyle.js2559 removeIndex(index) { method in NavPathStack