Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/udmf/framework/common/
H A Dutd_graph.cpp43 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 Dgraph.cpp20 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 Dgraph.h38 explicit Graph(uint32_t vertexNum, const std::map<std::string, uint32_t> &typeIdIndex);