Lines Matching defs:node
23 for (uint32_t node = 0; node < vertexNum_; node++) {
24 adjList_.push_back({node, nullptr});
101 for (uint32_t node = 0; node < vertexNum_; node++) {
102 if (!visited_[node]) {
103 if (!Dfs(node, action, false)) {
111 bool Graph::IsValidType(const std::string &node)
113 if (typeIdIndex_.find(node) == typeIdIndex_.end()) {
114 LOG_ERROR(UDMF_CLIENT, "invalid typeId. typeId:%{public}s ", node.c_str());
120 int32_t Graph::GetIndex(const std::string &node)
122 auto idx = typeIdIndex_.find(node);