/third_party/boost/boost/log/utility/manipulators/ |
D | add_value.hpp | 114 template< typename DescriptorT, template< typename > class ActorT > 115 inline add_value_manip< typename DescriptorT::value_type&& > 116 add_value(expressions::attribute_keyword< DescriptorT, ActorT > const&, typename DescriptorT::value… in add_value() argument 118 typedef typename DescriptorT::value_type value_type; in add_value() 119 …return add_value_manip< value_type&& >(DescriptorT::get_name(), static_cast< value_type&& >(value)… in add_value() 123 template< typename DescriptorT, template< typename > class ActorT > 124 inline add_value_manip< typename DescriptorT::value_type& > 125 add_value(expressions::attribute_keyword< DescriptorT, ActorT > const&, typename DescriptorT::value… in add_value() argument 127 return add_value_manip< typename DescriptorT::value_type& >(DescriptorT::get_name(), value); in add_value() 131 template< typename DescriptorT, template< typename > class ActorT > [all …]
|
/third_party/boost/boost/log/expressions/ |
D | keyword.hpp | 49 template< typename DescriptorT, template< typename > class ActorT > 55 typedef DescriptorT descriptor_type; 131 template< typename DescriptorT, template< typename > class ActorT, typename DomainT > 132 struct protoify< boost::log::expressions::attribute_keyword< DescriptorT, ActorT >, DomainT > 134 typedef boost::log::expressions::attribute_keyword< DescriptorT, ActorT > keyword_type; 143 template< typename DescriptorT, template< typename > class ActorT, typename DomainT > 144 struct protoify< boost::log::expressions::attribute_keyword< DescriptorT, ActorT >&, DomainT > : 145 public protoify< boost::log::expressions::attribute_keyword< DescriptorT, ActorT >, DomainT > 149 template< typename DescriptorT, template< typename > class ActorT, typename DomainT > 150 struct protoify< boost::log::expressions::attribute_keyword< DescriptorT, ActorT > const&, DomainT … [all …]
|
D | keyword_fwd.hpp | 44 template< typename DescriptorT, template< typename > class ActorT = phoenix::actor >
|
/third_party/boost/boost/log/attributes/ |
D | value_extraction.hpp | 598 template< typename DescriptorT, template< typename > class ActorT > 599 inline typename result_of::extract< typename DescriptorT::value_type, DescriptorT >::type 600 extract(expressions::attribute_keyword< DescriptorT, ActorT > const& keyword, attribute_value_set c… in extract() argument 602 value_extractor< typename DescriptorT::value_type, fallback_to_none, DescriptorT > extractor; in extract() 614 template< typename DescriptorT, template< typename > class ActorT > 615 inline typename result_of::extract< typename DescriptorT::value_type, DescriptorT >::type 616 extract(expressions::attribute_keyword< DescriptorT, ActorT > const& keyword, record const& rec) in extract() argument 618 value_extractor< typename DescriptorT::value_type, fallback_to_none, DescriptorT > extractor; in extract() 630 template< typename DescriptorT, template< typename > class ActorT > 631 inline typename result_of::extract< typename DescriptorT::value_type, DescriptorT >::type [all …]
|
D | value_visitation.hpp | 313 template< typename DescriptorT, template< typename > class ActorT, typename VisitorT > 315 visit(expressions::attribute_keyword< DescriptorT, ActorT > const& keyword, attribute_value_set con… in visit() argument 317 value_visitor_invoker< typename DescriptorT::value_type > invoker; in visit() 330 template< typename DescriptorT, template< typename > class ActorT, typename VisitorT > 332 visit(expressions::attribute_keyword< DescriptorT, ActorT > const& keyword, record const& rec, Visi… in visit() argument 334 value_visitor_invoker< typename DescriptorT::value_type > invoker; in visit() 347 template< typename DescriptorT, template< typename > class ActorT, typename VisitorT > 349 visit(expressions::attribute_keyword< DescriptorT, ActorT > const& keyword, record_view const& rec,… in visit() argument 351 value_visitor_invoker< typename DescriptorT::value_type > invoker; in visit()
|
D | attribute_value_set.hpp | 366 template< typename DescriptorT, template< typename > class ActorT > 367 …f::extract< typename expressions::attribute_keyword< DescriptorT, ActorT >::value_type, Descriptor… 368 operator[] (expressions::attribute_keyword< DescriptorT, ActorT > const& keyword) const in operator []() argument 370 …typedef typename expressions::attribute_keyword< DescriptorT, ActorT >::value_type attr_value_type; in operator []() 371 typedef typename result_of::extract< attr_value_type, DescriptorT >::type result_type; in operator []() 374 return it->second.extract< attr_value_type, DescriptorT >(); in operator []()
|
/third_party/boost/boost/log/expressions/predicates/ |
D | has_attr.hpp | 156 template< typename DescriptorT, template< typename > class ActorT > 157 …unction_terminal< has_attribute< typename DescriptorT::value_type > > > has_attr(attribute_keyword… in has_attr() argument 159 …typedef aux::unary_function_terminal< has_attribute< typename DescriptorT::value_type > > terminal… in has_attr() 160 ActorT< terminal_type > act = {{ terminal_type(DescriptorT::get_name()) }}; in has_attr()
|
D | matches.hpp | 97 template< typename DescriptorT, template< typename > class ActorT, typename RegexT > 98 …2738 ActorT< aux::unary_function_terminal< attribute_matches< typename DescriptorT::value_type, Re… 99 matches(attribute_keyword< DescriptorT, ActorT > const&, RegexT const& rex) in matches() argument 101 …typedef aux::unary_function_terminal< attribute_matches< typename DescriptorT::value_type, RegexT … in matches() 102 ActorT< terminal_type > act = {{ terminal_type(DescriptorT::get_name(), rex) }}; in matches()
|
D | ends_with.hpp | 99 template< typename DescriptorT, template< typename > class ActorT, typename SubstringT > 100 BOOST_FORCEINLINE ActorT< aux::unary_function_terminal< attribute_ends_with< typename DescriptorT::… 101 ends_with(attribute_keyword< DescriptorT, ActorT > const&, SubstringT const& substring) in ends_with() argument 103 …typedef aux::unary_function_terminal< attribute_ends_with< typename DescriptorT::value_type, typen… in ends_with() 104 ActorT< terminal_type > act = {{ terminal_type(DescriptorT::get_name(), substring) }}; in ends_with()
|
D | begins_with.hpp | 99 template< typename DescriptorT, template< typename > class ActorT, typename SubstringT > 100 BOOST_FORCEINLINE ActorT< aux::unary_function_terminal< attribute_begins_with< typename DescriptorT… 101 begins_with(attribute_keyword< DescriptorT, ActorT > const&, SubstringT const& substring) in begins_with() argument 103 …typedef aux::unary_function_terminal< attribute_begins_with< typename DescriptorT::value_type, typ… in begins_with() 104 ActorT< terminal_type > act = {{ terminal_type(DescriptorT::get_name(), substring) }}; in begins_with()
|
D | contains.hpp | 99 template< typename DescriptorT, template< typename > class ActorT, typename SubstringT > 100 BOOST_FORCEINLINE ActorT< aux::unary_function_terminal< attribute_contains< typename DescriptorT::v… 101 contains(attribute_keyword< DescriptorT, ActorT > const&, SubstringT const& substring) in contains() argument 103 …typedef aux::unary_function_terminal< attribute_contains< typename DescriptorT::value_type, typena… in contains() 104 ActorT< terminal_type > act = {{ terminal_type(DescriptorT::get_name(), substring) }}; in contains()
|
D | is_in_range.hpp | 101 template< typename DescriptorT, template< typename > class ActorT, typename BoundaryT > 102 BOOST_FORCEINLINE ActorT< aux::unary_function_terminal< attribute_is_in_range< typename DescriptorT… 103 is_in_range(attribute_keyword< DescriptorT, ActorT > const&, BoundaryT const& least, BoundaryT cons… in is_in_range() argument 106 …typedef aux::unary_function_terminal< attribute_is_in_range< typename DescriptorT::value_type, bou… in is_in_range() 107 …ActorT< terminal_type > act = {{ terminal_type(DescriptorT::get_name(), std::pair< boundary_type, … in is_in_range()
|
/third_party/protobuf/src/google/protobuf/compiler/python/ |
D | python_generator.h | 123 template <typename DescriptorT> 125 const DescriptorT& descriptor, 145 template <typename DescriptorT> 146 std::string ModuleLevelDescriptorName(const DescriptorT& descriptor) const; 151 template <typename DescriptorT, typename DescriptorProtoT> 152 void PrintSerializedPbInterval(const DescriptorT& descriptor,
|
D | python_generator.cc | 143 template <typename DescriptorT> 144 std::string NamePrefixedWithNestedTypes(const DescriptorT& descriptor, in NamePrefixedWithNestedTypes() 1056 template <typename DescriptorT> 1058 const DescriptorT& descriptor, in FixContainingTypeInDescriptor() 1250 template <typename DescriptorT> 1252 const DescriptorT& descriptor) const { in ModuleLevelDescriptorName() 1312 template <typename DescriptorT, typename DescriptorProtoT> 1313 void Generator::PrintSerializedPbInterval(const DescriptorT& descriptor, in PrintSerializedPbInterval()
|
/third_party/boost/boost/log/expressions/formatters/ |
D | date_time.hpp | 258 template< typename DescriptorT, template< typename > class ActorT, typename CharT > 259 BOOST_FORCEINLINE format_date_time_actor< typename DescriptorT::value_type, fallback_to_none, CharT… 260 format_date_time(attribute_keyword< DescriptorT, ActorT > const& keyword, const CharT* format) in format_date_time() argument 262 …typedef format_date_time_actor< typename DescriptorT::value_type, fallback_to_none, CharT, ActorT … in format_date_time() 275 template< typename DescriptorT, template< typename > class ActorT, typename CharT > 276 BOOST_FORCEINLINE format_date_time_actor< typename DescriptorT::value_type, fallback_to_none, CharT… 277 format_date_time(attribute_keyword< DescriptorT, ActorT > const& keyword, std::basic_string< CharT … in format_date_time() argument 279 …typedef format_date_time_actor< typename DescriptorT::value_type, fallback_to_none, CharT, ActorT … in format_date_time()
|
D | named_scope.hpp | 523 template< typename DescriptorT, template< typename > class ActorT, typename CharT > 525 format_named_scope(attribute_keyword< DescriptorT, ActorT > const& keyword, const CharT* element_fo… in format_named_scope() argument 527 …BOOST_STATIC_ASSERT_MSG((is_same< typename DescriptorT::value_type, attributes::named_scope::value… in format_named_scope() 543 template< typename DescriptorT, template< typename > class ActorT, typename CharT > 545 format_named_scope(attribute_keyword< DescriptorT, ActorT > const& keyword, std::basic_string< Char… in format_named_scope() argument 547 …BOOST_STATIC_ASSERT_MSG((is_same< typename DescriptorT::value_type, attributes::named_scope::value… in format_named_scope() 620 template< typename DescriptorT, template< typename > class ActorT, typename... ArgsT > 621 unspecified format_named_scope(attribute_keyword< DescriptorT, ActorT > const& keyword, ArgsT... co…
|
/third_party/boost/boost/log/core/ |
D | record.hpp | 179 template< typename DescriptorT, template< typename > class ActorT > 180 …f::extract< typename expressions::attribute_keyword< DescriptorT, ActorT >::value_type, Descriptor… 181 operator[] (expressions::attribute_keyword< DescriptorT, ActorT > const& keyword) const in operator []() argument
|
D | record_view.hpp | 244 template< typename DescriptorT, template< typename > class ActorT > 245 …f::extract< typename expressions::attribute_keyword< DescriptorT, ActorT >::value_type, Descriptor… 246 operator[] (expressions::attribute_keyword< DescriptorT, ActorT > const& keyword) const in operator []() argument
|
/third_party/boost/boost/log/detail/ |
D | named_scope_fmt_pp.hpp | 30 template< typename DescriptorT, template< typename > class ActorT, BOOST_PP_ENUM_PARAMS(BOOST_PP_IT… 42 format_named_scope(attribute_keyword< DescriptorT, ActorT > const& keyword, BOOST_PP_ENUM_BINARY_PA… in format_named_scope() argument 44 …BOOST_STATIC_ASSERT_MSG((is_same< typename DescriptorT::value_type, attributes::named_scope::value… in format_named_scope()
|
D | id.hpp | 33 template< typename DescriptorT > 38 typedef typename DescriptorT::native_type native_type;
|
/third_party/boost/boost/log/utility/setup/ |
D | filter_parser.hpp | 291 template< typename CharT, typename DescriptorT, template< typename > class ActorT > 292 inline void register_simple_filter_factory(expressions::attribute_keyword< DescriptorT, ActorT > co… in register_simple_filter_factory() argument 294 register_simple_filter_factory< typename DescriptorT::value_type, CharT >(keyword.get_name()); in register_simple_filter_factory()
|
/third_party/protobuf/src/google/protobuf/ |
D | descriptor.cc | 3290 template <class DescriptorT> 3291 void AllocateOptions(const typename DescriptorT::OptionsType& orig_options, 3292 DescriptorT* descriptor, int options_field_tag, 3299 template <class DescriptorT> 3302 const typename DescriptorT::OptionsType& orig_options, 3303 DescriptorT* descriptor, const std::vector<int>& options_path, 4129 template <class DescriptorT> 4131 const typename DescriptorT::OptionsType& orig_options, in AllocateOptions() 4132 DescriptorT* descriptor, int options_field_tag, in AllocateOptions() 4152 template <class DescriptorT> [all …]
|