Home | History | Annotate | Download | only in generator

Lines Matching full:namespaces

64     std::vector<std::string> namespaces;
65 SplitStringUsing(descriptor.full_name(), ".", &namespaces);
66 namespaces.pop_back(); // just take the package
67 return namespaces;
72 const auto namespaces = Packages(descriptor);
73 if (namespaces.empty()) {
77 JoinStrings(namespaces, "::", &namespace_path);
98 const auto namespaces = Packages(descriptor);
99 for (const auto& ns : namespaces) {
109 const auto namespaces = Packages(descriptor);
110 for (auto it = namespaces.crbegin(); it != namespaces.crend(); ++it) {