Home
last modified time | relevance | path

Searched refs:ns_name_href_map (Results 1 – 25 of 37) sorted by relevance

12

/external/dynamic_depth/internal/dynamic_depth/
Ddevice.cc261 std::unordered_map<string, string>* ns_name_href_map) const { in GetNamespaces()
262 if (ns_name_href_map == nullptr) { in GetNamespaces()
266 ns_name_href_map->emplace(XmlConst::RdfPrefix(), XmlConst::RdfNodeNs()); in GetNamespaces()
267 ns_name_href_map->emplace(DynamicDepthConst::Device(), kNamespaceHref); in GetNamespaces()
269 params_->earth_pose->GetNamespaces(ns_name_href_map); in GetNamespaces()
272 params_->pose->GetNamespaces(ns_name_href_map); in GetNamespaces()
275 params_->profiles->GetNamespaces(ns_name_href_map); in GetNamespaces()
278 params_->planes->GetNamespaces(ns_name_href_map); in GetNamespaces()
281 params_->cameras->GetNamespaces(ns_name_href_map); in GetNamespaces()
284 params_->container->GetNamespaces(ns_name_href_map); in GetNamespaces()
[all …]
Dcamera.cc103 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
104 if (ns_name_href_map == nullptr) { in GetNamespaces()
108 ns_name_href_map->emplace(DynamicDepthConst::Camera(), kNamespaceHref); in GetNamespaces()
110 params_->image->GetNamespaces(ns_name_href_map); in GetNamespaces()
113 params_->light_estimate->GetNamespaces(ns_name_href_map); in GetNamespaces()
116 params_->pose->GetNamespaces(ns_name_href_map); in GetNamespaces()
119 params_->depth_map->GetNamespaces(ns_name_href_map); in GetNamespaces()
122 params_->imaging_model->GetNamespaces(ns_name_href_map); in GetNamespaces()
125 params_->point_cloud->GetNamespaces(ns_name_href_map); in GetNamespaces()
128 params_->vendor_info->GetNamespaces(ns_name_href_map); in GetNamespaces()
[all …]
Dcontainer.cc22 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
23 if (ns_name_href_map == nullptr || items_.empty()) { in GetNamespaces()
27 ns_name_href_map->emplace(DynamicDepthConst::Container(), kNamespaceHref); in GetNamespaces()
28 items_[0]->GetNamespaces(ns_name_href_map); in GetNamespaces()
Dplane.cc29 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
30 if (ns_name_href_map == nullptr) { in GetNamespaces()
34 ns_name_href_map->emplace(DynamicDepthConst::Plane(), kNamespaceHref); in GetNamespaces()
37 pose_->GetNamespaces(ns_name_href_map); in GetNamespaces()
Dvendor_info.cc28 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
29 if (ns_name_href_map == nullptr) { in GetNamespaces()
33 ns_name_href_map->insert( in GetNamespaces()
Dcameras.cc19 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
20 if (ns_name_href_map == nullptr || camera_list_.empty()) { in GetNamespaces()
25 camera->GetNamespaces(ns_name_href_map); in GetNamespaces()
Dprofiles.cc12 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
13 if (ns_name_href_map == nullptr || profile_list_.empty()) { in GetNamespaces()
18 profile->GetNamespaces(ns_name_href_map); in GetNamespaces()
Dplanes.cc15 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
16 if (ns_name_href_map == nullptr || plane_list_.empty()) { in GetNamespaces()
21 plane->GetNamespaces(ns_name_href_map); in GetNamespaces()
Dlight_estimate.cc29 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
30 if (ns_name_href_map == nullptr) { in GetNamespaces()
34 ns_name_href_map->emplace(DynamicDepthConst::LightEstimate(), kNamespaceHref); in GetNamespaces()
Dpoint_cloud.cc30 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
31 if (ns_name_href_map == nullptr) { in GetNamespaces()
35 ns_name_href_map->insert( in GetNamespaces()
Dprofile.cc62 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
63 if (ns_name_href_map == nullptr) { in GetNamespaces()
67 ns_name_href_map->emplace(DynamicDepthConst::Profile(), kNamespaceHref); in GetNamespaces()
Dapp_info.cc33 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
34 if (ns_name_href_map == nullptr) { in GetNamespaces()
38 ns_name_href_map->insert( in GetNamespaces()
Ditem.cc55 void Item::GetNamespaces(std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
56 if (ns_name_href_map == nullptr) { in GetNamespaces()
61 ns_name_href_map->emplace(DynamicDepthConst::Item(), kNamespaceHref); in GetNamespaces()
Dearth_pose.cc45 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
46 if (ns_name_href_map == nullptr) { in GetNamespaces()
50 ns_name_href_map->emplace(DynamicDepthConst::EarthPose(), kNamespaceHref); in GetNamespaces()
Dpose.cc43 void Pose::GetNamespaces(std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
44 if (ns_name_href_map == nullptr) { in GetNamespaces()
48 ns_name_href_map->emplace(DynamicDepthConst::Pose(), kNamespaceHref); in GetNamespaces()
Dimage.cc52 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
53 if (ns_name_href_map == nullptr) { in GetNamespaces()
57 ns_name_href_map->emplace(DynamicDepthConst::Image(), kNamespaceHref); in GetNamespaces()
Dimaging_model.cc98 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
99 if (ns_name_href_map == nullptr) { in GetNamespaces()
104 ns_name_href_map->emplace(DynamicDepthConst::ImagingModel(), kNamespaceHref); in GetNamespaces()
Ddepth_map.cc202 std::unordered_map<string, string>* ns_name_href_map) { in GetNamespaces() argument
203 if (ns_name_href_map == nullptr) { in GetNamespaces()
207 ns_name_href_map->emplace(DynamicDepthConst::DepthMap(), kNamespaceHref); in GetNamespaces()
Delement.h24 std::unordered_map<string, string>* ns_name_href_map) = 0;
/external/dynamic_depth/includes/dynamic_depth/
Dlight_estimate.h25 std::unordered_map<string, string>* ns_name_href_map) override;
Dcontainer.h19 std::unordered_map<string, string>* ns_name_href_map) override;
Dcameras.h20 std::unordered_map<string, string>* ns_name_href_map) override;
Dprofiles.h21 std::unordered_map<string, string>* ns_name_href_map) override;
Dplanes.h38 std::unordered_map<string, string>* ns_name_href_map) override;
Dpoint_cloud.h19 std::unordered_map<string, string>* ns_name_href_map) override;

12