Lines Matching refs:PointIndices
105 ErrorCluster_.PointIndices.push_back(P); in validateAndSetup()
146 CurrentCluster.PointIndices.push_back(P); in clusterizeDbScan()
159 CurrentCluster.PointIndices.push_back(Q); in clusterizeDbScan()
167 CurrentCluster.PointIndices.push_back(Q); in clusterizeDbScan()
181 NoiseCluster_.PointIndices.push_back(P); in clusterizeDbScan()
220 CurrentCluster.PointIndices.reserve(PointsOfOpcode.size()); in clusterizeNaive()
221 CurrentCluster.PointIndices.assign(PointsOfOpcode.begin(), in clusterizeNaive()
223 assert(CurrentCluster.PointIndices.size() == PointsOfOpcode.size()); in clusterizeNaive()
276 UnstableCluster.PointIndices.reserve(ClusterIDs.size()); in stabilize()
290 OldCluster.PointIndices.begin(), OldCluster.PointIndices.end(), in stabilize()
294 assert(std::distance(it, OldCluster.PointIndices.end()) > 0 && in stabilize()
297 std::for_each(it, OldCluster.PointIndices.end(), in stabilize()
302 UnstableCluster.PointIndices.insert(UnstableCluster.PointIndices.end(), in stabilize()
303 it, OldCluster.PointIndices.end()); in stabilize()
305 OldCluster.PointIndices.erase(it, OldCluster.PointIndices.end()); in stabilize()
309 assert(UnstableCluster.PointIndices.size() > 1 && in stabilize()
311 assert(UnstableCluster.PointIndices.size() >= ClusterIDs.size() && in stabilize()
326 if (Clustering.ErrorCluster_.PointIndices.size() == Points.size()) { in create()