Home
last modified time | relevance | path

Searched refs:const (Results 1 – 25 of 1432) sorted by relevance

12345678910>>...58

/freebsd/contrib/llvm-project/libcxx/include/
H A Dfilesystem28 path(const path& p);
32 path(const Source& source, format fmt = auto_format);
36 path(const Source& source, const locale& loc, format fmt = auto_format);
38 … path(InputIterator first, InputIterator last, const locale& loc, format fmt = auto_format);
41 path& operator=(const path& p);
46 path& operator=(const Source& source);
48 path& assign(const Source& source);
52 path& operator/=(const path& p);
54 path& operator/=(const Source& source);
56 path& append(const Source& source);
[all …]
H A D__locale52 _LIBCPP_HIDE_FROM_ABI bool has_facet(const locale&) _NOEXCEPT;
55 _LIBCPP_HIDE_FROM_ABI const _Facet& use_facet(const locale&);
70 static const category // values assigned here are for exposition only
78 locale(const locale&) _NOEXCEPT;
79 explicit locale(const char*);
80 explicit locale(const string&);
81 locale(const locale&, const char*, category);
82 locale(const locale&, const string&, category);
84 _LIBCPP_HIDE_FROM_ABI locale(const locale&, _Facet*);
85 locale(const locale&, const locale&, category);
[all …]
H A Dsystem_error25 error_category(const error_category&) = delete;
26 error_category& operator=(const error_category&) = delete;
28 virtual const char* name() const noexcept = 0;
29 virtual error_condition default_error_condition(int ev) const noexcept;
30 virtual bool equivalent(int code, const error_condition& condition) const noexcept;
31 virtual bool equivalent(const error_code& code, int condition) const noexcept;
32 virtual string message(int ev) const = 0;
34 bool operator==(const error_category& rhs) const noexcept;
35 bool operator!=(const error_category& rhs) const noexcept; // removed in C++20
36 bool operator<(const error_category& rhs) const noexcept; // removed in C++20
[all …]
H A Dcodecvt102 const intern_type* __frm,
103 const intern_type* __frm_end,
104 const intern_type*& __frm_nxt,
107 extern_type*& __to_nxt) const override;
109 const extern_type* __frm,
110 const extern_type* __frm_end,
111 const extern_type*& __frm_nxt,
114 intern_type*& __to_nxt) const override;
115 …state_type& __st, extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const override;
116 int do_encoding() const _NOEXCEPT override;
[all …]
H A Dchrono28 duration_cast(const duration<Rep, Period>& fd);
58 constexpr explicit duration(const Rep2& r,
61 is_convertible<const Rep2&, rep>::value &&
68 constexpr duration(const duration<Rep2, Period2>& d,
77 constexpr rep count() const;
81 constexpr common_type<duration>::type operator+() const;
82 constexpr common_type<duration>::type operator-() const;
88 constexpr duration& operator+=(const duration& d); // constexpr in C++17
89 constexpr duration& operator-=(const duration& d); // constexpr in C++17
91 duration& operator*=(const rep& rhs); // constexpr in C++17
[all …]
H A Dvalarray28 valarray(const value_type& x, size_t n);
29 valarray(const value_type* px, size_t n);
30 valarray(const valarray& v);
32 valarray(const slice_array<value_type>& sa);
33 valarray(const gslice_array<value_type>& ga);
34 valarray(const mask_array<value_type>& ma);
35 valarray(const indirect_array<value_type>& ia);
40 valarray& operator=(const valarray& v);
43 valarray& operator=(const value_type& x);
44 valarray& operator=(const slice_array<value_type>& sa);
[all …]
H A Drandom56 operator==(const linear_congruential_engine<UIntType, a, c, m>& x,
57 const linear_congruential_engine<UIntType, a, c, m>& y);
61 operator!=(const linear_congruential_engine<UIntType, a, c, m>& x,
62 const linear_congruential_engine<UIntType, a, c, m>& y);
68 const linear_congruential_engine<UIntType, a, c, m>& x);
121 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x,
122 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& y);
129 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x,
130 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& y);
138 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x);
[all …]
H A Dlimits141 static _LIBCPP_CONSTEXPR const bool is_specialized = false;
146 static _LIBCPP_CONSTEXPR const int digits = 0;
147 static _LIBCPP_CONSTEXPR const int digits10 = 0;
148 static _LIBCPP_CONSTEXPR const int max_digits10 = 0;
149 static _LIBCPP_CONSTEXPR const bool is_signed = false;
150 static _LIBCPP_CONSTEXPR const bool is_integer = false;
151 static _LIBCPP_CONSTEXPR const bool is_exact = false;
152 static _LIBCPP_CONSTEXPR const int radix = 0;
156 static _LIBCPP_CONSTEXPR const int min_exponent = 0;
157 static _LIBCPP_CONSTEXPR const int min_exponent10 = 0;
[all …]
H A Dtypeindex23 type_index(const type_info& rhs) noexcept;
25 bool operator==(const type_index& rhs) const noexcept;
26 bool operator!=(const type_index& rhs) const noexcept; // removed in C++20
27 bool operator< (const type_index& rhs) const noexcept;
28 bool operator<=(const type_index& rhs) const noexcept;
29 bool operator> (const type_index& rhs) const noexcept;
30 bool operator>=(const type_index& rhs) const noexcept;
31 strong_ordering operator<=>(const type_index& rhs) const noexcept; // C++20
33 size_t hash_code() const noexcept;
34 const char* name() const noexcept;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A D__locale45 _LIBCPP_HIDE_FROM_ABI bool has_facet(const locale&) _NOEXCEPT;
48 _LIBCPP_HIDE_FROM_ABI const _Facet& use_facet(const locale&);
61 static const category // values assigned here are for exposition only
68 locale(const locale&) _NOEXCEPT;
69 explicit locale(const char*);
70 explicit locale(const string&);
71 locale(const locale&, const char*, category);
72 locale(const locale&, const string&, category);
74 _LIBCPP_HIDE_FROM_ABI locale(const locale&, _Facet*);
75 locale(const locale&, const locale&, category);
[all …]
H A Dsystem_error25 error_category(const error_category&) = delete;
26 error_category& operator=(const error_category&) = delete;
28 virtual const char* name() const noexcept = 0;
29 virtual error_condition default_error_condition(int ev) const noexcept;
30 virtual bool equivalent(int code, const error_condition& condition) const noexcept;
31 virtual bool equivalent(const error_code& code, int condition) const noexcept;
32 virtual string message(int ev) const = 0;
34 bool operator==(const error_category& rhs) const noexcept;
35 bool operator!=(const error_category& rhs) const noexcept; // removed in C++20
36 bool operator<(const error_category& rhs) const noexcept; // removed in C++20
[all …]
H A Dcodecvt94 const intern_type* __frm,
95 const intern_type* __frm_end,
96 const intern_type*& __frm_nxt,
99 extern_type*& __to_nxt) const override;
101 const extern_type* __frm,
102 const extern_type* __frm_end,
103 const extern_type*& __frm_nxt,
106 intern_type*& __to_nxt) const override;
107 …state_type& __st, extern_type* __to, extern_type* __to_end, extern_type*& __to_nxt) const override;
108 int do_encoding() const _NOEXCEPT override;
[all …]
H A Dchrono28 duration_cast(const duration<Rep, Period>& fd);
58 constexpr explicit duration(const Rep2& r,
61 is_convertible<const Rep2&, rep>::value &&
68 constexpr duration(const duration<Rep2, Period2>& d,
77 constexpr rep count() const;
81 constexpr common_type<duration>::type operator+() const;
82 constexpr common_type<duration>::type operator-() const;
88 constexpr duration& operator+=(const duration& d); // constexpr in C++17
89 constexpr duration& operator-=(const duration& d); // constexpr in C++17
91 duration& operator*=(const rep& rhs); // constexpr in C++17
[all …]
H A Dlimits135 static const bool is_specialized = false;
140 static const int digits = 0;
141 static const int digits10 = 0;
142 static const int max_digits10 = 0;
143 static const bool is_signed = false;
144 static const bool is_integer = false;
145 static const bool is_exact = false;
146 static const int radix = 0;
150 static const int min_exponent = 0;
151 static const int min_exponent10 = 0;
[all …]
H A Drandom56 operator==(const linear_congruential_engine<UIntType, a, c, m>& x,
57 const linear_congruential_engine<UIntType, a, c, m>& y);
61 operator!=(const linear_congruential_engine<UIntType, a, c, m>& x,
62 const linear_congruential_engine<UIntType, a, c, m>& y);
68 const linear_congruential_engine<UIntType, a, c, m>& x);
121 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x,
122 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& y);
129 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x,
130 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& y);
138 const mersenne_twister_engine<UIntType, w, n, m, r, a, u, d, s, b, t, c, l, f>& x);
[all …]
H A Dvalarray28 valarray(const value_type& x, size_t n);
29 valarray(const value_type* px, size_t n);
30 valarray(const valarray& v);
32 valarray(const slice_array<value_type>& sa);
33 valarray(const gslice_array<value_type>& ga);
34 valarray(const mask_array<value_type>& ma);
35 valarray(const indirect_array<value_type>& ia);
40 valarray& operator=(const valarray& v);
43 valarray& operator=(const value_type& x);
44 valarray& operator=(const slice_array<value_type>& sa);
[all …]
H A Dset51 explicit set(const value_compare& comp);
52 set(const value_compare& comp, const allocator_type& a);
55 const value_compare& comp = value_compare());
57 set(InputIterator first, InputIterator last, const value_compare& comp,
58 const allocator_type& a);
60 …set(from_range_t, R&& rg, const Compare& comp = Compare(), const Allocator& = Allocator()); // C++…
61 set(const set& s);
66 explicit set(const allocator_type& a);
67 set(const set& s, const allocator_type& a);
68 set(set&& s, const allocator_type& a);
[all …]
H A Dtypeindex23 type_index(const type_info& rhs) noexcept;
25 bool operator==(const type_index& rhs) const noexcept;
26 bool operator!=(const type_index& rhs) const noexcept; // removed in C++20
27 bool operator< (const type_index& rhs) const noexcept;
28 bool operator<=(const type_index& rhs) const noexcept;
29 bool operator> (const type_index& rhs) const noexcept;
30 bool operator>=(const type_index& rhs) const noexcept;
31 strong_ordering operator<=>(const type_index& rhs) const noexcept; // C++20
33 size_t hash_code() const noexcept;
34 const char* name() const noexcept;
[all …]
/freebsd/crypto/openssl/include/openssl/
H A Dsrp.h.in62 const BIGNUM *g;
63 const BIGNUM *N;
79 void SRP_user_pwd_set_gN(SRP_user_pwd *user_pwd, const BIGNUM *g,
80 const BIGNUM *N);
82 int SRP_user_pwd_set1_ids(SRP_user_pwd *user_pwd, const char *id,
83 const char *info);
92 const BIGNUM *default_g;
93 const BIGNUM *default_N;
101 const BIGNUM *g;
102 const BIGNUM *N;
[all …]
H A Dpkcs12.h.in98 OSSL_DEPRECATEDIN_1_1_0 ASN1_TYPE *PKCS12_get_attr(const PKCS12_SAFEBAG *bag,
103 int PKCS12_mac_present(const PKCS12 *p12);
104 void PKCS12_get0_mac(const ASN1_OCTET_STRING **pmac,
105 const X509_ALGOR **pmacalg,
106 const ASN1_OCTET_STRING **psalt,
107 const ASN1_INTEGER **piter,
108 const PKCS12 *p12);
110 const ASN1_TYPE *PKCS12_SAFEBAG_get0_attr(const PKCS12_SAFEBAG *bag,
112 const ASN1_OBJECT *PKCS12_SAFEBAG_get0_type(const PKCS12_SAFEBAG *bag);
113 int PKCS12_SAFEBAG_get_nid(const PKCS12_SAFEBAG *bag);
[all …]
H A Dx509.h.in314 void X509_CRL_set_default_method(const X509_CRL_METHOD *meth);
319 const ASN1_INTEGER *serial,
320 const X509_NAME *issuer),
328 const char *X509_verify_cert_error_string(long n);
334 const char *propq);
339 NETSCAPE_SPKI *NETSCAPE_SPKI_b64_decode(const char *str, int len);
346 int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent);
347 int X509_signature_print(BIO *bp, const X509_ALGOR *alg,
348 const ASN1_STRING *sig);
350 int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
[all …]
H A Dx509_acert.h.in42 int i2d_X509_ACERT_fp(FILE *fp, const X509_ACERT *acert);
48 int i2d_X509_ACERT_bio(BIO *bp, const X509_ACERT *acert);
50 int X509_ACERT_sign(X509_ACERT *x, EVP_PKEY *pkey, const EVP_MD *md);
56 const GENERAL_NAMES *X509_ACERT_get0_holder_entityName(const X509_ACERT *x);
57 const OSSL_ISSUER_SERIAL *X509_ACERT_get0_holder_baseCertId(const X509_ACERT *x);
58 const OSSL_OBJECT_DIGEST_INFO *X509_ACERT_get0_holder_digest(const X509_ACERT *x);
59 const X509_NAME *X509_ACERT_get0_issuerName(const X509_ACERT *x);
60 long X509_ACERT_get_version(const X509_ACERT *x);
61 void X509_ACERT_get0_signature(const X509_ACERT *x,
62 const ASN1_BIT_STRING **psig,
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/
H A DDemangleTestCases.inc14 …tartEPK12macho_headeriPPKcl", "dyldbootstrap::start(macho_header const*, int, char const**, long)"…
18 {"_ZN4dyld21findImageByMachHeaderEPK11mach_header", "dyld::findImageByMachHeader(mach_header const*…
19 {"_ZN4dyld26findImageContainingAddressEPKv", "dyld::findImageContainingAddress(void const*)"},
22 {"_ZN4dyld24registerUndefinedHandlerEPFvPKcE", "dyld::registerUndefinedHandler(void (*)(char const*…
24 {"_ZN4dyld15setErrorMessageEPKc", "dyld::setErrorMessage(char const*)"},
25 …allbackEPFvPK11mach_headerlE", "dyld::registerRemoveCallback(void (*)(mach_header const*, long))"},
26 {"_ZN4dyld13inSharedCacheEPKc", "dyld::inSharedCache(char const*)"},
28 …PPKS2_", "dyld::findCoalescedExportedSymbol(char const*, ImageLoader::Symbol const**, ImageLoader
29 …mbolEPPKS2_", "dyld::flatFindExportedSymbol(char const*, ImageLoader::Symbol const**, ImageLoader
30 {"_ZN4dyld15findLoadedImageERK4stat", "dyld::findLoadedImage(stat const&)"},
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/ext/
H A Dhash_set32 typedef const value_type& const_reference;
41 explicit hash_set(size_type n = 193, const hasher& hf = hasher(),
42 const key_equal& eql = key_equal(),
43 const allocator_type& a = allocator_type());
46 size_type n = 193, const hasher& hf = hasher(),
47 const key_equal& eql = key_equal(),
48 const allocator_type& a = allocator_type());
49 hash_set(const hash_set&);
51 hash_set& operator=(const hash_set&);
53 allocator_type get_allocator() const;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/ext/
H A Dhash_set32 typedef const value_type& const_reference;
41 explicit hash_set(size_type n = 193, const hasher& hf = hasher(),
42 const key_equal& eql = key_equal(),
43 const allocator_type& a = allocator_type());
46 size_type n = 193, const hasher& hf = hasher(),
47 const key_equal& eql = key_equal(),
48 const allocator_type& a = allocator_type());
49 hash_set(const hash_set&);
51 hash_set& operator=(const hash_set&);
53 allocator_type get_allocator() const;
[all …]

12345678910>>...58