Searched refs:typeIdIndex (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/distributeddatamgr/udmf/framework/common/ |
H A D | utd_graph.cpp | 43 std::map<std::string, uint32_t> typeIdIndex; in InitUtdGraph() local 46 typeIdIndex.insert(std::make_pair(descriptorCfgs[i].typeId, i)); in InitUtdGraph() 49 graph_ = std::make_unique<Graph>(descriptorsNum, typeIdIndex); in InitUtdGraph() 82 std::map<std::string, uint32_t> typeIdIndex; in ConstructNewGraph() local 85 typeIdIndex.insert(std::make_pair(descriptorCfgs[i].typeId, i)); in ConstructNewGraph() 87 auto graph = std::make_unique<Graph>(descriptorsNum, typeIdIndex); in ConstructNewGraph()
|
H A D | graph.cpp | 20 Graph::Graph(uint32_t vertexNum, const std::map<std::string, uint32_t> &typeIdIndex) in Graph() argument 21 : vertexNum_(vertexNum), typeIdIndex_(typeIdIndex) in Graph()
|
H A D | graph.h | 38 explicit Graph(uint32_t vertexNum, const std::map<std::string, uint32_t> &typeIdIndex);
|