| /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_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...] |
| env.hpp | 42 #include "utils/optional.hpp" 48 optional< std::string > getenv(const std::string&);
|
| /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.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;
|
| /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;
|
| /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);
|
| auxv.h | 51 extern const std::optional<gdb::byte_vector> &target_read_auxv (); 55 extern std::optional<gdb::byte_vector> target_read_auxv_raw (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);
|
| auxv.h | 51 extern const std::optional<gdb::byte_vector> &target_read_auxv (); 55 extern std::optional<gdb::byte_vector> target_read_auxv_raw (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
|
| /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
|
| 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;
|
| /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 >,
|
| list_tests.hpp | 44 #include "utils/optional.hpp" 82 result drive(const utils::fs::path&, const utils::optional< utils::fs::path >,
|
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| macro.h | 35 std::optional<ULONGEST> str_offsets_base,
|
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| macro.h | 35 std::optional<ULONGEST> str_offsets_base,
|
| /src/usr.bin/make/unit-tests/ |
| depsrc-optional.exp | 4 ExamineLater: need to examine "optional" 5 ExamineLater: need to examine "optional-cohort" 6 Make_ExpandUse: examine optional 7 Make_ExpandUse: examine optional-cohort 8 Examining optional...nonexistent...up-to-date. 9 Examining optional-cohort...nonexistent...:: operator and no sources...out-of-date. 11 recheck(optional-cohort): update time from nonexistent to now 12 Examining important...nonexistent...modified before source "optional-cohort"...out-of-date.
|
| /src/crypto/external/bsd/openssl.old/dist/apps/ |
| openssl-vms.cnf | 81 # For type CA, the listed attributes must be the same, and the optional 90 organizationalUnitName = optional 92 emailAddress = optional 98 countryName = optional 99 stateOrProvinceName = optional 100 localityName = optional 101 organizationName = optional 102 organizationalUnitName = optional 104 emailAddress = optional 163 unstructuredName = An optional company nam [all...] |
| openssl.cnf | 81 # For type CA, the listed attributes must be the same, and the optional 90 organizationalUnitName = optional 92 emailAddress = optional 98 countryName = optional 99 stateOrProvinceName = optional 100 localityName = optional 101 organizationName = optional 102 organizationalUnitName = optional 104 emailAddress = optional 163 unstructuredName = An optional company nam [all...] |
| /src/external/bsd/kyua-cli/dist/engine/ |
| testers.hpp | 40 #include "utils/optional.hpp" 68 tester(const std::string&, const utils::optional< utils::passwd::user >&, 69 const utils::optional< utils::datetime::delta >&);
|
| /src/external/mpl/bind/dist/bin/tests/system/doth/CA/ |
| CA.cfg | 90 countryName = optional 91 stateOrProvinceName = optional 92 organizationalUnitName = optional 94 emailAddress = optional
|
| /src/external/bsd/kyua-cli/dist/utils/fs/ |
| operations.hpp | 40 #include "utils/optional.hpp" 51 utils::optional< path > find_in_path(const char*);
|