| /src/external/bsd/kyua-cli/dist/utils/ |
| optional.hpp | 29 /// \file utils/optional.hpp 30 /// Provides the utils::optional class. 69 /// This class is a simplified version of Boost.Optional. 71 class optional { class in namespace:utils 72 /// Internal representation of the optional data value. 76 optional(void); 77 optional(utils::detail::none_t); 78 optional(const optional< T >&); 79 explicit optional(const T&) [all...] |
| optional.hpp | 29 /// \file utils/optional.hpp 30 /// Provides the utils::optional class. 69 /// This class is a simplified version of Boost.Optional. 71 class optional { class in namespace:utils 72 /// Internal representation of the optional data value. 76 optional(void); 77 optional(utils::detail::none_t); 78 optional(const optional< T >&); 79 explicit optional(const T&) [all...] |
| optional_test.cpp | 29 #include "utils/optional.ipp" 37 using utils::optional; 52 /// Constructs a new optional object. 90 /// Constructs and returns an optional object. 95 /// \tparam Type The type of the object included in the optional wrapper. 96 /// \param value The value to put inside the optional wrapper. 98 /// \return The constructed optional object. 100 optional< Type > 103 return optional< Type >(value); 113 const optional< int > no_args 210 optional< std::string > optional; local [all...] |
| optional_test.cpp | 29 #include "utils/optional.ipp" 37 using utils::optional; 52 /// Constructs a new optional object. 90 /// Constructs and returns an optional object. 95 /// \tparam Type The type of the object included in the optional wrapper. 96 /// \param value The value to put inside the optional wrapper. 98 /// \return The constructed optional object. 100 optional< Type > 103 return optional< Type >(value); 113 const optional< int > no_args 210 optional< std::string > optional; local [all...] |
| /src/external/bsd/kyua-cli/dist/utils/process/ |
| status.hpp | 37 #include "utils/optional.ipp" 52 optional< int > _exited; 55 optional< std::pair< int, bool > > _signaled; 57 status(const optional< int >&, const optional< std::pair< int, bool > >&);
|
| status.hpp | 37 #include "utils/optional.ipp" 52 optional< int > _exited; 55 optional< std::pair< int, bool > > _signaled; 57 status(const optional< int >&, const optional< std::pair< int, bool > >&);
|
| status.cpp | 35 #include "utils/optional.ipp" 41 using utils::optional; 55 optional< int >(WEXITSTATUS(stat_loc)) : none), 57 optional< std::pair< int, bool > >( 69 process::status::status(const optional< int >& exited_, 70 const optional< std::pair< int, bool > >& signaled_) :
|
| status.cpp | 35 #include "utils/optional.ipp" 41 using utils::optional; 55 optional< int >(WEXITSTATUS(stat_loc)) : none), 57 optional< std::pair< int, bool > >( 69 process::status::status(const optional< int >& exited_, 70 const optional< std::pair< int, bool > >& signaled_) :
|
| /src/external/bsd/libevent/dist/test/ |
| regress.rpc | 6 optional struct[kill] attack = 3; 18 optional bytes some_bytes = 2; 23 optional int64 large_number = 5;
|
| regress.rpc | 6 optional struct[kill] attack = 3; 18 optional bytes some_bytes = 2; 23 optional int64 large_number = 5;
|
| /src/external/bsd/ntp/dist/sntp/libevent/test/ |
| regress.rpc | 6 optional struct[kill] attack = 3; 18 optional bytes some_bytes = 2; 23 optional int64 large_number = 5;
|
| regress.rpc | 6 optional struct[kill] attack = 3; 18 optional bytes some_bytes = 2; 23 optional int64 large_number = 5;
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| xml-tdesc.h | 25 #include <optional> 43 Returns the description on success, and a disengaged optional 45 std::optional<std::string> target_fetch_description_xml (target_ops *ops);
|
| xml-tdesc.h | 25 #include <optional> 43 Returns the description on success, and a disengaged optional 45 std::optional<std::string> target_fetch_description_xml (target_ops *ops);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| xml-tdesc.h | 25 #include <optional> 43 Returns the description on success, and a disengaged optional 45 std::optional<std::string> target_fetch_description_xml (target_ops *ops);
|
| xml-tdesc.h | 25 #include <optional> 43 Returns the description on success, and a disengaged optional 45 std::optional<std::string> target_fetch_description_xml (target_ops *ops);
|
| /src/crypto/external/bsd/openssl.old/dist/test/recipes/90-test_store_data/ |
| ca.cnf | 43 countryName = optional 44 stateOrProvinceName = optional 45 localityName = optional 46 organizationName = optional 47 organizationalUnitName = optional 49 emailAddress = optional
|
| ca.cnf | 43 countryName = optional 44 stateOrProvinceName = optional 45 localityName = optional 46 organizationName = optional 47 organizationalUnitName = optional 49 emailAddress = optional
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| test.cnf | 32 # For type CA, the listed attributes must be the same, and the optional 41 organizationalUnitName = optional 43 emailAddress = optional 49 countryName = optional 50 stateOrProvinceName = optional 51 localityName = optional 52 organizationName = optional 53 organizationalUnitName = optional 55 emailAddress = optional
|
| test.cnf | 32 # For type CA, the listed attributes must be the same, and the optional 41 organizationalUnitName = optional 43 emailAddress = optional 49 countryName = optional 50 stateOrProvinceName = optional 51 localityName = optional 52 organizationName = optional 53 organizationalUnitName = optional 55 emailAddress = optional
|
| CAss.cnf | 61 countryName = optional 62 stateOrProvinceName = optional 63 localityName = optional 64 organizationName = optional 65 organizationalUnitName = optional 67 emailAddress = optional
|
| CAss.cnf | 61 countryName = optional 62 stateOrProvinceName = optional 63 localityName = optional 64 organizationName = optional 65 organizationalUnitName = optional 67 emailAddress = optional
|
| /src/external/bsd/kyua-cli/dist/utils/cmdline/ |
| ui_mock.cpp | 33 #include "utils/optional.ipp" 37 using utils::optional; 90 optional< std::size_t > 93 return _screen_width > 0 ? optional< std::size_t >(_screen_width) : none;
|
| ui_mock.cpp | 33 #include "utils/optional.ipp" 37 using utils::optional; 90 optional< std::size_t > 93 return _screen_width > 0 ? optional< std::size_t >(_screen_width) : none;
|
| /src/external/bsd/kyua-cli/dist/engine/drivers/ |
| scan_action.hpp | 48 #include "utils/optional.hpp" 90 result drive(const utils::fs::path&, utils::optional< int64_t >,
|