Advertisement
heisenbug

Untitled

Aug 8th, 2021 (edited)
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. (base) [heisenbug@fedora data]$ grep -R "boost"
  2. load_arff.hpp:#include <boost/tokenizer.hpp>
  3. string_encoding.hpp:#include <mlpack/core/boost_backport/boost_backport_string_view.hpp>
  4. string_encoding.hpp: * 1. operator() which accepts a reference to boost::string_view, extracts
  5. string_encoding.hpp: * 1. operator() which accepts a reference to boost::string_view, extracts
  6. string_encoding.hpp: * 1. operator() which accepts a reference to boost::string_view, extracts
  7. string_encoding.hpp: * 1. operator() which accepts a reference to boost::string_view, extracts
  8. string_encoding_dictionary.hpp:#include <mlpack/core/boost_backport/boost_backport_string_view.hpp>
  9. string_encoding_dictionary.hpp: * Specialization of the StringEncodingDictionary class for boost::string_view.
  10. string_encoding_dictionary.hpp:class StringEncodingDictionary<boost::string_view>
  11. string_encoding_dictionary.hpp: boost::string_view,
  12. string_encoding_dictionary.hpp: boost::hash<boost::string_view>>;
  13. string_encoding_dictionary.hpp: using TokenType = boost::string_view;
  14. string_encoding_dictionary.hpp: bool HasToken(const boost::string_view token) const
  15. string_encoding_dictionary.hpp: size_t AddToken(const boost::string_view token)
  16. string_encoding_dictionary.hpp: size_t Value(const boost::string_view token) const
  17. string_encoding_impl.hpp: boost::string_view strView(input);
  18. string_encoding_impl.hpp: boost::string_view strView(input[i]);
  19. string_encoding_impl.hpp: boost::string_view strView(input[i]);
  20. string_encoding_impl.hpp: boost::string_view strView(input[i]);
  21. tokenizers/char_extract.hpp: int operator()(boost::string_view& str) const
  22. tokenizers/split_by_any_of.hpp:#include <mlpack/core/boost_backport/boost_backport_string_view.hpp>
  23. tokenizers/split_by_any_of.hpp: using TokenType = boost::string_view;
  24. tokenizers/split_by_any_of.hpp: SplitByAnyOf(const boost::string_view delimiters)
  25. tokenizers/split_by_any_of.hpp: boost::string_view operator()(boost::string_view& str) const
  26. tokenizers/split_by_any_of.hpp: boost::string_view retval;
  27. tokenizers/split_by_any_of.hpp: static bool IsTokenEmpty(const boost::string_view token)
  28. tokenizers/split_by_any_of.hpp: * boost::string_view::npos if no such character is found.
  29. tokenizers/split_by_any_of.hpp: size_t FindFirstDelimiter(const boost::string_view str) const
  30. load_arff_impl.hpp: typedef boost::tokenizer<boost::escaped_list_separator<char>> Tokenizer;
  31. load_arff_impl.hpp: boost::escaped_list_separator<char> sep("\\", separators, "\"'");
  32. load_arff_impl.hpp: boost::escaped_list_separator<char> sep("\\", ",", "\"'");
  33. load_arff_impl.hpp: typedef boost::tokenizer<boost::escaped_list_separator<char>> Tokenizer;
  34. load_arff_impl.hpp: boost::escaped_list_separator<char> sep("\\", ",", "\"");
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement