Home
last modified time | relevance | path

Searched refs:indexList (Results 1 – 3 of 3) sorted by relevance

/test/ostest/wukong/component_event/src/
Dnormal_scene.cpp41 std::vector<uint32_t> indexList; in SetInputComponentList() local
49 indexList.push_back((*it)->GetIndex()); in SetInputComponentList()
59 indexList.push_back((*it)->GetIndex()); in SetInputComponentList()
68 indexList.clear(); in SetInputComponentList()
72 TRACK_LOG_STR("indexList size: %d", indexList.size()); in SetInputComponentList()
73 SubtractComponent(componentList, indexList); in SetInputComponentList()
77 indexList.clear(); in SetInputComponentList()
116 std::vector<uint32_t> indexList; in SetInputComponentListForFocusInput() local
128 indexList.push_back((*it)->GetIndex()); in SetInputComponentListForFocusInput()
135 indexList.clear(); in SetInputComponentListForFocusInput()
[all …]
/test/ostest/wukong/component_event/include/
Dnormal_scene.h47 std::vector<uint32_t> &indexList);
/test/ostest/wukong/input_factory/src/
Dcomponent_input.cpp379 std::vector<uint32_t> indexList; in ChooseRightComponentIndex() local
384 indexList.push_back(i); in ChooseRightComponentIndex()
387 uint32_t randIndex = (std::uint32_t) rand() % indexList.size(); in ChooseRightComponentIndex()
388 index = indexList[randIndex]; in ChooseRightComponentIndex()