Lines Matching refs:it
46 for (auto it = componentList.begin(); it != componentList.end(); it++) {
47 TRACK_LOG_STR("component inputcount: %d", (*it)->GetInputCount());
48 if ((*it)->GetInputCount() > MAXINPUTNUM || IsComponentBlock((*it), compIdBlock, compTypeBlock)) {
49 indexList.push_back((*it)->GetIndex());
50 TRACK_LOG_STR("index0: %d", distance(componentList.begin(), it));
54 for (auto it = componentList.begin(); it != componentList.end(); it++) {
55 TRACK_LOG_STR("component inputcount: %d", (*it)->GetInputCount());
56 if ((*it)->GetInputCount() <= MAXINPUTNUM || IsComponentBlock((*it), compIdBlock, compTypeBlock)) {
59 indexList.push_back((*it)->GetIndex());
60 TRACK_LOG_STR("index: %d", distance(componentList.begin(), it));
94 for (auto it : componentList) {
95 if (it->GetType() == "Dialog") {
101 DEBUG_LOG_STR("component inputcount: %d, node id: %016llX", it->GetInputCount(), it->GetNodeId());
102 if (it->GetInputCount() < 1 && !IsComponentBlock(it, compIdBlock, compTypeBlock)) {
103 componentinfo = it;
124 for (auto it = componentList.begin(); it != componentList.end(); it++) {
125 TRACK_LOG_STR("component inputcount: %d", (*it)->GetInputCount());
126 std::string type = (*it)->GetType();
129 if ((*it)->GetInputCount() >= limit || IsComponentBlock((*it), compIdBlock, compTypeBlock)) {
130 indexList.push_back((*it)->GetIndex());
132 TRACK_LOG_STR("index0: %d", distance(componentList.begin(), it));
152 for (auto it = componentList.begin(); it != componentList.end(); it++) {
153 if ((*it)->GetIndex() == index) {
154 componentList.erase(it);
155 it--;