Home
last modified time | relevance | path

Searched refs:custom (Results 1 – 25 of 1621) sorted by relevance

12345678910>>...65

/third_party/openssl/test/ssl-tests/
D03-custom_verify.conf6 test-1 = 1-verify-custom-reject
7 test-2 = 2-verify-custom-allow
9 test-4 = 4-noverify-ignore-custom-reject
10 test-5 = 5-noverify-accept-custom-allow
12 test-7 = 7-verify-custom-success-no-root
13 test-8 = 8-verify-custom-fail-no-root
39 [1-verify-custom-reject]
40 ssl_conf = 1-verify-custom-reject-ssl
42 [1-verify-custom-reject-ssl]
43 server = 1-verify-custom-reject-server
[all …]
D03-custom_verify.conf.in25 # Same test as above but with a custom callback that always fails.
27 name => "verify-custom-reject",
40 # Same test as above but with a custom callback that always succeeds.
42 name => "verify-custom-allow",
66 # Same test as above but with a custom callback that always fails.
69 name => "noverify-ignore-custom-reject",
83 # Same test as above but with a custom callback that always succeeds.
86 name => "noverify-accept-custom-allow",
115 # Same test as above but with a custom callback that always succeeds.
117 name => "verify-custom-success-no-root",
[all …]
/third_party/boost/libs/spirit/test/karma/
Dreal3.cpp88 custom_type const custom = custom_type(); in main() local
90 BOOST_TEST(test("0.0", custom, real_concept(0.0))); in main()
91 BOOST_TEST(test("1.0", custom, real_concept(1.0))); in main()
92 BOOST_TEST(test("1.0", custom, real_concept(1.0001))); in main()
93 BOOST_TEST(test("1.001", custom, real_concept(1.001))); in main()
94 BOOST_TEST(test("1.01", custom, real_concept(1.010))); in main()
95 BOOST_TEST(test("1.1", custom, real_concept(1.100))); in main()
97 BOOST_TEST(test("1.234e-04", custom, real_concept(0.00012345))); in main()
98 BOOST_TEST(test("0.001", custom, real_concept(0.0012345))); in main()
99 BOOST_TEST(test("0.012", custom, real_concept(0.012345))); in main()
[all …]
/third_party/boost/libs/algorithm/test/
Dclamp_test.cpp20 class custom { class
22 custom ( int x ) : v(x) {} in custom() function in custom
23 custom ( const custom &rhs ) : v(rhs.v) {} in custom() function in custom
24 ~custom () {} in ~custom()
25 custom & operator = ( const custom &rhs ) { v = rhs.v; return *this; } in operator =()
27 bool operator < ( const custom &rhs ) const { return v < rhs.v; } in operator <()
28 … bool operator == ( const custom &rhs ) const { return v == rhs.v; } // need this for the test in operator ==()
35 std::ostream & operator << ( std::ostream & os, const custom &x ) { return x.print ( os ); } in operator <<()
37 bool customLess ( const custom &lhs, const custom &rhs ) { return lhs.v < rhs.v; } in customLess()
149 BOOST_CHECK_EQUAL ( custom( 3), ba::clamp ( custom( 3), custom(1), custom(10))); in test_custom()
[all …]
/third_party/boost/libs/algorithm/minmax/test/
Dminmax_test.cpp15 class custom { class
17 friend std::ostream& operator<<(std::ostream& str, custom const& x);
19 explicit custom(int x = 0) : m_x(x) {} in custom() function in custom
20 custom(custom const& y) : m_x(y.m_x) {} in custom() function in custom
21 bool operator==(custom const& y) const { return m_x == y.m_x; } in operator ==()
22 bool operator<(custom const& y) const { return m_x < y.m_x; } in operator <()
23 custom operator+(custom const& y) const { return custom(m_x+y.m_x); } in operator +()
24 custom& operator+=(custom const& y) { m_x += y.m_x; return *this; } in operator +=()
28 operator<<(std::ostream& str, custom const& x) in operator <<()
84 test<custom>(); // ("custom "); in BOOST_AUTO_TEST_CASE()
Dminmax_element_test.cpp36 class custom { class
38 friend bool operator<(custom const& x, custom const& y);
40 explicit custom(int x = 0) : m_x(x) {} in custom() function in custom
41 custom(custom const& y) : m_x(y.m_x) {} in custom() function in custom
42 custom operator+(custom const& y) const { return custom(m_x+y.m_x); } in operator +()
43 custom& operator+=(custom const& y) { m_x += y.m_x; return *this; } in operator +=()
46 bool operator< (custom const& x, custom const& y) in operator <()
51 BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(custom)
65 struct iterator_traits<custom*> {
67 typedef custom value_type;
[all …]
/third_party/boost/libs/container_hash/test/
Dhash_global_namespace_test.cpp14 struct custom struct
24 friend std::size_t hash_value(custom const& x ) in hash_value() argument
30 custom(int x) : value_(x) {} in custom() argument
36 std::size_t hash_value(custom x) in hash_value()
63 BOOST_HASH_TEST_NAMESPACE::hash<custom> custom_hasher; in custom_tests()
65 custom x(55); in custom_tests()
73 std::vector<custom> custom_vector; in custom_tests()
79 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, custom(5)); in custom_tests()
80 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, custom(25)); in custom_tests()
81 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, custom(35)); in custom_tests()
Dhash_custom_test.cpp12 struct custom struct
22 friend std::size_t hash_value(custom const& x ) in hash_value()
28 custom(int x) : value_(x) {} in custom() function
35 std::size_t hash_value(test::custom x) in hash_value() argument
62 BOOST_HASH_TEST_NAMESPACE::hash<test::custom> custom_hasher; in custom_tests()
64 test::custom x(55); in custom_tests()
72 std::vector<test::custom> custom_vector; in custom_tests()
78 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom(5)); in custom_tests()
79 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom(25)); in custom_tests()
80 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom(35)); in custom_tests()
Dhash_friend_test.cpp14 struct custom struct
24 friend std::size_t hash_value(custom const& x) in hash_value()
30 custom(int x) : value_(x) {} in custom() function
38 std::size_t hash_value(test::custom<T> x) in hash_value() argument
65 BOOST_HASH_TEST_NAMESPACE::hash<test::custom<int> > custom_hasher; in custom_tests()
67 test::custom<int> x(55); in custom_tests()
75 std::vector<test::custom<int> > custom_vector; in custom_tests()
81 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom<int>(5)); in custom_tests()
82 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom<int>(25)); in custom_tests()
83 BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom<int>(35)); in custom_tests()
/third_party/boost/libs/geometry/test/util/
Dnumber_types.hpp23 struct custom struct
25 typedef custom<T> self; argument
29 custom() : m_value(0) {} in custom() function
30 explicit custom(T const& value) : m_value(value) {} in custom() function
49 inline custom<T> sqrt(custom<T> const& c) in sqrt()
51 return custom<T>(std::sqrt(c.m_value)); in sqrt()
55 inline custom<T> fabs(custom<T> const& c) in fabs()
57 return custom<T>(c.m_value < T(0) ? c.m_value : -c.m_value); in fabs()
/third_party/skia/tests/
DFontMgrAndroidParserTest.cpp249 SkFontMgr_Android_CustomFonts custom; in DEF_TEST() local
250 custom.fSystemFontUse = SkFontMgr_Android_CustomFonts::kOnlyCustom; in DEF_TEST()
251 custom.fBasePath = basePath.c_str(); in DEF_TEST()
252 custom.fFontsXml = fontsXml.c_str(); in DEF_TEST()
253 custom.fFallbackFontsXml = nullptr; in DEF_TEST()
254 custom.fIsolated = false; in DEF_TEST()
256 sk_sp<SkFontMgr> fm(SkFontMgr_New_Android(&custom)); in DEF_TEST()
284 SkFontMgr_Android_CustomFonts custom; in DEF_TEST() local
285 custom.fSystemFontUse = SkFontMgr_Android_CustomFonts::kOnlyCustom; in DEF_TEST()
286 custom.fBasePath = basePath.c_str(); in DEF_TEST()
[all …]
/third_party/flutter/skia/tests/
DFontMgrAndroidParserTest.cpp250 SkFontMgr_Android_CustomFonts custom; in DEF_TEST() local
251 custom.fSystemFontUse = SkFontMgr_Android_CustomFonts::kOnlyCustom; in DEF_TEST()
252 custom.fBasePath = basePath.c_str(); in DEF_TEST()
253 custom.fFontsXml = fontsXml.c_str(); in DEF_TEST()
254 custom.fFallbackFontsXml = nullptr; in DEF_TEST()
255 custom.fIsolated = false; in DEF_TEST()
257 sk_sp<SkFontMgr> fm(SkFontMgr_New_Android(&custom)); in DEF_TEST()
285 SkFontMgr_Android_CustomFonts custom; in DEF_TEST() local
286 custom.fSystemFontUse = SkFontMgr_Android_CustomFonts::kOnlyCustom; in DEF_TEST()
287 custom.fBasePath = basePath.c_str(); in DEF_TEST()
[all …]
/third_party/boost/libs/test/test/baseline-outputs/
Dtest_tools-test.pattern195 error: in "test_BOOST_TEST_fpv_comp_on_collections": check 'custom error message v1 == v2 tolera…
196 error: in "test_BOOST_TEST_fpv_comp_on_collections": check 'custom error message v1f == v2f tolera…
197 info: check 'custom error message v1 <= v2 tolerance<double> ' 1.1e-05 > 1.11e-05 has pas…
198 info: check 'custom error message v1 < v2 tolerance<double> ' 1.1e-05 >= 1.11e-05 has pas…
199 info: check 'custom error message v1 <= v2 high_tolerance<double> ' 1.1e-05 > 1.11e-05 has pas…
200 info: check 'custom error message v1 < v2 high_tolerance<double> ' 1.1e-05 >= 1.11e-05 has pas…
201 info: check 'custom error message v1f < v2f high_tolerance<double> ' 1.1e-05 >= 1.11e-05 has pas…
202 error: in "test_BOOST_TEST_fpv_comp_on_collections": check 'custom error message v1 == v2 tolera…
206 error: in "test_BOOST_TEST_fpv_comp_on_collections": check 'custom error message v1f == v2f tolera…
210 info: check 'custom error message v1 <= v2 tolerance<double> ' 1.1e-05 > 1.11e-05 has pas…
[all …]
/third_party/flutter/skia/src/ports/
DSkFontMgr_android.cpp293 SkFontMgr_Android(const SkFontMgr_Android_CustomFonts* custom) { in SkFontMgr_Android() argument
295 if (custom && SkFontMgr_Android_CustomFonts::kPreferSystem != custom->fSystemFontUse) { in SkFontMgr_Android()
296 SkString base(custom->fBasePath); in SkFontMgr_Android()
298 families, base, custom->fFontsXml, custom->fFallbackFontsXml); in SkFontMgr_Android()
300 if (!custom || in SkFontMgr_Android()
301 (custom && SkFontMgr_Android_CustomFonts::kOnlyCustom != custom->fSystemFontUse)) in SkFontMgr_Android()
305 if (custom && SkFontMgr_Android_CustomFonts::kPreferSystem == custom->fSystemFontUse) { in SkFontMgr_Android()
306 SkString base(custom->fBasePath); in SkFontMgr_Android()
308 families, base, custom->fFontsXml, custom->fFallbackFontsXml); in SkFontMgr_Android()
310 this->buildNameToFamilyMap(families, custom ? custom->fIsolated : false); in SkFontMgr_Android()
[all …]
/third_party/skia/src/ports/
DSkFontMgr_android.cpp291 SkFontMgr_Android(const SkFontMgr_Android_CustomFonts* custom) { in SkFontMgr_Android() argument
293 if (custom && SkFontMgr_Android_CustomFonts::kPreferSystem != custom->fSystemFontUse) { in SkFontMgr_Android()
294 SkString base(custom->fBasePath); in SkFontMgr_Android()
296 families, base, custom->fFontsXml, custom->fFallbackFontsXml); in SkFontMgr_Android()
298 if (!custom || in SkFontMgr_Android()
299 (custom && SkFontMgr_Android_CustomFonts::kOnlyCustom != custom->fSystemFontUse)) in SkFontMgr_Android()
303 if (custom && SkFontMgr_Android_CustomFonts::kPreferSystem == custom->fSystemFontUse) { in SkFontMgr_Android()
304 SkString base(custom->fBasePath); in SkFontMgr_Android()
306 families, base, custom->fFontsXml, custom->fFallbackFontsXml); in SkFontMgr_Android()
308 this->buildNameToFamilyMap(families, custom ? custom->fIsolated : false); in SkFontMgr_Android()
[all …]
/third_party/vk-gl-cts/android/cts/master/vk-master-2021-03-01/
Dpipeline.txt13161 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.no_gather.no_swizzle_hint
13162 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.no_gather.with_swizzle_hint
13163 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.gather_0.no_swizzle_hint
13164 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.gather_0.with_swizzle_hint
13165 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.gather_1.no_swizzle_hint
13166 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.gather_1.with_swizzle_hint
13167 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.gather_2.no_swizzle_hint
13168 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.gather_2.with_swizzle_hint
13169 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.gather_3.no_swizzle_hint
13170 dEQP-VK.pipeline.sampler.border_swizzle.r4g4_unorm_pack8.rgba.custom.gather_3.with_swizzle_hint
[all …]
/third_party/freetype/docs/
DCUSTOMIZE52 custom implementations to suit specific systems.
54 To tell the GNU Make-based build system to use a custom system
83 Just put your custom `ftoption.h' file into the objects directory
102 custom/
104 ftoption.h => custom options header
105 ftmodule.h => custom modules list
110 then change the C include path to always give the path to `custom'
117 name the configuration headers. To do so, you need a custom
123 #define FT_CONFIG_OPTIONS_H <custom/my-ftoption.h>
124 #define FT_CONFIG_MODULES_H <custom/my-ftmodule.h>
[all …]
/third_party/flutter/skia/third_party/externals/freetype/docs/
DCUSTOMIZE52 custom implementations to suit specific systems.
54 To tell the GNU Make-based build system to use a custom system
83 Just put your custom `ftoption.h' file into the objects directory
102 custom/
104 ftoption.h => custom options header
105 ftmodule.h => custom modules list
110 then change the C include path to always give the path to `custom'
117 name the configuration headers. To do so, you need a custom
123 #define FT_CONFIG_OPTIONS_H <custom/my-ftoption.h>
124 #define FT_CONFIG_MODULES_H <custom/my-ftmodule.h>
[all …]
/third_party/skia/third_party/externals/freetype/docs/
DCUSTOMIZE52 custom implementations to suit specific systems.
54 To tell the GNU Make-based build system to use a custom system
83 Just put your custom `ftoption.h' file into the objects directory
102 custom/
104 ftoption.h => custom options header
105 ftmodule.h => custom modules list
110 then change the C include path to always give the path to `custom'
117 name the configuration headers. To do so, you need a custom
123 #define FT_CONFIG_OPTIONS_H <custom/my-ftoption.h>
124 #define FT_CONFIG_MODULES_H <custom/my-ftmodule.h>
[all …]
/third_party/boost/libs/fiber/doc/
Dcustomization.qbk11 [#custom]
12 [section:custom Customization]
29 In this section we illustrate a simple custom scheduler that honors an integer
46 One might suggest deriving a custom [class_link fiber] subclass to store such
51 introduce additional such wrapper functions. A custom scheduler must
52 associate its custom properties with ['every] fiber in the thread, not only
53 the ones explicitly launched by instantiating a custom `fiber` subclass.
55 places in the code. We discover a need to introduce a custom scheduler for a
56 particular thread. If supporting that scheduler's custom properties required
63 The present mechanism allows you to ["drop in] a custom scheduler with its
[all …]
/third_party/boost/libs/outcome/doc/src/content/tutorial/essential/conventions/
D_index.md3 description = "Why you should avoid custom `E` types in public APIs."
13 custom `E` type. This is usually due to experience in other languages
17 custom `E` types in public APIs. The reason is that every time
18 library A using custom `E1` type must interface with library B
19 using custom `E2` type, you must map between those `E1` and `E2`
31 individual custom `E` types into a generic framework, where disparate
32 custom `E` types can discover and interact with one another.
45 custom `E` types in ANY public API. `result` and `outcome` default
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-custom-headers/
DREADME.md1 # lws minimal http client custom headers
3 This http client application shows how to send and receive custom headers.
21 The app looks for a custom header "test-custom-header" sent by warmcat.com.
24 $ ./lws-minimal-http-client-custom-headers
28 [2019/03/11 05:46:46:7812] NOTICE: callback_http: custom header: 'hello'
/third_party/curl/docs/
DFEATURES.md9 - custom maximum transfer rate
16 - custom maximum download time
17 - custom least download speed acceptable
18 - custom output result after completion
52 - custom HTTP request
55 - custom headers (replace/remove internally generated headers)
56 - custom user-agent string
57 - custom referrer string
92 - custom ftp commands (before and/or after the transfer)
112 - with custom commands sent before/after the transfer
[all …]
/third_party/curl/docs/cmdline-opts/
Drequest.d7 (HTTP) Specifies a custom request method to use when communicating with the
27 Specifies a custom FTP command to use instead of LIST when doing file lists
31 Specifies a custom POP3 command to use instead of LIST or RETR. (Added in
35 Specifies a custom IMAP command to use instead of LIST. (Added in 7.30.0)
38 Specifies a custom SMTP command to use instead of HELP or VRFY. (Added in 7.34.0)
/third_party/node/test/es-module/
Dtest-esm-loader-custom-condition.mjs1 // Flags: --experimental-loader ./test/fixtures/es-module-loaders/loader-with-custom-condition.mjs
8 assert.deepStrictEqual({ ...ns }, { default: 'from custom condition' });
12 "[Module: null prototype] { default: 'from custom condition' }"
18 " default: 'from custom condition',\n" +

12345678910>>...65